/* Generated from src/features/skyzon/skyzon.css so the prototype and the
   application share one stylesheet. Re-run the generator after editing the
   source; do not edit this copy by hand. */
:root{--font-mono:"JetBrains Mono",ui-monospace,SFMono-Regular,Menlo,monospace;--font-sans:Inter,system-ui,-apple-system,"Segoe UI",sans-serif}
*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth}
body{margin:0;background:#0f0e0d;color:#f6f4f0;font-family:var(--font-sans);font-feature-settings:"cv11","ss01";font-size:16px;line-height:1.55;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;overflow-x:hidden}
img,video,canvas,svg{display:block;max-width:100%}
a{color:inherit;text-decoration:none}
button{font:inherit;color:inherit;background:none;border:0;padding:0;cursor:pointer}
h1,h2,h3,h4,p,ul,ol,figure,blockquote{margin:0}
ul,ol{padding:0;list-style:none}
:focus-visible{outline:2px solid #e0693c;outline-offset:2px;border-radius:4px}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
/* =========================================================================
   SKYZON
   Skyline's cinema and movement, Horizon's calm type and breathing room.

   One stylesheet for everything the direction touches: the public front
   door, the account entry frame, and the signed-in shell. Semantic Tailwind
   tokens keep working everywhere; this file sets their values for the dark
   shell (.sz-app) and adds the handful of components the direction is made
   of. Nothing here is decorated with !important, and nothing here invents a
   second motion system: one curve, one reveal, one press.
   ========================================================================= */

:root {
  /* Film: the dark canvas. Paper: the light one. Ember: the only colour. */
  --sz-film: #0f0e0d;
  --sz-shell: #141311;
  --sz-panel: #1b1a18;
  --sz-panel-2: #232220;
  --sz-panel-3: #2a2825;
  --sz-cream: #f6f4f0;
  --sz-cream-70: rgba(246, 244, 240, 0.72);
  --sz-cream-50: rgba(246, 244, 240, 0.5);
  --sz-cream-30: rgba(246, 244, 240, 0.3);
  --sz-line: rgba(246, 244, 240, 0.1);
  --sz-line-strong: rgba(246, 244, 240, 0.18);
  --sz-paper: #f4f2ee;
  --sz-surface: #efede8;
  --sz-ink: #262523;
  --sz-ink-deep: #1f1e1c;
  --sz-muted: #7d7a75;
  --sz-border: rgba(38, 37, 35, 0.09);
  --sz-border-strong: rgba(38, 37, 35, 0.16);
  --sz-ember: #e0693c;
  --sz-ember-bright: #f07a47;
  --sz-ember-deep: #b84a26;
  --sz-ember-soft: #f8ece4;
  --sz-ember-pale: #ffc9a8;
  --sz-success: #4caf6e;
  --sz-warning: #e3a83b;
  --sz-tai: #3f7b7b;

  --sz-ease: cubic-bezier(0.23, 1, 0.32, 1);
  --sz-ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --sz-r: 12px;
  --sz-r-lg: 18px;
  --sz-r-xl: 24px;
  --sz-wrap: 1320px;
  --sz-gutter: clamp(20px, 4vw, 56px);
  --sz-section: clamp(88px, 10vw, 150px);
  --sz-nav: 72px;
  --sz-serif: Georgia, "Times New Roman", "Iowan Old Style", serif;
}

/* ---------- type: Horizon's calm, Skyline's contrast ---------- */
.sz-wrap {
  width: 100%;
  max-width: var(--sz-wrap);
  margin: 0 auto;
  padding-left: var(--sz-gutter);
  padding-right: var(--sz-gutter);
}
.sz-display {
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.02;
  font-size: clamp(42px, 5.9vw, 84px);
  text-wrap: balance;
}
.sz-h2 {
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.06;
  font-size: clamp(32px, 4.2vw, 60px);
  text-wrap: balance;
}
.sz-h3 {
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.12;
  font-size: clamp(22px, 2.2vw, 30px);
}
.sz-lead {
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.55;
  letter-spacing: 0;
}
.sz-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2;
}
.sz-accent {
  font-family: var(--sz-serif);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.03em;
}
.sz-on-film .sz-accent {
  color: var(--sz-ember-pale);
}
.sz-on-paper .sz-accent {
  color: var(--sz-ember-deep);
}
.sz-tnum {
  font-variant-numeric: tabular-nums;
}

/* ---------- motion ---------- */
.sz-js .sz-rv {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 700ms var(--sz-ease),
    transform 700ms var(--sz-ease);
  transition-delay: calc(var(--i, 0) * 70ms);
}
.sz-js .sz-rv.in {
  opacity: 1;
  transform: none;
}
.sz-press {
  transition:
    transform 160ms var(--sz-ease),
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease;
}
.sz-press:active {
  transform: scale(0.97);
}
@keyframes sz-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.sz-mq {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}
.sz-mq-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: sz-marquee 46s linear infinite;
}
@media (hover: hover) and (pointer: fine) {
  .sz-mq:hover .sz-mq-track {
    animation-play-state: paused;
  }
}
@keyframes sz-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ---------- buttons ---------- */
.sz-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  white-space: nowrap;
  cursor: pointer;
  transition:
    transform 160ms var(--sz-ease),
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease;
}
.sz-btn:active {
  transform: scale(0.97);
}
.sz-btn svg {
  width: 16px;
  height: 16px;
  flex: none;
}
.sz-btn-primary {
  background: var(--sz-ember);
  color: #fff;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.12) inset,
    0 8px 24px rgba(224, 105, 60, 0.25);
}
.sz-btn-ghost {
  background: rgba(246, 244, 240, 0.08);
  color: var(--sz-cream);
  box-shadow: inset 0 0 0 1px var(--sz-line-strong);
}
.sz-btn-cream {
  background: var(--sz-cream);
  color: var(--sz-ink-deep);
}
.sz-btn-ink {
  background: var(--sz-ink-deep);
  color: var(--sz-cream);
}
.sz-btn-outline {
  color: var(--sz-ink);
  box-shadow: inset 0 0 0 1px var(--sz-border-strong);
}
.sz-btn-lg {
  min-height: 54px;
  padding: 0 28px;
  font-size: 16px;
}
.sz-btn-sm {
  min-height: 38px;
  padding: 0 14px;
  font-size: 13px;
}
@media (hover: hover) and (pointer: fine) {
  .sz-btn-primary:hover {
    background: var(--sz-ember-bright);
  }
  .sz-btn-ghost:hover {
    background: rgba(246, 244, 240, 0.14);
  }
  .sz-btn-cream:hover {
    background: #fff;
  }
  .sz-btn-ink:hover {
    background: #2c2a27;
  }
  .sz-btn-outline:hover {
    background: rgba(38, 37, 35, 0.05);
  }
}

/* ---------- segmented control (Skyline, instant thumb) ---------- */
.sz-seg {
  position: relative;
  display: inline-grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  padding: 3px;
  border-radius: 999px;
  background: rgba(246, 244, 240, 0.1);
  box-shadow:
    inset 0 0 0 1px var(--sz-line-strong),
    inset 0 1px 2px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
  isolation: isolate;
  user-select: none;
}
.sz-seg button {
  position: relative;
  z-index: 1;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--sz-cream-70);
  white-space: nowrap;
  transition: color 120ms ease;
}
.sz-seg button[aria-checked="true"] {
  color: var(--sz-ink-deep);
  background: var(--sz-cream);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.sz-seg button:focus-visible {
  outline: 2px solid var(--sz-ember);
  outline-offset: 2px;
}

/* ---------- the film ---------- */
.sz-film {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--sz-film);
  isolation: isolate;
}
.sz-film-poster,
.sz-film-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sz-film-video {
  opacity: 0;
  transition: opacity 700ms var(--sz-ease);
}
.sz-film[data-ready="true"] .sz-film-video {
  opacity: 1;
}
.sz-pixel-reveal {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 240ms var(--sz-ease);
}
.sz-film-shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.sz-film[data-shade="default"] .sz-film-shade {
  background: linear-gradient(180deg, rgba(15, 14, 13, 0.1) 0%, rgba(15, 14, 13, 0) 35%, rgba(15, 14, 13, 0.82) 100%);
}
.sz-film[data-shade="hero"] .sz-film-shade {
  background:
    radial-gradient(60% 50% at 50% 42%, rgba(224, 105, 60, 0.18), rgba(224, 105, 60, 0) 70%),
    linear-gradient(180deg, rgba(15, 14, 13, 0.55) 0%, rgba(15, 14, 13, 0.12) 32%, rgba(15, 14, 13, 0.36) 60%, rgba(15, 14, 13, 0.94) 100%);
}
.sz-film[data-shade="card"] .sz-film-shade {
  background: linear-gradient(180deg, rgba(15, 14, 13, 0.25) 0%, rgba(15, 14, 13, 0.05) 30%, rgba(15, 14, 13, 0.9) 100%);
}

/* =========================================================================
   PUBLIC FRONT DOOR
   ========================================================================= */

/* ---------- nav over the film ---------- */
.sz-nav-film {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(15, 14, 13, 0.55);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--sz-cream);
  --foreground: var(--sz-cream);
  --muted-foreground: var(--sz-cream-70);
  --secondary: rgba(246, 244, 240, 0.08);
  --border: rgba(246, 244, 240, 0.18);
  --input: rgba(246, 244, 240, 0.18);
  --background: rgba(15, 14, 13, 0.5);
  --card: #1b1a18;
  --card-foreground: var(--sz-cream);
  --popover: #1b1a18;
  --popover-foreground: var(--sz-cream);
  --accent: rgba(246, 244, 240, 0.08);
  --accent-foreground: var(--sz-cream);
  --primary: var(--sz-ember);
  --primary-foreground: #fff;
  --ring: var(--sz-ember-bright);
}
.sz-nav-film::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 28px;
  background: linear-gradient(to bottom, rgba(15, 14, 13, 0.3), rgba(15, 14, 13, 0));
  pointer-events: none;
}
@media (prefers-reduced-transparency: reduce) {
  .sz-nav-film {
    background: var(--sz-film);
    backdrop-filter: none;
  }
}

/* ---------- hero ---------- */
.sz-home {
  background: var(--sz-film);
  color: var(--sz-cream);
}
.sz-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  isolation: isolate;
  background-color: var(--sz-film);
  background-size: cover;
  background-position: center;
}
.sz-hero > .sz-film {
  z-index: 0;
  animation: sz-fade-in 700ms var(--sz-ease) both;
}
.sz-hero-body {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--sz-nav) + 96px);
  padding-bottom: 56px;
}
.sz-hero-top {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.sz-hero-top .sz-label {
  color: var(--sz-cream-70);
}
.sz-hero h1 {
  max-width: 21ch;
}
.sz-hero .sz-lead {
  max-width: 52ch;
  margin-top: 28px;
  color: var(--sz-cream-70);
}
.sz-hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.sz-hero-meta {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 56px;
  padding-top: 26px;
  border-top: 1px solid var(--sz-line);
  font-size: 14px;
  color: var(--sz-cream-70);
}
.sz-hero-meta strong {
  color: var(--sz-cream);
  font-weight: 600;
}
.sz-hero-meta .sz-sep {
  width: 1px;
  height: 20px;
  background: var(--sz-line-strong);
}
.sz-faces {
  display: flex;
  align-items: center;
}
.sz-faces img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px var(--sz-film);
}
.sz-faces img + img,
.sz-faces .sz-faces-more {
  margin-left: -9px;
}
.sz-faces .sz-faces-more {
  display: grid;
  place-items: center;
  height: 34px;
  min-width: 42px;
  padding: 0 8px;
  border-radius: 999px;
  background: var(--sz-panel);
  box-shadow:
    0 0 0 2px var(--sz-film),
    inset 0 0 0 1px var(--sz-line-strong);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--sz-cream-70);
}
.sz-hero-cities {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 28px;
}
.sz-hero-cities::-webkit-scrollbar {
  display: none;
}
.sz-hero-cities button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 14px 0 0;
  margin-right: 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--sz-cream-50);
  white-space: nowrap;
  transition: color 200ms ease;
}
.sz-hero-cities button .sz-tnum {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--sz-cream-30);
}
.sz-hero-cities button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 14px;
  bottom: 6px;
  height: 2px;
  border-radius: 1px;
  background: var(--sz-ember);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 600ms var(--sz-ease);
}
.sz-hero-cities button[aria-pressed="true"] {
  color: var(--sz-cream);
}
.sz-hero-cities button[aria-pressed="true"]::after {
  transform: scaleX(1);
}
.sz-hero-cities button:focus-visible {
  outline: 2px solid var(--sz-ember);
  outline-offset: 2px;
  border-radius: 6px;
}
.sz-scroll-hint {
  position: absolute;
  right: var(--sz-gutter);
  bottom: 34px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sz-cream-50);
}
.sz-scroll-hint span {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--sz-cream-50), transparent);
}

/* ---------- sections ---------- */
.sz-section {
  padding: var(--sz-section) 0;
}
.sz-section-paper {
  background: var(--sz-paper);
  color: var(--sz-ink);
}
.sz-section-surface {
  background: var(--sz-surface);
  color: var(--sz-ink);
}
.sz-section-film {
  background: var(--sz-film);
  color: var(--sz-cream);
}
.sz-section-shell {
  background: var(--sz-shell);
  color: var(--sz-cream);
}
.sz-sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.sz-sec-head .sz-label {
  margin-bottom: 20px;
  color: var(--sz-ember);
}
.sz-on-paper .sz-sec-head .sz-label {
  color: var(--sz-ember-deep);
}
.sz-sec-head h2 {
  max-width: 18ch;
}
.sz-sec-head .sz-lead {
  max-width: 40ch;
  color: var(--sz-cream-70);
}
.sz-on-paper .sz-sec-head .sz-lead {
  color: var(--sz-muted);
}
.sz-sec-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
}
.sz-sec-link svg {
  width: 16px;
  height: 16px;
  transition: transform 300ms var(--sz-ease);
}
.sz-sec-link:hover svg {
  transform: translateX(4px);
}

/* ---------- proof strip ---------- */
.sz-proof {
  padding: 56px 0 64px;
  border-bottom: 1px solid var(--sz-border);
}
.sz-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.sz-stat .sz-num {
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  font-size: clamp(36px, 4.2vw, 56px);
  font-variant-numeric: tabular-nums;
}
.sz-stat .sz-num small {
  font-size: 0.5em;
  font-weight: 500;
  color: var(--sz-muted);
  margin-left: 2px;
}
.sz-stat p {
  margin-top: 10px;
  font-size: 14px;
  color: var(--sz-muted);
  max-width: 22ch;
}
.sz-logos {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--sz-border);
}
.sz-logos .sz-label {
  color: var(--sz-muted);
  margin-bottom: 20px;
}
.sz-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 30px;
  flex: none;
}
.sz-logo img {
  height: 24px;
  width: auto;
  max-width: 128px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.7;
  mix-blend-mode: multiply;
}
.sz-logo img[data-opaque="true"] {
  filter: none;
  opacity: 1;
  mix-blend-mode: normal;
  border-radius: 6px;
}

/* ---------- five cities ---------- */
.sz-cities {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}
.sz-city {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--sz-r-lg);
  overflow: hidden;
  background: var(--sz-panel);
  isolation: isolate;
  box-shadow: inset 0 0 0 1px var(--sz-line);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition:
    transform 500ms var(--sz-ease),
    box-shadow 500ms var(--sz-ease);
}
.sz-city > .sz-film {
  transition: transform 900ms var(--sz-ease);
}
.sz-city:active {
  transform: scale(0.985);
}
@media (hover: hover) and (pointer: fine) {
  .sz-city:hover {
    transform: translateY(-6px);
    box-shadow:
      inset 0 0 0 1px var(--sz-line-strong),
      0 30px 60px rgba(0, 0, 0, 0.45);
  }
  .sz-city:hover > .sz-film {
    transform: scale(1.06);
  }
}
.sz-city:focus-visible {
  outline: 3px solid var(--sz-ember);
  outline-offset: 3px;
}
.sz-city-live {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 28px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(15, 14, 13, 0.55);
  backdrop-filter: blur(12px);
  box-shadow: inset 0 0 0 1px var(--sz-line-strong);
  font-size: 12px;
  font-weight: 600;
}
.sz-city-index {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--sz-cream-50);
}
.sz-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sz-success);
  box-shadow: 0 0 0 3px rgba(76, 175, 110, 0.22);
  flex: none;
}
.sz-dot-ember {
  background: var(--sz-ember);
  box-shadow: 0 0 0 3px rgba(224, 105, 60, 0.25);
}
.sz-city-text {
  position: relative;
  z-index: 2;
  padding: 22px;
}
.sz-city-name {
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1;
  font-size: clamp(26px, 2.2vw, 34px);
}
.sz-city-line {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--sz-cream-70);
}
.sz-city-line b {
  color: var(--sz-cream);
  font-weight: 600;
}
.sz-city-go {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--sz-line);
  font-size: 12px;
  font-weight: 600;
  color: var(--sz-cream);
}
.sz-city-go svg {
  width: 16px;
  height: 16px;
  transition: transform 300ms var(--sz-ease);
}
.sz-city:hover .sz-city-go svg {
  transform: translateX(4px);
}
.sz-cities-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
  color: var(--sz-cream-70);
  font-size: 15px;
}

/* ---------- three doors ---------- */
.sz-doors {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.sz-door {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 460px;
  border-radius: var(--sz-r-xl);
  overflow: hidden;
  background: #fff;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.04),
    0 6px 20px rgba(0, 0, 0, 0.03),
    inset 0 0 0 1px var(--sz-border);
  color: var(--sz-ink);
  isolation: isolate;
  transition:
    transform 500ms var(--sz-ease),
    box-shadow 500ms var(--sz-ease);
}
.sz-door:active {
  transform: scale(0.99);
}
@media (hover: hover) and (pointer: fine) {
  .sz-door:hover {
    transform: translateY(-6px);
    box-shadow:
      0 2px 4px rgba(0, 0, 0, 0.05),
      0 24px 50px rgba(0, 0, 0, 0.1),
      inset 0 0 0 1px var(--sz-border-strong);
  }
}
.sz-door:focus-visible {
  outline: 3px solid var(--sz-ember-deep);
  outline-offset: 3px;
}
.sz-door-cover {
  position: relative;
  min-height: 250px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.sz-door-cover .sz-label {
  color: var(--sz-ember-deep);
}
.sz-door-cover h3 {
  font-size: clamp(30px, 2.6vw, 40px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.02;
  max-width: 10ch;
}
.sz-door-cover .sz-door-art {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.sz-door-paper .sz-door-cover {
  background: var(--sz-surface);
}
.sz-door-ember .sz-door-cover {
  background: var(--sz-ember-soft);
}
.sz-door-film .sz-door-cover {
  background: var(--sz-panel);
  color: var(--sz-cream);
}
.sz-door-film .sz-door-cover .sz-label {
  color: var(--sz-ember-pale);
}
.sz-door-body {
  padding: 24px 26px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.sz-door-body p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--sz-muted);
  flex: 1;
}
.sz-door-body .sz-door-go {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--sz-border);
  font-size: 14px;
  font-weight: 600;
}
.sz-door-go svg {
  width: 18px;
  height: 18px;
  transition: transform 300ms var(--sz-ease);
}
.sz-door:hover .sz-door-go svg {
  transform: translateX(4px);
}
.sz-door-faces {
  display: flex;
}
.sz-door-faces img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 3px var(--sz-surface);
}
.sz-door-faces img + img {
  margin-left: -12px;
}

/* ---------- for business ---------- */
.sz-business {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.sz-business .sz-lead {
  margin-top: 28px;
  max-width: 46ch;
  color: var(--sz-cream-70);
}
.sz-business-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.sz-business-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--sz-cream-50);
}
.sz-loop {
  display: grid;
  gap: 0;
}
.sz-loop li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--sz-line);
}
.sz-loop li:first-child {
  border-top: 0;
  padding-top: 0;
}
.sz-loop .sz-k {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--sz-ember);
  padding-top: 5px;
}
.sz-loop b {
  display: block;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.sz-loop span {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--sz-cream-70);
}
.sz-cases {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(48px, 6vw, 80px);
}
.sz-case {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 380px;
  border-radius: var(--sz-r-lg);
  overflow: hidden;
  background: var(--sz-panel);
  box-shadow: inset 0 0 0 1px var(--sz-line);
  isolation: isolate;
  padding: 26px;
  transition: transform 160ms var(--sz-ease);
}
.sz-case:first-child {
  grid-column: span 2;
  min-height: 460px;
}
.sz-case:active {
  transform: scale(0.99);
}
.sz-case img.sz-case-photo {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 700ms var(--sz-ease);
  filter: saturate(0.85);
}
.sz-case::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(15, 14, 13, 0.3) 0%, rgba(15, 14, 13, 0.1) 30%, rgba(15, 14, 13, 0.6) 60%, rgba(15, 14, 13, 0.96) 100%);
}
@media (hover: hover) and (pointer: fine) {
  .sz-case:hover img.sz-case-photo {
    transform: scale(1.06);
  }
}
.sz-case-org {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(246, 244, 240, 0.12);
  backdrop-filter: blur(12px);
  box-shadow: inset 0 0 0 1px var(--sz-line-strong);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.sz-case-org img {
  height: 14px;
  width: auto;
  filter: brightness(0) invert(1);
}
.sz-case-org[data-plate="true"] {
  background: #fff;
  color: var(--sz-ink);
  backdrop-filter: none;
  box-shadow: none;
}
.sz-case-org[data-plate="true"] img {
  filter: none;
  height: 20px;
}
.sz-case h3 {
  margin-top: 16px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.12;
  font-size: clamp(22px, 2.1vw, 30px);
  max-width: 22ch;
}
.sz-case:first-child h3 {
  font-size: clamp(28px, 3vw, 42px);
  max-width: 16ch;
}
.sz-case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.sz-case-tags span {
  padding: 7px 11px;
  border-radius: 10px;
  background: rgba(246, 244, 240, 0.08);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 0 0 1px var(--sz-line);
  font-size: 12.5px;
  font-weight: 500;
}
.sz-case-arrow {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(246, 244, 240, 0.1);
  box-shadow: inset 0 0 0 1px var(--sz-line-strong);
  transition:
    background-color 200ms ease,
    color 200ms ease;
}
.sz-case:hover .sz-case-arrow {
  background: var(--sz-ember);
  color: #fff;
}

/* ---------- stories ---------- */
.sz-stories {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.sz-portraits {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
}
.sz-portraits img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: var(--sz-r-lg);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
  transition:
    transform 700ms var(--sz-ease),
    opacity 500ms var(--sz-ease);
}
.sz-portraits img[data-pos="back"] {
  transform: rotate(-6deg) scale(0.94);
  opacity: 0.45;
}
.sz-portraits img[data-pos="front"] {
  transform: rotate(2deg);
}
.sz-portraits img[data-pos="hidden"] {
  opacity: 0;
  transform: rotate(8deg) scale(0.9);
}
.sz-story blockquote {
  font-size: clamp(24px, 2.6vw, 38px);
  line-height: 1.25;
  letter-spacing: -0.03em;
  font-weight: 500;
  text-wrap: balance;
}
.sz-story blockquote .sz-accent {
  color: var(--sz-ember-deep);
}
.sz-story-who {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}
.sz-story-who b {
  display: block;
  font-size: 16px;
  font-weight: 600;
}
.sz-story-who span {
  display: block;
  font-size: 14px;
  color: var(--sz-muted);
  margin-top: 2px;
}
.sz-story-who img {
  height: 20px;
  width: auto;
  max-width: 90px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.7;
  mix-blend-mode: multiply;
  margin-left: auto;
}
.sz-story-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
}
.sz-story-nav button {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 0 1px var(--sz-border-strong);
  transition:
    background-color 160ms ease,
    transform 160ms var(--sz-ease);
}
.sz-story-nav button:hover {
  background: rgba(38, 37, 35, 0.06);
}
.sz-story-nav button:active {
  transform: scale(0.94);
}
.sz-story-nav button svg {
  width: 18px;
  height: 18px;
}
.sz-story-nav .sz-tnum {
  margin-left: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--sz-muted);
}
.sz-story-tag {
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 20px;
  background: var(--sz-ember-soft);
  color: var(--sz-ember-deep);
}

/* ---------- closing ---------- */
.sz-closing {
  text-align: center;
}
.sz-closing h2 {
  max-width: 16ch;
  margin: 0 auto;
}
.sz-closing .sz-lead {
  max-width: 44ch;
  margin: 24px auto 0;
  color: var(--sz-cream-70);
}
.sz-closing .sz-hero-cta {
  justify-content: center;
}
.sz-closing-note {
  margin-top: 18px;
  font-size: 13px;
  color: var(--sz-cream-50);
}

/* ---------- FAQ on film ---------- */
.sz-faq {
  max-width: 820px;
  margin: 0 auto;
}
.sz-faq details {
  border-top: 1px solid var(--sz-line);
}
.sz-faq details:last-child {
  border-bottom: 1px solid var(--sz-line);
}
.sz-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 64px;
  padding: 16px 0;
  cursor: pointer;
  list-style: none;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.sz-faq summary::-webkit-details-marker {
  display: none;
}
.sz-faq summary svg {
  width: 18px;
  height: 18px;
  flex: none;
  color: var(--sz-cream-50);
  transition: transform 300ms var(--sz-ease);
}
.sz-faq details[open] summary svg {
  transform: rotate(45deg);
}
.sz-faq details p {
  padding: 0 0 22px;
  max-width: 64ch;
  font-size: 15px;
  line-height: 1.6;
  color: var(--sz-cream-70);
}

/* =========================================================================
   ACCOUNT ENTRY (auth, signup, start, reset)
   ========================================================================= */
.sz-entry {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  background: var(--sz-film);
  color: var(--sz-cream);
  --background: var(--sz-film);
  --foreground: var(--sz-cream);
  --card: rgba(27, 26, 24, 0.86);
  --card-foreground: var(--sz-cream);
  --popover: #1b1a18;
  --popover-foreground: var(--sz-cream);
  --muted: var(--sz-panel-2);
  --muted-foreground: var(--sz-cream-70);
  --surface: var(--sz-panel);
  --surface-foreground: var(--sz-cream);
  --accent: var(--sz-panel-2);
  --accent-foreground: var(--sz-cream);
  --primary: var(--sz-ember);
  --primary-foreground: #fff;
  --primary-soft: rgba(224, 105, 60, 0.14);
  --emphasis: var(--sz-ember);
  --emphasis-foreground: #fff;
  --border: var(--sz-line-strong);
  --input: rgba(246, 244, 240, 0.22);
  --ring: var(--sz-ember-bright);
  --ink: var(--sz-film);
  --ink-foreground: var(--sz-cream);
  --mint: var(--sz-ember-pale);
  color-scheme: dark;
}
.sz-entry > .sz-film {
  position: fixed;
  z-index: -1;
}
.sz-entry > .sz-film .sz-film-shade {
  background:
    linear-gradient(90deg, rgba(15, 14, 13, 0.82) 0%, rgba(15, 14, 13, 0.35) 55%, rgba(15, 14, 13, 0.7) 100%),
    linear-gradient(180deg, rgba(15, 14, 13, 0.5) 0%, rgba(15, 14, 13, 0.2) 40%, rgba(15, 14, 13, 0.85) 100%);
}
.sz-entry-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 560px);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  padding-top: calc(var(--sz-nav) + 40px);
  padding-bottom: 64px;
  min-height: 100svh;
}
.sz-entry-story {
  align-self: center;
}
.sz-entry-city {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sz-cream-70);
  margin-bottom: 40px;
}
.sz-entry-city .sz-tnum {
  font-family: var(--font-mono);
  color: var(--sz-cream-50);
}
.sz-entry-story h2 {
  max-width: 12ch;
}
.sz-entry-story .sz-lead {
  margin-top: 24px;
  max-width: 40ch;
  color: var(--sz-cream-70);
}
.sz-entry-steps {
  display: flex;
  gap: 6px;
  margin-top: 40px;
}
.sz-entry-steps i {
  display: block;
  width: 28px;
  height: 4px;
  border-radius: 2px;
  background: var(--sz-line-strong);
  transition: background-color 400ms ease;
}
.sz-entry-steps i[data-on="true"] {
  background: var(--sz-ember);
}
.sz-entry-panel {
  min-width: 0;
}
.sz-entry-panel .bg-card,
.sz-entry-panel [class*="bg-card"] {
  backdrop-filter: blur(20px) saturate(160%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 30px 80px rgba(0, 0, 0, 0.5);
}
.sz-entry-panel input,
.sz-entry-panel textarea,
.sz-entry-panel select {
  background: rgba(15, 14, 13, 0.55);
  color: var(--sz-cream);
}
.sz-entry-panel input::placeholder,
.sz-entry-panel textarea::placeholder {
  color: var(--sz-cream-30);
}
.sz-entry-panel .sz-eyebrow {
  color: var(--sz-ember-pale);
}
.sz-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.6;
  margin-bottom: 14px;
}

/* =========================================================================
   SIGNED-IN SHELL
   Skyline's dark shell with Horizon's spacing. Semantic tokens flip here so
   every existing route reads on film without touching its markup.
   ========================================================================= */
.sz-app.dark {
  color-scheme: dark;
  --background: var(--sz-shell);
  --foreground: var(--sz-cream);
  --surface: var(--sz-panel);
  --surface-foreground: var(--sz-cream);
  --card: var(--sz-panel);
  --card-foreground: var(--sz-cream);
  --popover: #1f1e1b;
  --popover-foreground: var(--sz-cream);
  --primary: var(--sz-ember);
  --primary-foreground: #ffffff;
  --primary-soft: rgba(224, 105, 60, 0.14);
  --ink: var(--sz-film);
  --ink-foreground: var(--sz-cream);
  --forest: var(--sz-panel-2);
  --forest-foreground: var(--sz-cream);
  --mint: var(--sz-ember);
  --mint-bright: var(--sz-ember-bright);
  --mint-foreground: #ffffff;
  --secondary: var(--sz-panel-2);
  --secondary-foreground: var(--sz-cream);
  --muted: var(--sz-panel-2);
  --muted-foreground: rgba(246, 244, 240, 0.62);
  --accent: var(--sz-panel-3);
  --accent-foreground: var(--sz-cream);
  --accent-strong: var(--sz-ember-bright);
  --emphasis: var(--sz-ember);
  --emphasis-foreground: #ffffff;
  --emphasis-soft: rgba(224, 105, 60, 0.14);
  --destructive: #d2513c;
  --destructive-foreground: #ffffff;
  --success: var(--sz-success);
  --success-foreground: #0f0e0d;
  --warning: var(--sz-warning);
  --warning-foreground: #0f0e0d;
  --border: var(--sz-line);
  --input: var(--sz-line-strong);
  --ring: var(--sz-ember-bright);
  --chart-1: var(--sz-ember);
  --chart-2: var(--sz-cream);
  --chart-3: var(--sz-cream-70);
  --chart-4: var(--sz-cream-50);
  --chart-5: var(--sz-cream-30);
  --sidebar: var(--sz-shell);
  --sidebar-foreground: var(--sz-cream);
  --sidebar-primary: var(--sz-ember);
  --sidebar-primary-foreground: #ffffff;
  --sidebar-accent: rgba(246, 244, 240, 0.08);
  --sidebar-accent-foreground: var(--sz-cream);
  --sidebar-border: var(--sz-line);
  --sidebar-ring: var(--sz-ember-bright);
  --tai-ember: var(--sz-ember);
  --shadow-card: 0 1px 2px rgba(0, 0, 0, 0.3), 0 6px 20px rgba(0, 0, 0, 0.25);
  --shadow-lift: 0 2px 4px rgba(0, 0, 0, 0.3), 0 14px 36px rgba(0, 0, 0, 0.4);
  background: var(--sz-shell);
  color: var(--sz-cream);
}
.sz-app .sz-topbar {
  background: rgba(20, 19, 17, 0.72);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.sz-app .sz-topbar::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 20px;
  background: linear-gradient(to bottom, rgba(20, 19, 17, 0.35), rgba(20, 19, 17, 0));
  pointer-events: none;
}
@media (prefers-reduced-transparency: reduce) {
  .sz-app .sz-topbar {
    background: var(--sz-shell);
    backdrop-filter: none;
  }
}
.sz-sidebar {
  background: var(--sz-shell);
  border-color: var(--sz-line);
}
.sz-sidebar nav a {
  min-height: 42px;
  border-radius: 10px;
  color: var(--sz-cream-70);
  transition:
    transform 160ms var(--sz-ease),
    background-color 160ms ease,
    color 160ms ease;
}
.sz-sidebar nav a:active {
  transform: scale(0.97);
}
.sz-sidebar nav a:hover {
  background: rgba(246, 244, 240, 0.06);
  color: var(--sz-cream);
}
.sz-sidebar nav a[aria-current="page"] {
  background: rgba(246, 244, 240, 0.09);
  color: var(--sz-cream);
  font-weight: 500;
}
.sz-sidebar nav a[aria-current="page"] svg {
  color: var(--sz-ember-bright);
}
.sz-app #app-main {
  min-width: 0;
}

/* Home: the film cards and the rows. */
.sz-home-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.sz-home-head h1 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.05;
}
.sz-home-head p {
  margin-top: 8px;
  color: var(--sz-cream-70);
  font-size: 15px;
}
.sz-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.sz-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(246, 244, 240, 0.06);
  box-shadow: inset 0 0 0 1px var(--sz-line);
  font-size: 12.5px;
  font-weight: 600;
  white-space: nowrap;
}
.sz-chip .sz-k {
  color: var(--sz-cream-50);
  font-weight: 500;
}
.sz-chip-ember {
  background: rgba(224, 105, 60, 0.14);
  box-shadow: inset 0 0 0 1px rgba(224, 105, 60, 0.35);
  color: #f4a07c;
}
.sz-chip-ok {
  background: rgba(47, 122, 76, 0.16);
  box-shadow: inset 0 0 0 1px rgba(47, 122, 76, 0.4);
  color: #7ccb97;
}
.sz-fy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.sz-fy {
  position: relative;
  min-height: 280px;
  border-radius: var(--sz-r-xl);
  overflow: hidden;
  background: var(--sz-panel);
  box-shadow: inset 0 0 0 1px var(--sz-line);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  isolation: isolate;
  color: var(--sz-cream);
  transition:
    transform 400ms var(--sz-ease),
    box-shadow 400ms var(--sz-ease);
}
.sz-fy > .sz-film {
  z-index: 0;
  transition: transform 900ms var(--sz-ease);
}
.sz-fy:active {
  transform: scale(0.985);
}
@media (hover: hover) and (pointer: fine) {
  .sz-fy:hover {
    transform: translateY(-4px);
    box-shadow:
      inset 0 0 0 1px var(--sz-line-strong),
      0 24px 50px rgba(0, 0, 0, 0.45);
  }
  .sz-fy:hover > .sz-film {
    transform: scale(1.05);
  }
}
.sz-fy:focus-visible {
  outline: 3px solid var(--sz-ember);
  outline-offset: 3px;
}
.sz-fy-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 28px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(15, 14, 13, 0.55);
  backdrop-filter: blur(12px);
  box-shadow: inset 0 0 0 1px var(--sz-line-strong);
  font-size: 12px;
  font-weight: 600;
}
.sz-fy-body {
  position: relative;
  z-index: 2;
  padding: 20px;
}
.sz-fy-body h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.12;
}
.sz-fy-body p {
  margin-top: 8px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--sz-cream-70);
}
.sz-fy-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
}
.sz-fy-foot .sz-fy-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--sz-cream-70);
  min-width: 0;
}
.sz-fy-foot .sz-fy-meta img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
}
.sz-fy-foot .sz-btn {
  min-height: 36px;
  padding: 0 14px;
  font-size: 13px;
}
.sz-home-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.sz-card {
  position: relative;
  border-radius: var(--sz-r-lg);
  background: var(--sz-panel);
  box-shadow: inset 0 0 0 1px var(--sz-line);
  padding: 20px 20px 16px;
  min-width: 0;
}
.sz-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.sz-card-head .sz-label {
  color: var(--sz-cream-50);
}
.sz-card-head a {
  font-size: 12.5px;
  color: var(--sz-cream-70);
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  gap: 4px;
}
.sz-card-head a:hover {
  color: var(--sz-cream);
}
.sz-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  border-top: 1px solid var(--sz-line);
  min-width: 0;
}
.sz-row:first-of-type {
  border-top: 0;
}
.sz-row-link {
  border-radius: 8px;
  transition:
    transform 160ms var(--sz-ease),
    background-color 160ms ease;
}
.sz-row-link:active {
  transform: scale(0.985);
}
@media (hover: hover) and (pointer: fine) {
  .sz-row-link:hover {
    background: rgba(246, 244, 240, 0.05);
  }
}
.sz-row .sz-av {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  flex: none;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  overflow: hidden;
  background: var(--sz-panel-3);
}
.sz-row .sz-av img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sz-row .sz-av-round {
  border-radius: 50%;
}
.sz-row .sz-t {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sz-row .sz-s {
  font-size: 12.5px;
  color: var(--sz-cream-50);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sz-row .sz-min {
  min-width: 0;
  flex: 1;
}
.sz-row .sz-r {
  margin-left: auto;
  font-size: 12.5px;
  color: var(--sz-cream-50);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  flex: none;
}
.sz-row .sz-r b {
  color: var(--sz-cream);
  font-weight: 600;
}
.sz-row .sz-when {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--sz-cream-50);
  min-width: 64px;
  flex: none;
  font-variant-numeric: tabular-nums;
}
.sz-row .sz-badge {
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--sz-ember);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: grid;
  place-items: center;
  font-variant-numeric: tabular-nums;
}
.sz-empty {
  padding: 18px 0 6px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--sz-cream-50);
}
.sz-empty a {
  color: var(--sz-cream);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.sz-card .sz-btn-block {
  width: 100%;
  margin-top: 14px;
}

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1200px) {
  .sz-cities {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .sz-city:nth-child(n + 4) {
    aspect-ratio: 16 / 10;
  }
  .sz-city:nth-child(4) {
    grid-column: span 2;
  }
  .sz-fy-grid,
  .sz-home-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 960px) {
  .sz-hero-body {
    padding-top: calc(var(--sz-nav) + 64px);
    padding-bottom: 40px;
  }
  .sz-scroll-hint {
    display: none;
  }
  .sz-hero-meta {
    gap: 14px;
  }
  .sz-sec-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .sz-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 20px;
  }
  .sz-doors {
    grid-template-columns: 1fr;
  }
  .sz-door {
    min-height: 0;
  }
  .sz-door-cover {
    min-height: 200px;
  }
  .sz-business {
    grid-template-columns: 1fr;
  }
  .sz-cases {
    grid-template-columns: 1fr;
  }
  .sz-case,
  .sz-case:first-child {
    grid-column: auto;
    min-height: 340px;
  }
  .sz-stories {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .sz-portraits {
    max-width: 320px;
    aspect-ratio: 1 / 1;
  }
  .sz-entry-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: calc(var(--sz-nav) + 24px);
    align-content: start;
  }
  .sz-entry-story h2 {
    font-size: clamp(34px, 8vw, 48px);
  }
  .sz-entry-city {
    margin-bottom: 22px;
  }
}
@media (max-width: 640px) {
  .sz-cities {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding-bottom: 12px;
    scrollbar-width: none;
  }
  .sz-cities::-webkit-scrollbar {
    display: none;
  }
  .sz-city,
  .sz-city:nth-child(n + 4) {
    flex: 0 0 76vw;
    aspect-ratio: 4 / 5;
    scroll-snap-align: start;
    grid-column: auto;
  }
  .sz-hero-cta .sz-btn,
  .sz-business-cta .sz-btn {
    flex: 1 1 100%;
  }
  .sz-fy-grid,
  .sz-home-grid {
    grid-template-columns: 1fr;
  }
  .sz-fy {
    min-height: 240px;
  }
  .sz-entry-story .sz-lead {
    display: none;
  }
  .sz-entry-steps {
    margin-top: 22px;
  }
}

/* =========================================================================
   ACCESSIBILITY
   ========================================================================= */
@media (prefers-reduced-motion: reduce) {
  .sz-rv,
  .sz-js .sz-rv {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .sz-mq-track {
    animation: none;
    width: auto;
    flex-wrap: wrap;
    justify-content: center;
  }
  .sz-mq {
    mask-image: none;
  }
  .sz-pixel-reveal {
    display: none;
  }
  .sz-film-video {
    display: none;
  }
  .sz-hero > .sz-film {
    animation: none;
  }
  .sz-city,
  .sz-door,
  .sz-fy,
  .sz-case img.sz-case-photo,
  .sz-portraits img,
  .sz-city > .sz-film,
  .sz-fy > .sz-film {
    transition: none;
    transform: none;
  }
}
@media (prefers-contrast: more) {
  :root {
    --sz-cream-70: rgba(246, 244, 240, 0.9);
    --sz-cream-50: rgba(246, 244, 240, 0.78);
    --sz-line: rgba(246, 244, 240, 0.3);
    --sz-line-strong: rgba(246, 244, 240, 0.5);
    --sz-muted: #4f4b46;
    --sz-border: rgba(38, 37, 35, 0.3);
  }
  .sz-hero-cities button {
    color: var(--sz-cream);
  }
}
