




















:root {
  --paper: #070C16;
  --surface: #0F1826;
  --surface-2: #16223A;
  --ink: #E8F0FA;
  --ink-2: #93A4BE;
  --ink-3: #5C6E8A;
  --line: #1B2942;
  --line-strong: #2A3F63;

  --accent: #38BDF8;
  --accent-bright: #7DD3FC;
  --accent-ink: #04101F;
  --accent-soft: #0C2036;
  --electric: #0A84FF;
  --glow: 0 0 18px rgba(56, 189, 248, .35);

  --ok: #34D399;
  --ok-soft: #082C22;
  --warn: #FBBF24;
  --warn-soft: #2C2109;
  --danger: #F87171;
  --danger-soft: #2E1113;

  --r-sm: 8px;
  --r: 12px;
  --r-lg: 18px;
  --r-full: 999px;

  --shadow-1: 0 1px 2px rgba(0, 0, 0, .5);
  --shadow-2: 0 2px 6px rgba(0, 0, 0, .45), 0 10px 26px rgba(0, 0, 0, .5);
  --shadow-3: 0 16px 40px rgba(0, 0, 0, .65);

  --wrap: 64rem;
  --tabbar-h: 4.25rem;
}

@media (prefers-color-scheme: light) {
  :root {
    --paper: #EEF3FA;
    --surface: #FFFFFF;
    --surface-2: #F1F5FB;
    --ink: #0A1120;
    --ink-2: #51637F;
    --ink-3: #8496AF;
    --line: #DEE7F2;
    --line-strong: #C2D0E3;

    --accent: #0B63D6;
    --accent-bright: #0A84FF;
    --accent-ink: #FFFFFF;
    --accent-soft: #E8F1FE;
    --electric: #0A84FF;
    --glow: 0 0 16px rgba(10, 132, 255, .22);

    --ok: #047857;
    --ok-soft: #ECFDF5;
    --warn: #B45309;
    --warn-soft: #FFFBEB;
    --danger: #B91C1C;
    --danger-soft: #FEF2F2;

    --shadow-1: 0 1px 2px rgba(10, 17, 32, .05), 0 1px 3px rgba(10, 17, 32, .06);
    --shadow-2: 0 2px 4px rgba(10, 17, 32, .04), 0 8px 20px rgba(10, 17, 32, .08);
    --shadow-3: 0 12px 32px rgba(10, 17, 32, .16);
  }
}

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



[hidden] { display: none !important; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 16px/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, sans-serif;
  font-feature-settings: "kern" 1;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  overflow-wrap: break-word;
}

::selection { background: var(--accent); color: var(--accent-ink); }

.skip { position: absolute; left: -9999px; }
.skip:focus {
  left: 1rem; top: .5rem; z-index: 60;
  background: var(--surface); padding: .6rem 1rem;
  border-radius: var(--r); box-shadow: var(--shadow-2);
}


.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .7rem 1rem;
  padding-top: max(.7rem, env(safe-area-inset-top));
  background: color-mix(in srgb, var(--surface) 82%, transparent);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 30;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .55rem;


  padding: .55rem .4rem .55rem 0;
  font-weight: 800;
  font-size: 1.16rem;
  letter-spacing: -.025em;
  color: var(--ink);
  text-decoration: none;
  flex: none;
}
.brand-word { white-space: nowrap; }


.brand-mark {
  width: 1.6rem;
  height: 1.6rem;
  border-radius: var(--r-sm);
  background: linear-gradient(160deg, #16233A, #060B14);
  border: 1px solid #24406B;
  box-shadow: inset 0 1px 0 rgba(125, 211, 252, .18), 0 0 10px rgba(10, 132, 255, .28);
  position: relative;
  flex: none;
  overflow: hidden;
}
.brand-mark::before {
  content: "";
  position: absolute;
  inset: 22% 26%;
  background:
    linear-gradient(#7DD3FC 0 0) 0 0 / 26% 100% no-repeat,
    linear-gradient(#7DD3FC 0 0) 50% 0 / 16% 100% no-repeat,
    linear-gradient(#7DD3FC 0 0) 100% 0 / 26% 100% no-repeat;
}
.brand-mark::after {
  content: "";
  position: absolute;
  left: 12%; right: 12%; top: 50%;
  height: 2px;
  margin-top: -1px;
  background: #FFFFFF;
  box-shadow: 0 0 8px #7DD3FC, 0 0 3px #FFFFFF;
}

.topnav { display: flex; align-items: center; gap: .15rem; min-width: 0; }
.topnav a {
  color: var(--ink-2);
  text-decoration: none;
  padding: .5rem .7rem;
  border-radius: var(--r-sm);
  font-size: .95rem;
  font-weight: 550;
  white-space: nowrap;
  transition: background .15s, color .15s;
}
.topnav a:hover { background: var(--surface-2); color: var(--ink); }
.topnav a[aria-current="page"] { color: var(--accent); background: var(--accent-soft); }
.topnav a.btn { color: var(--accent-ink); }
.topnav a.btn:hover { color: var(--accent-ink); }


.topnav .desk-only { display: none; }
@media (min-width: 46rem) {
  .topnav .desk-only { display: inline-flex; }
}

.avatar {
  width: 2rem; height: 2rem;
  border-radius: var(--r-full);
  background: var(--accent-soft);
  color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .82rem;
  border: 1px solid color-mix(in srgb, var(--accent) 25%, transparent);
  flex: none;
}


main { flex: 1; width: 100%; }
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 1.25rem 1rem 2rem;
}
@media (min-width: 46rem) {
  .wrap { padding: 2rem 1.5rem 4rem; }
}

.footer {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  align-items: center;
  padding: 1.5rem 1rem;
  color: var(--ink-3);
  font-size: .85rem;
  border-top: 1px solid var(--line);
}
.footer a { color: var(--ink-3); text-decoration: none; }
.footer a:hover { color: var(--ink-2); text-decoration: underline; }
@media (min-width: 46rem) {
  .footer { padding-bottom: 1.5rem; }
}


.has-tabs main { padding-bottom: calc(var(--tabbar-h) + env(safe-area-inset-bottom)); }
@media (min-width: 46rem) { .has-tabs main { padding-bottom: 0; } }





.tabbar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 40;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  align-items: stretch;
  gap: .15rem;
  padding: .4rem .5rem calc(.4rem + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-top: 1px solid var(--line);
}
@media (min-width: 46rem) { .tabbar { display: none; } }

.tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .18rem;
  padding: .3rem .2rem;
  border-radius: var(--r);
  color: var(--ink-3);
  text-decoration: none;
  min-height: 3.1rem;
  transition: color .15s, background .15s;
}

.tab-ico {
  height: 2.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .15s, background .15s;
}
.tab-ico svg { width: 1.35rem; height: 1.35rem; stroke-width: 1.9; }
.tab-label { font-size: .68rem; font-weight: 650; letter-spacing: .01em; }
.tab:hover { color: var(--ink-2); }
.tab[aria-current="page"] { color: var(--accent); background: var(--accent-soft); }


.tab-primary { color: var(--accent); }
.tab-primary .tab-ico {
  width: 3.1rem;
  border-radius: var(--r-full);
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: var(--glow), 0 4px 14px color-mix(in srgb, var(--accent) 45%, transparent);
}
.tab-primary:active .tab-ico { transform: scale(.94); }
.tab-primary[aria-current="page"] { background: transparent; }


h1, h2, h3 { font-weight: 780; letter-spacing: -.025em; line-height: 1.15; margin: 0; }
h1 { font-size: 1.7rem; }
h2 { font-size: 1.12rem; letter-spacing: -.015em; }
h3 { font-size: 1rem; }
@media (min-width: 46rem) {
  h1 { font-size: 2.15rem; }
  h2 { font-size: 1.3rem; }
}

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }
a { color: var(--accent); text-underline-offset: 2px; }

.lede { font-size: 1.06rem; line-height: 1.5; color: var(--ink-2); max-width: 42ch; }
@media (min-width: 46rem) { .lede { font-size: 1.18rem; } }
.muted { color: var(--ink-2); }
.small { font-size: .875rem; }
.tiny { font-size: .78rem; }
.mono {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-variant-ligatures: none;
}

.eyebrow {
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--ink-3);
}


.section-head {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin: 1.75rem 0 .85rem;
}
.section-head::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.section-head > * { margin: 0; }


.stack > * + * { margin-top: 1rem; }
.stack-sm > * + * { margin-top: .5rem; }
.row { display: flex; gap: .6rem; flex-wrap: wrap; align-items: center; }
.spread { display: flex; gap: .75rem; align-items: center; justify-content: space-between; }
.grow { flex: 1; min-width: 0; }

ul.plain, ol.plain { list-style: none; padding-left: 0; margin: 0; }
ol.steps { padding-left: 0; margin: 0; list-style: none; counter-reset: step; }
ol.steps > li {
  position: relative;
  padding-left: 2.6rem;
  min-height: 1.9rem;
}
ol.steps > li + li { margin-top: 1.1rem; }
ol.steps > li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0; top: -.1rem;
  width: 1.9rem; height: 1.9rem;
  border-radius: var(--r-full);
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid color-mix(in srgb, var(--accent) 22%, transparent);
  display: flex; align-items: center; justify-content: center;
  font-weight: 750; font-size: .85rem;
}


.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.15rem;
  box-shadow: var(--shadow-1);
  position: relative;
}


.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  background: linear-gradient(90deg, transparent, rgba(125, 211, 252, .22), transparent);
  pointer-events: none;
}
.card-flush { padding: 0; overflow: hidden; }
.card > h2:first-child, .card > h3:first-child { margin-bottom: .75rem; }

.card-accent {
  border-color: color-mix(in srgb, var(--accent) 30%, transparent);
  background: linear-gradient(var(--accent-soft), var(--surface) 60%);
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;

  min-height: 44px;
  padding: .68rem 1.15rem;
  border-radius: var(--r);
  border: 1px solid transparent;
  background: var(--accent);
  color: var(--accent-ink);
  font: inherit;
  font-weight: 680;
  letter-spacing: -.005em;
  text-decoration: none;
  cursor: pointer;
  transition: transform .12s, box-shadow .15s, background .15s, border-color .15s;
  box-shadow: var(--glow), 0 1px 2px rgba(0, 0, 0, .25);
}
.btn:hover { background: var(--accent-bright); box-shadow: 0 0 24px rgba(56, 189, 248, .5), 0 1px 2px rgba(0, 0, 0, .25); }
.btn:active { transform: translateY(1px); box-shadow: none; }
.btn:disabled, .btn[aria-disabled="true"] {
  opacity: .5; cursor: not-allowed; transform: none;
}
.btn svg { width: 1.15em; height: 1.15em; flex: none; }

.btn-secondary {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-1);
}
.btn-secondary:hover { background: var(--surface-2); border-color: var(--ink-3); }

.btn-ghost {
  background: transparent;
  color: var(--ink-2);
  border-color: transparent;
  box-shadow: none;
}
.btn-ghost:hover { background: var(--surface-2); color: var(--ink); }

.btn-danger { background: var(--danger); color: #fff; }
.btn-danger:hover { background: var(--danger); filter: brightness(1.1); }

.btn-sm { min-height: 36px; padding: .35rem .75rem; font-size: .875rem; border-radius: var(--r-sm); }
.btn-lg { min-height: 52px; padding: .85rem 1.5rem; font-size: 1.05rem; }
.btn-block { width: 100%; }

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: var(--r-sm);
}
:where(a, button):focus-visible { box-shadow: var(--glow); }


label { display: block; font-weight: 640; font-size: .88rem; margin-bottom: .35rem; }
.field + .field { margin-top: 1rem; }
.hint { color: var(--ink-2); font-size: .82rem; margin-top: .35rem; }

input[type=text], input[type=email], input[type=password], input[type=number],
input[type=search], input[type=file], select, textarea {
  width: 100%;
  min-height: 46px;
  padding: .65rem .8rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--r);
  background: var(--surface);
  color: var(--ink);
  font: inherit;
  transition: border-color .15s, box-shadow .15s;
}
input::placeholder, textarea::placeholder { color: var(--ink-3); }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent);
}
textarea { min-height: 5.5rem; resize: vertical; }
input[type=file] { padding: .5rem .6rem; cursor: pointer; }
input[type=file]::file-selector-button {
  font: inherit; font-weight: 640;
  margin-right: .7rem;
  padding: .4rem .8rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  background: var(--surface-2);
  color: var(--ink);
  cursor: pointer;
}


.search-field { position: relative; flex: 1; min-width: 12rem; }
.search-field svg {
  position: absolute; left: .8rem; top: 50%; transform: translateY(-50%);
  width: 1.1rem; height: 1.1rem; color: var(--ink-3); pointer-events: none;
}
.search-field input { padding-left: 2.4rem; }


.segmented {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .4rem;
  border: 0; padding: 0; margin: 0;
}
@media (min-width: 34rem) { .segmented { grid-template-columns: repeat(4, 1fr); } }
.segmented legend { padding: 0 0 .6rem; }

.seg {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: .1rem;
  padding: .7rem .75rem;
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  background: var(--surface);
  cursor: pointer;
  transition: border-color .15s, background .15s, box-shadow .15s;
}
.seg input { position: absolute; opacity: 0; pointer-events: none; }
.seg:hover { border-color: var(--line-strong); }
.seg strong { font-size: .92rem; font-weight: 680; }
.seg .seg-hint { font-size: .74rem; color: var(--ink-2); line-height: 1.3; }
.seg:has(input:checked) {
  border-color: var(--accent);
  background: var(--accent-soft);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 14%, transparent);
}
.seg:has(input:checked) strong { color: var(--accent); }
.seg:has(input:focus-visible) { outline: 2px solid var(--accent); outline-offset: 2px; }


.layout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: .6rem;
}
@media (min-width: 40rem) {
  .layout-grid { grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); }
}
.layout-pick {
  position: relative;
  display: block;
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  padding: .9rem;
  background: var(--surface);
  cursor: pointer;
  font-weight: 400;
  margin: 0;
  transition: border-color .15s, background .15s, box-shadow .15s;
}
.layout-pick input { position: absolute; opacity: 0; pointer-events: none; }
.layout-pick:hover { border-color: var(--line-strong); }
.layout-pick:has(input:checked) {
  border-color: var(--accent);
  background: var(--accent-soft);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 14%, transparent);
}
.layout-pick .dims { color: var(--ink-2); font-size: .82rem; margin-top: .2rem; }



.action-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(8.5rem, 1fr));
  gap: .5rem;
}
.action-grid form { margin: 0; }

.photo-form input[type=file] { font-size: .88rem; }


.notice {
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  padding: .85rem 1rem;
  border-radius: var(--r);
  border: 1px solid color-mix(in srgb, var(--accent) 25%, transparent);
  background: var(--accent-soft);
  color: var(--ink);
  font-size: .93rem;
}
.notice-error { border-color: color-mix(in srgb, var(--danger) 35%, transparent); background: var(--danger-soft); color: var(--danger); }
.notice-ok { border-color: color-mix(in srgb, var(--ok) 35%, transparent); background: var(--ok-soft); color: var(--ok); }
.notice-warn { border-color: color-mix(in srgb, var(--warn) 35%, transparent); background: var(--warn-soft); color: var(--warn); }
.notice strong { color: inherit; }


.badge {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  font-size: .7rem;
  font-weight: 720;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .2rem .5rem;
  border-radius: var(--r-full);
  background: var(--surface-2);
  color: var(--ink-2);
  border: 1px solid var(--line);
  white-space: nowrap;
  vertical-align: middle;
}
.badge-accent { background: var(--accent-soft); color: var(--accent); border-color: color-mix(in srgb, var(--accent) 22%, transparent); }
.badge-warn { background: var(--warn-soft); color: var(--warn); border-color: color-mix(in srgb, var(--warn) 30%, transparent); }
.badge-ok { background: var(--ok-soft); color: var(--ok); border-color: color-mix(in srgb, var(--ok) 30%, transparent); }


.tag {
  display: inline-block;
  font-size: .78rem;
  padding: .2rem .6rem;
  border-radius: var(--r-full);
  background: var(--surface-2);
  color: var(--ink-2);
  border: 1px solid var(--line);
}


.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .6rem;
}
.stat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: .85rem .9rem;
  box-shadow: var(--shadow-1);
}
.stat-n {
  display: block;
  font-size: 1.65rem;
  font-weight: 780;
  letter-spacing: -.03em;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.stat-l { display: block; font-size: .75rem; color: var(--ink-2); margin-top: .15rem; line-height: 1.25; }
.stat-hot .stat-n { color: var(--accent); }


.feed { list-style: none; margin: 0; padding: 0; }
.feed li + li { border-top: 1px solid var(--line); }
.feed-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .7rem .25rem;
  text-decoration: none;
  color: inherit;
  border-radius: var(--r-sm);
  transition: background .15s;
}
.feed-item:hover { background: var(--surface-2); }
.feed-dot {
  width: 1.85rem; height: 1.85rem;
  border-radius: var(--r-full);
  display: flex; align-items: center; justify-content: center;
  flex: none;
  background: var(--surface-2);
  color: var(--ink-2);
  border: 1px solid var(--line);
}
.feed-dot svg { width: .95rem; height: .95rem; }
.feed-dot-in { background: var(--ok-soft); color: var(--ok); border-color: color-mix(in srgb, var(--ok) 25%, transparent); }
.feed-dot-out { background: var(--warn-soft); color: var(--warn); border-color: color-mix(in srgb, var(--warn) 25%, transparent); }
.feed-dot-gone { background: var(--danger-soft); color: var(--danger); border-color: color-mix(in srgb, var(--danger) 25%, transparent); }
.feed-item .grow { display: flex; flex-direction: column; }
.feed-name { font-weight: 620; }
.feed-verb { font-size: .8rem; color: var(--ink-2); }


.hit { padding: .9rem; }
.hit + .hit { margin-top: .7rem; }
.hit-head { display: flex; gap: .8rem; align-items: center; }
.hit-photo {
  width: 3.25rem; height: 3.25rem;
  border-radius: var(--r);
  object-fit: cover;
  border: 1px solid var(--line);
  flex: none;
  display: block;
  background: var(--surface-2);
}
.hit-title { font-weight: 700; text-decoration: none; color: var(--ink); }
.hit-title:hover { color: var(--accent); }
.hit-code { font-size: .78rem; color: var(--ink-3); letter-spacing: .02em; }
.hit-where { margin-top: .75rem; padding-top: .75rem; border-top: 1px dashed var(--line); }





.pathstrip {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: .4rem .1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.pathstrip li { display: flex; align-items: center; gap: .1rem; }
.pathstrip a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
  text-decoration: none;
  color: var(--ink-2);
  width: 4.4rem;
  padding: .25rem .1rem;
  border-radius: var(--r-sm);
  text-align: center;
  transition: background .15s, color .15s;
}
.pathstrip a:hover { background: var(--surface-2); color: var(--ink); }
.pathstrip img, .pathstrip .nophoto {
  width: 3.1rem; height: 3.1rem;
  border-radius: var(--r);
  object-fit: cover;
  border: 1px solid var(--line);
  background: var(--surface-2);
  display: block;
}
.pathstrip .step-name {
  font-size: .72rem;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pathstrip .sep { color: var(--ink-3); font-size: .85rem; }
.pathstrip li:last-child .step-name { color: var(--ink); font-weight: 680; }
.pathstrip li:last-child img { border-color: var(--accent); box-shadow: 0 0 0 2px var(--accent-soft); }

.nophoto {
  background:
    repeating-linear-gradient(45deg, var(--line) 0 5px, transparent 5px 10px) var(--surface-2);
}


.crumbs {
  display: flex; flex-wrap: wrap; gap: .3rem; align-items: center;
  font-size: .85rem; color: var(--ink-2);
}
.crumbs a { text-decoration: none; color: var(--ink-2); }
.crumbs a:hover { color: var(--accent); text-decoration: underline; }
.crumbs .sep { color: var(--ink-3); }


.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(8.5rem, 1fr));
  gap: .7rem;
}
.gallery figure { margin: 0; }
.gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: var(--surface-2);
  display: block;
  transition: transform .15s, box-shadow .15s;
}
.gallery a:hover img { transform: translateY(-2px); box-shadow: var(--shadow-2); }
.gallery figcaption { margin-top: .45rem; gap: .35rem; }


.item-hero { display: flex; gap: 1rem; align-items: flex-start; }
.item-hero-photo {
  width: 5.5rem; height: 5.5rem;
  border-radius: var(--r-lg);
  object-fit: cover;
  border: 1px solid var(--line);
  background: var(--surface-2);
  flex: none;
  box-shadow: var(--shadow-1);
}
@media (min-width: 46rem) {
  .item-hero-photo { width: 7.5rem; height: 7.5rem; }
}


.code-hero { display: flex; align-items: center; gap: 1.1rem; flex-wrap: wrap; }
.code-hero svg {
  width: 7.5rem; height: 7.5rem;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: #fff;
  padding: .25rem;
}
.code-text {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: .03em;
}


.empty {
  text-align: center;
  padding: 2.25rem 1.25rem;
  border: 1.5px dashed var(--line-strong);
  border-radius: var(--r-lg);
  background: var(--surface);
  color: var(--ink-2);
}
.empty-icon {
  width: 2.75rem; height: 2.75rem;
  margin: 0 auto .75rem;
  border-radius: var(--r-full);
  background: var(--accent-soft);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.empty-icon svg { width: 1.4rem; height: 1.4rem; }
.empty h3 { margin-bottom: .3rem; color: var(--ink); }
.empty p { max-width: 34ch; margin-inline: auto; font-size: .92rem; }


details.card summary {
  cursor: pointer;
  font-weight: 660;
  list-style: none;
  display: flex; align-items: center; gap: .5rem;
}
details.card summary::-webkit-details-marker { display: none; }
details.card summary::before {
  content: "";
  width: .45rem; height: .45rem;
  border-right: 2px solid var(--ink-3);
  border-bottom: 2px solid var(--ink-3);
  transform: rotate(-45deg);
  transition: transform .15s;
}
details.card[open] summary::before { transform: rotate(45deg); }


.viewfinder {
  position: relative;
  background: #04080F;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  max-height: 46vh;
  border: 1px solid var(--line);
}
@media (min-width: 46rem) { .viewfinder { aspect-ratio: 16 / 10; max-height: 60vh; } }




.viewfinder-idle {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  padding: 1.25rem;
  text-align: center;
  color: rgba(255, 255, 255, .72);
  font-size: .88rem;
}
.viewfinder:not(.is-idle) .viewfinder-idle { display: none; }
.viewfinder video { width: 100%; height: 100%; object-fit: cover; display: block; }

.viewfinder::after {
  content: "";
  position: absolute;
  inset: 22% 16%;
  border: 2px solid rgba(255, 255, 255, .55);
  border-radius: var(--r);
  box-shadow: 0 0 0 100vmax rgba(0, 0, 0, .28);
  pointer-events: none;
}
.viewfinder.is-idle::after { display: none; }

.viewfinder.is-idle .viewfinder-hint { display: none; }
.viewfinder-hint {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: .8rem 1rem calc(.8rem + env(safe-area-inset-bottom));
  color: #fff;
  font-size: .85rem;
  text-align: center;
  background: linear-gradient(transparent, rgba(0, 0, 0, .65));
  pointer-events: none;
}







.land { --land-glow: color-mix(in srgb, var(--electric) 22%, transparent); }

.land-hero {
  position: relative;
  overflow: hidden;
  padding: 1.5rem 0 2rem;
}
@media (min-width: 46rem) { .land-hero { padding: 3.5rem 0 4rem; } }



.land-hero::before,
.land-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.land-hero::before {
  background-image: radial-gradient(color-mix(in srgb, var(--line-strong) 70%, transparent) 1px, transparent 1.5px);
  background-size: 24px 24px;
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 60% 40%, #000 20%, transparent 75%);
  mask-image: radial-gradient(ellipse 70% 80% at 60% 40%, #000 20%, transparent 75%);
}
.land-hero::after {
  background:
    radial-gradient(38rem 24rem at 78% 30%, var(--land-glow), transparent 70%),
    radial-gradient(28rem 20rem at 12% 90%, color-mix(in srgb, var(--accent) 10%, transparent), transparent 70%);
}
.land-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  padding-top: 0;
  padding-bottom: 0;
}
@media (min-width: 46rem) {
  .land-hero-grid {
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 3rem;
  }
}

.land-eyebrow { display: flex; align-items: center; gap: .5rem; color: var(--accent); }

.land-dot {
  width: .5rem; height: .5rem;
  border-radius: var(--r-full);
  background: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 22%, transparent), var(--glow);
  animation: land-pulse 2.4s ease-in-out infinite;
}
@keyframes land-pulse {
  0%, 100% { box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 22%, transparent), var(--glow); }
  50% { box-shadow: 0 0 0 6px color-mix(in srgb, var(--accent) 8%, transparent), var(--glow); }
}

.land-h1 {
  font-size: clamp(2.35rem, 9.5vw, 3rem);
  letter-spacing: -.04em;
  line-height: 1.02;
  margin: .6rem 0 1rem;
  text-wrap: balance;
}
@media (min-width: 46rem) { .land-h1 { font-size: clamp(3rem, 4.6vw, 4rem); margin-top: .8rem; } }

.land-lit {
  color: var(--accent);
  text-shadow: 0 0 28px color-mix(in srgb, var(--accent) 45%, transparent);
}
.land-lede { max-width: 38ch; }
.land-lede em { color: var(--ink); font-style: normal; font-weight: 640; }
.land-cta { margin-top: 1.5rem; }
.land-proof {
  margin-top: 1rem;
  font-size: .85rem;
  color: var(--ink-3);
  max-width: 36ch;
}


.land-demo {
  position: relative;
  max-width: 25rem;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 46rem) {
  .land-demo { margin: 0 0 0 auto; }


  .land-screen { transform: perspective(1400px) rotateY(-6deg) rotateX(2deg); }
}
.land-screen {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  padding: 1rem;
  background: linear-gradient(170deg, var(--surface-2), var(--surface) 55%);
  border: 1px solid var(--line-strong);
  box-shadow:
    var(--shadow-3),
    0 0 0 1px color-mix(in srgb, var(--electric) 18%, transparent),
    0 0 48px var(--land-glow);
  min-height: 17.5rem;
}
.land-screen::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--accent-bright) 55%, transparent), transparent);
}


.land-sweep {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  top: -4px;
  background: var(--accent-bright);
  box-shadow: 0 0 14px 2px color-mix(in srgb, var(--accent) 60%, transparent);
  opacity: 0;
  animation: land-sweep 5s linear infinite;
  pointer-events: none;
}
@keyframes land-sweep {
  0%   { top: -4px; opacity: 0; }
  4%   { opacity: .9; }
  22%  { top: 100%; opacity: 0; }
  100% { top: 100%; opacity: 0; }
}

.land-field {
  display: flex;
  align-items: center;
  gap: .6rem;
  min-height: 46px;
  padding: .6rem .85rem;
  border: 1px solid var(--accent);
  border-radius: var(--r);
  background: var(--paper);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 16%, transparent);
  font-size: 1.02rem;
  color: var(--ink);
}
.land-field > svg { width: 1.1rem; height: 1.1rem; color: var(--ink-3); flex: none; }
.land-queries { position: relative; display: inline-grid; }



.land-q {
  grid-area: 1 / 1;
  justify-self: start;
  display: flex;
  align-items: center;
  opacity: 0;
  animation: land-q 15s infinite;
  animation-delay: calc(var(--i) * 5s);
}
.land-q > span {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  max-width: 0;
  animation: land-type 15s infinite;
  animation-delay: calc(var(--i) * 5s);
}
.land-q::after {
  content: "";
  width: 2px;
  height: 1.2em;
  margin-left: 2px;
  background: var(--accent);
  border-radius: 1px;
  animation: land-blink 1s steps(2, start) infinite;
  flex: none;
}
@keyframes land-q {
  0%      { opacity: 1; }
  30.5%   { opacity: 1; }
  33.333% { opacity: 0; }
  100%    { opacity: 0; }
}
@keyframes land-type {
  0%   { max-width: 0; animation-timing-function: steps(15, end); }
  8%   { max-width: 15ch; }
  100% { max-width: 15ch; }
}
@keyframes land-blink { 50% { opacity: 0; } }

.land-answers { position: relative; display: grid; margin-top: .85rem; }
.land-answer {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(6px);
  animation: land-answer 15s ease-out infinite;
  animation-delay: calc(var(--i) * 5s);
}
@keyframes land-answer {
  0%, 11% { opacity: 0; transform: translateY(6px); }
  14%     { opacity: 1; transform: translateY(0); }
  31%     { opacity: 1; }
  33.333% { opacity: 0; }
  100%    { opacity: 0; transform: translateY(6px); }
}
.land-answer-name { font-weight: 700; font-size: 1rem; }
.land-answer-meta { font-size: .78rem; color: var(--ink-3); margin-top: .1rem; }





.land-trail {
  list-style: none;
  margin: .8rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.land-trail li {
  display: flex;
  align-items: center;
  gap: .55rem;
  padding-left: calc(var(--s) * 1.15rem);
  opacity: 0;
  animation: land-step 15s ease-out infinite;
  animation-delay: calc(var(--i) * 5s + var(--s) * .3s + .7s);
}
@keyframes land-step {
  0%     { opacity: 0; transform: translateX(-6px); }
  3%     { opacity: 1; transform: translateX(0); }
  30%    { opacity: 1; }
  33.333%, 100% { opacity: 0; }
}

.land-trail li + li::before {
  content: "";
  width: .55rem; height: .7rem;
  margin: -.7rem .05rem 0 0;
  border-left: 1.5px solid var(--line-strong);
  border-bottom: 1.5px solid var(--line-strong);
  border-radius: 0 0 0 4px;
  flex: none;
}
.land-tile {
  width: 2rem; height: 2rem;
  border-radius: var(--r-sm);
  background: var(--surface-2);
  border: 1px solid var(--line);
  color: var(--ink-2);
  display: flex; align-items: center; justify-content: center;
  flex: none;
}
.land-tile svg { width: 1rem; height: 1rem; }
.land-place { font-size: .88rem; color: var(--ink-2); white-space: nowrap; }
.land-trail li:last-child .land-tile {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: transparent;
  box-shadow: var(--glow);
}
.land-trail li:last-child .land-place { color: var(--ink); font-weight: 680; }




@media (prefers-reduced-motion: reduce) {
  .land-demo *, .land-dot { animation: none !important; }
  .land-q:not(.land-first), .land-answer:not(.land-first) { display: none; }
  .land-first, .land-first .land-trail li { opacity: 1; transform: none; }
  .land-first > span { max-width: none; }
  .land-sweep { display: none; }
  .land-q::after { animation: none; }
}


.land-body { padding-top: 0; }
.land-section { padding: 2.5rem 0 0; }
@media (min-width: 46rem) { .land-section { padding-top: 4rem; } }
.land-h2 {
  font-size: clamp(1.6rem, 6vw, 2.1rem);
  letter-spacing: -.03em;
  line-height: 1.1;
  margin: .35rem 0 .75rem;
  text-wrap: balance;
}
@media (min-width: 46rem) { .land-h2 { font-size: 2.4rem; } }
.land-h3 { margin-top: 1.5rem; margin-bottom: .5rem; }
.land-intro { max-width: 58ch; margin-bottom: 1.5rem; }
.land-aside { max-width: 60ch; margin-top: 1.25rem; }




.land-steps {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: grid;
  gap: .75rem;
  counter-reset: land-step;
  position: relative;
}
@media (min-width: 30rem) { .land-steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 46rem) {
  .land-steps { grid-template-columns: repeat(4, 1fr); gap: 1rem; }
  .land-steps::before {
    content: "";
    position: absolute;
    left: 3rem; right: 3rem; top: 2.45rem;
    height: 0;
    border-top: 1px dashed var(--line-strong);
  }
}
.land-steps li {
  position: relative;
  overflow: hidden;
  padding: 1.1rem 1.1rem 1.15rem;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-1);
  counter-increment: land-step;
}
.land-steps li::after {
  content: counter(land-step);
  position: absolute;
  right: .6rem; top: -.55rem;
  font-size: 4.2rem;
  font-weight: 800;
  letter-spacing: -.06em;
  line-height: 1;
  color: color-mix(in srgb, var(--accent) 12%, transparent);
  pointer-events: none;
}
.land-steps strong { display: block; font-size: 1.02rem; margin: .8rem 0 .3rem; letter-spacing: -.01em; }
.land-steps p { margin: 0; font-size: .9rem; color: var(--ink-2); }
.land-step-ico {
  position: relative;
  width: 2.6rem; height: 2.6rem;
  border-radius: var(--r);
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid color-mix(in srgb, var(--accent) 25%, transparent);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 14px color-mix(in srgb, var(--accent) 18%, transparent);
}
.land-step-ico svg { width: 1.3rem; height: 1.3rem; }


.land-why {
  display: grid;
  gap: 1.75rem;
}
@media (min-width: 46rem) {
  .land-why { grid-template-columns: 19rem 1fr; gap: 3.5rem; align-items: center; }
}
.land-sticker-wrap {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  text-align: center;
}
.land-sticker-wrap figcaption { font-size: .85rem; color: var(--ink-3); max-width: 30ch; }


.land-sticker {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .55rem .8rem .55rem .55rem;
  background: #FFFFFF;
  color: #111111;
  border-radius: 6px;
  transform: rotate(-3deg);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .6) inset,
    var(--shadow-3),
    0 0 40px var(--land-glow);
}
.land-sticker-qr { width: 6rem; height: 6rem; display: block; flex: none; }
.land-sticker-text { display: flex; flex-direction: column; gap: .15rem; text-align: left; }
.land-sticker-code {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .04em;
}
.land-sticker-brand { font-size: .66rem; color: #666666; letter-spacing: .04em; }





.tiers {
  display: grid;
  grid-template-columns: 1fr;
  gap: .9rem;
  align-items: start;
}
@media (min-width: 46rem) { .tiers { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; } }
.tier { padding: 1.5rem; }
.tier > h3 { margin: 0; font-size: .95rem; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-2); }

.tier-hot {
  border-color: color-mix(in srgb, var(--accent) 45%, transparent);
  background: linear-gradient(170deg, var(--accent-soft), var(--surface) 65%);
  box-shadow: var(--shadow-2), 0 0 42px var(--land-glow);
}
.tier-hot > h3 { color: var(--accent); }

.tier-price {
  display: flex;
  align-items: baseline;
  gap: .4rem;
  margin: .5rem 0 .1rem;
}
.tier-amount {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1;
  color: var(--ink);
}
.tier-per { color: var(--ink-3); font-size: .9rem; }
.tier-year { color: var(--ink-3); font-size: .82rem; margin: 0 0 1rem; }



.tier-list { list-style: none; margin: 0 0 1.25rem; padding: 0; }
.tier-list li {
  display: grid;
  grid-template-columns: 1.15rem 1fr;
  gap: .5rem;
  align-items: start;
  padding: .3rem 0;
  font-size: .92rem;
  color: var(--ink-2);
}
.tier-list li::before {
  content: "";
  width: .58rem;
  height: .32rem;
  margin-top: .42rem;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}
.tier-list li.tier-not { color: var(--ink-3); }
.tier-list li.tier-not::before {
  border: 0;
  width: .6rem;
  height: 2px;
  margin-top: .58rem;
  background: var(--line-strong);
  transform: none;
}


.land-private {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
  padding: 1.5rem;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-1);
}
@media (min-width: 46rem) {
  .land-private { grid-template-columns: auto 1fr; gap: 1.75rem; padding: 2.25rem; margin-top: 4rem; }
}
.land-private .land-h2 { margin-top: 0; }
.land-private-ico {
  width: 3.2rem; height: 3.2rem;
  border-radius: var(--r);
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid color-mix(in srgb, var(--accent) 25%, transparent);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 18px color-mix(in srgb, var(--accent) 20%, transparent);
}
.land-private-ico svg { width: 1.5rem; height: 1.5rem; }

.land-pair { display: grid; gap: .9rem; }
@media (min-width: 46rem) { .land-pair { grid-template-columns: repeat(2, 1fr); } }
.land-pair .card > h3 { margin-bottom: .5rem; }

.land-close {
  margin-top: 3rem;
  padding: 2.5rem 1rem 1rem;
  text-align: center;
  position: relative;
}
@media (min-width: 46rem) { .land-close { margin-top: 5rem; padding-top: 3.5rem; } }
.land-close .land-cta { justify-content: center; }
.land-close .land-h2 { margin-top: 0; }

.land-mascot {
  display: block;
  width: min(13rem, 55vw);
  height: auto;
  margin: 0 auto 1.25rem;
  filter: drop-shadow(0 14px 34px var(--land-glow));
  animation: land-float 6s ease-in-out infinite;
}
@keyframes land-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}


.land-doc { max-width: 44rem; }
.land-doc .land-h2 { margin-bottom: 1.25rem; }
.land-doc p { font-size: 1.02rem; line-height: 1.6; }




[id] { scroll-margin-top: calc(env(safe-area-inset-top) + 4.25rem); }







.offers { list-style: none; margin: 0; padding: 0; }
.offer + .offer { margin-top: .8rem; }

.offer-top {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
}
.offer-photo {
  width: 4.5rem; height: 4.5rem;
  flex: none;
  border-radius: var(--r);
  object-fit: cover;
  border: 1px solid var(--line);
  display: block;
  background: var(--surface-2);
}


.offer-head { min-width: 0; flex: 1; }
.offer-title {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}
.offer-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .4rem .55rem;
  margin: .45rem 0 0;
}
.offer-blurb { margin: .75rem 0 0; }
.offer-ask {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-top: .85rem;
  padding-top: .85rem;
  border-top: 1px dashed var(--line);
}
