/* ==========================================================================
   主催者の方へ / For organizers
   ==========================================================================

   This page is self-contained: it does not load styles.css or help.css. The
   LP is one continuous black surface, and this page alternates dark and light
   bands, which the LP tokens cannot express without fighting them. Its tokens
   are the imin Pay design system's, copied here rather than imported so the
   page keeps rendering if that system moves.

   It is also the PDF that gets emailed to people asking for 資料, so every
   animated state resolves to the finished one, and @media print at the end
   flattens the dark bands rather than sending black paper to a printer.
   ========================================================================== */

:root {
  /* ─── Brand ─────────────────────────────── */
  --brand: #6d4aff;
  --brand-hover: #5a38e8;
  --brand-light: #9b85ff;
  --brand-subtle: rgba(109, 74, 255, 0.12);
  --brand-glow: rgba(109, 74, 255, 0.25);

  /* ─── Dark surfaces ─────────────────────── */
  --bg-dark: #0b0b18;
  --bg-dark-2: #13131f;
  --bg-dark-3: #1c1c30;
  --border-dark: rgba(255, 255, 255, 0.08);

  /* ─── Light surfaces ────────────────────── */
  --bg-light: #ffffff;
  --bg-subtle: #f7f7fc;
  --border-light: #e8e8f2;

  /* ─── Text ──────────────────────────────── */
  --text-body: #1c1c2e;
  --text-muted: #6b6b8a;
  --text-subtle: #9898b0;
  --text-on-dark: rgba(255, 255, 255, 0.75);

  --success: #22c97f;
  --success-bg: rgba(34, 201, 127, 0.12);

  /* ─── Type ──────────────────────────────── */
  --font-sans: 'Space Grotesk', 'Noto Sans JP', -apple-system, BlinkMacSystemFont,
    'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  --font-display: 'Space Grotesk', 'Noto Sans JP', sans-serif;

  /* One step up from the design system's defaults: this is a long read on a
     desktop, not a component in an app frame. */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.375rem;

  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;

  /* ─── Space ─────────────────────────────── */
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --container-max: 1200px;
  --section-gap: clamp(44px, 5vw, 72px);

  /* ─── Effects ───────────────────────────── */
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  --radius-full: 9999px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-dark: 0 8px 40px rgba(0, 0, 0, 0.45);
  --shadow-brand: 0 6px 24px rgba(109, 74, 255, 0.3);
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-spring: 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  /* The nav is fixed; without this an in-page jump lands under it. */
  scroll-padding-top: 86px;
}

.org-body {
  margin: 0;
  background: var(--bg-dark);
  color: var(--text-body);
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.org-body img {
  display: block;
  max-width: 100%;
  height: auto;
}

.org-body h1,
.org-body h2,
.org-body h3,
.org-body h4,
.org-body h5,
.org-body p {
  margin: 0;
}

/* :where() keeps the base link colour at zero specificity, so every component
   below styles its own links by class without having to out-specify this. */
:where(.org-body) a {
  color: var(--brand);
  text-decoration: none;
  transition: color var(--transition-fast);
}

:where(.org-body) a:hover {
  color: var(--brand-hover);
}

.org-wrap {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.org-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.org-skip {
  position: absolute;
  left: 50%;
  top: 8px;
  z-index: 80;
  transform: translate(-50%, -200%);
  padding: 10px 18px;
  border-radius: var(--radius-full);
  background: var(--brand);
  color: #fff;
  font-size: var(--text-sm);
}

.org-skip:focus-visible {
  transform: translate(-50%, 0);
  color: #fff;
}

.org-body :focus-visible {
  outline: 2px solid var(--brand-light);
  outline-offset: 3px;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.org-button,
.org-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 28px;
  border: 1.5px solid transparent;
  border-radius: var(--radius-full);
  font-family: inherit;
  font-size: var(--text-base);
  font-weight: var(--weight-medium);
  letter-spacing: 0.01em;
  line-height: 1.4;
  white-space: nowrap;
  transition: background var(--transition-fast), border-color var(--transition-fast),
    color var(--transition-fast), transform var(--transition-fast);
}

.org-button:hover,
.org-cta:hover {
  transform: translateY(-1px);
}

/* The hero and closing calls to action. Kept on their own class because the
   print rules and the PDF check both address it by name. */
.org-cta {
  padding: 15px 36px;
  font-size: var(--text-lg);
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.org-cta:hover {
  background: var(--brand-hover);
  border-color: var(--brand-hover);
  color: #fff;
}

.org-button.is-primary {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.org-button.is-primary:hover {
  background: var(--brand-hover);
  border-color: var(--brand-hover);
  color: #fff;
}

.org-button.is-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.65);
}

.org-button.is-ghost:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.org-button.is-secondary {
  color: var(--brand);
  border-color: var(--brand);
}

.org-button.is-outline {
  color: var(--text-body);
  border-color: var(--border-light);
}

.org-button.is-outline:hover {
  color: var(--text-body);
  border-color: var(--brand);
}

.org-button.is-sm {
  padding: 8px 20px;
  font-size: var(--text-sm);
}

.org-button.is-lg {
  padding: 15px 36px;
  font-size: var(--text-lg);
}

.org-button.is-block {
  width: 100%;
}

.org-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-4);
}

.org-cta-note {
  font-size: var(--text-xs);
  color: var(--text-subtle);
}

.org-hero .org-cta-note,
.org-closing .org-cta-note {
  color: rgba(255, 255, 255, 0.5);
}

/* --------------------------------------------------------------------------
   Badges
   -------------------------------------------------------------------------- */

.org-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border: 1px solid transparent;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: var(--weight-medium);
  line-height: 1;
}

.org-badge em {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex: 0 0 auto;
  background: currentColor;
  opacity: 0.85;
}

.org-badge-lg {
  padding: 7px 16px;
  font-size: 13px;
}

.org-badge-dark {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
}

.org-badge-neutral {
  background: var(--bg-subtle);
  border-color: var(--border-light);
  color: var(--text-muted);
}

.org-badge-success {
  background: var(--success-bg);
  color: var(--success);
}

/* --------------------------------------------------------------------------
   Progress bar and navigation
   -------------------------------------------------------------------------- */

.org-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  z-index: 60;
  background: linear-gradient(90deg, var(--brand), var(--brand-light));
  transition: width 0.1s linear;
}

.org-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background var(--transition-base), border-color var(--transition-base);
}

.org-nav.is-pinned,
.org-nav.is-open {
  background: rgba(11, 11, 24, 0.72);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--border-dark);
}

.org-nav.is-open {
  background: rgba(11, 11, 24, 0.96);
}

.org-nav-inner {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  height: 66px;
}

.org-brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.org-brand img {
  height: 20px;
  width: auto;
}

.org-brand span {
  padding-left: var(--space-3);
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 10px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.62);
}

.org-nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  margin-left: auto;
}

.org-nav-links a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.72);
}

.org-nav-links a:hover {
  color: #fff;
}

.org-burger {
  display: none;
  position: relative;
  margin-left: auto;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  background: transparent;
  cursor: pointer;
}

.org-burger i {
  position: absolute;
  left: 10px;
  width: 18px;
  height: 1.5px;
  background: #fff;
  transition: transform var(--transition-base);
}

.org-burger i:nth-of-type(1) {
  top: 15px;
}

.org-burger i:nth-of-type(2) {
  top: 23px;
}

.org-burger[aria-expanded='true'] i:nth-of-type(1) {
  transform: translateY(4px) rotate(45deg);
}

.org-burger[aria-expanded='true'] i:nth-of-type(2) {
  transform: translateY(-4px) rotate(-45deg);
}

.org-nav-sheet {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: var(--space-6) 0 var(--space-8);
  border-top: 1px solid var(--border-dark);
}

.org-nav-sheet[hidden] {
  display: none;
}

.org-nav-sheet nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.org-nav-sheet a:not(.org-button) {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.86);
}

/* --------------------------------------------------------------------------
   Sections and their surfaces
   -------------------------------------------------------------------------- */

.org-section {
  position: relative;
  padding: clamp(76px, 9vw, 132px) 0;
  overflow: clip;
}

.org-section.is-light {
  background: var(--bg-light);
}

.org-section.is-subtle {
  background: var(--bg-subtle);
}

.org-section.is-dark {
  background: var(--bg-dark);
  color: #fff;
}

.org-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(120% 80% at 50% 0, #000, transparent);
}

.org-orb {
  position: absolute;
  left: 10%;
  top: 6%;
  width: 80%;
  aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(closest-side, var(--brand-glow), transparent);
  filter: blur(30px);
}

.org-section-head {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  max-width: 760px;
  margin-bottom: var(--section-gap);
}

.org-section-head.is-centred {
  align-items: center;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.org-kicker {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.org-kicker b {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  letter-spacing: 0.04em;
  color: var(--brand);
}

.is-dark .org-kicker b {
  color: var(--brand-light);
}

.org-kicker s {
  flex: 0 0 40px;
  height: 1px;
  background: currentColor;
  opacity: 0.22;
  text-decoration: none;
}

.org-kicker em {
  font-size: var(--text-xs);
  font-style: normal;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.55;
}

.org-section-head h2 {
  font-size: clamp(27px, 3.3vw, 44px);
  font-weight: var(--weight-bold);
  line-height: 1.22;
  letter-spacing: -0.02em;
  text-wrap: pretty;
}

.org-section-lead {
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.75;
  color: var(--text-muted);
  text-wrap: pretty;
}

.is-dark .org-section-lead,
.org-hero .org-section-lead,
.org-closing .org-section-lead {
  color: var(--text-on-dark);
}

.org-section-label {
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand-light);
}

/* Every block after the section head is separated by the same rhythm. */
.org-section > .org-wrap > * + * {
  margin-top: var(--section-gap);
}

.org-section > .org-wrap > .org-section-head + * {
  margin-top: 0;
}

.org-section > .org-wrap > .org-note,
.org-section > .org-wrap > .org-cta-row {
  margin-top: var(--space-8);
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.org-hero {
  position: relative;
  padding: clamp(112px, 13vw, 168px) 0 clamp(72px, 8vw, 110px);
  background: var(--bg-dark);
  color: #fff;
  overflow: clip;
}

.org-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.org-hero h1 {
  margin-top: var(--space-6);
  font-size: clamp(33px, 4.6vw, 62px);
  font-weight: var(--weight-bold);
  line-height: 1.16;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

/* The accent is a highlighter stroke that draws itself once, behind the text. */
.org-hero h1 em {
  position: relative;
  display: inline-block;
  z-index: 0;
  font-style: normal;
  isolation: isolate;
}

.org-hero h1 em::after {
  content: '';
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: 0.1em;
  height: 0.32em;
  z-index: -1;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, rgba(109, 74, 255, 0.85), rgba(155, 133, 255, 0.35));
  transform: scaleX(0);
  transform-origin: left;
  animation: org-swipe 0.9s 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes org-swipe {
  to {
    transform: scaleX(1);
  }
}

.org-lead {
  margin-top: var(--space-6);
  max-width: 44ch;
  font-size: var(--text-lg);
  line-height: 1.75;
  color: var(--text-on-dark);
  text-wrap: pretty;
}

.org-highlights {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin: var(--space-8) 0;
}

.org-highlight {
  display: flex;
  gap: var(--space-4);
  align-items: baseline;
  padding: var(--space-4) var(--space-5);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.035);
}

.org-highlight-num {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.06em;
  color: var(--brand-light);
}

.org-highlight p {
  font-size: var(--text-base);
  font-weight: var(--weight-medium);
}

.org-highlight span {
  display: block;
  margin-top: 2px;
  font-size: var(--text-sm);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.58);
}

.org-hero-art {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: clamp(12px, 1.6vw, 22px);
  padding: var(--space-6) 0;
}

.org-hero-art .org-orb {
  left: 20%;
  top: 8%;
  width: 60%;
  filter: blur(48px);
}

/* --------------------------------------------------------------------------
   Phones and shots
   -------------------------------------------------------------------------- */

.org-phone {
  position: relative;
  flex: 0 0 auto;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  background: linear-gradient(160deg, #33334f, #12121e 55%);
  box-shadow: var(--shadow-dark);
}

.org-phone::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  z-index: 2;
  width: 26%;
  height: 4px;
  transform: translateX(-50%);
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.16);
}

.org-phone img {
  width: 100%;
  aspect-ratio: 720 / 1457;
  object-fit: cover;
  object-position: top;
  border-radius: 27px;
  background: #0b0b18;
}

.org-phone.is-lowered {
  margin-bottom: 6%;
}

.org-phone.is-float {
  animation: org-float 7s ease-in-out infinite;
}

.org-phone.is-float.is-lowered {
  animation-delay: -3s;
}

@keyframes org-float {
  50% {
    transform: translateY(-12px);
  }
}

.org-shots {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 32px);
  align-items: start;
}

.org-shots[data-count='2'] {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.org-shot {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin: 0;
}

.org-shot figcaption {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

.is-dark .org-shot figcaption {
  color: rgba(255, 255, 255, 0.55);
}

.org-shot figcaption b {
  display: block;
  margin-bottom: 2px;
  font-size: 15px;
  font-weight: var(--weight-semibold);
  color: var(--text-body);
}

.is-dark .org-shot figcaption b {
  color: #fff;
}

/* --------------------------------------------------------------------------
   Split: media beside body
   -------------------------------------------------------------------------- */

.org-split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}

.org-split.is-reversed .org-split-media {
  order: 2;
}

.org-split-media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: clamp(12px, 1.6vw, 20px);
}

.org-split-body {
  display: grid;
  gap: var(--space-6);
  align-content: center;
}

/* --------------------------------------------------------------------------
   Feature cards
   -------------------------------------------------------------------------- */

.org-points {
  display: grid;
  gap: clamp(20px, 2.5vw, 32px);
}

.org-points-1 {
  grid-template-columns: minmax(0, 1fr);
}

.org-points-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.org-points-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.org-point {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-6);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  background: var(--bg-light);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.org-point:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.is-dark .org-point {
  background: var(--bg-dark-2);
  border-color: var(--border-dark);
  box-shadow: none;
}

.is-dark .org-point:hover {
  background: var(--bg-dark-3);
  box-shadow: none;
}

.org-points.is-roomy .org-point {
  padding: clamp(24px, 3vw, 40px);
  gap: var(--space-4);
}

/* The sub-points beside a screenshot are text, not cards — a card inside a
   card reads as a nesting mistake. */
.org-points.is-flat .org-point {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.org-points.is-flat .org-point:hover {
  transform: none;
  background: transparent;
}

.org-point-top {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.org-point-icon {
  width: 44px;
  height: 44px;
}

.is-dark .org-point-icon {
  filter: brightness(1.35) saturate(1.1);
}

.org-point h3,
.org-point h4 {
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.org-points.is-roomy .org-point h3 {
  font-size: var(--text-xl);
}

.org-point p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-muted);
}

.is-dark .org-point p {
  color: rgba(255, 255, 255, 0.62);
}

/* A card that leads somewhere — the i'm in Pay card sends readers to /pay/. */
.org-point-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: auto;
  padding-top: var(--space-2);
}

.org-point-links a {
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--brand);
}

.is-dark .org-point-links a {
  color: var(--brand-light);
}

.org-feature {
  display: grid;
  gap: var(--space-5);
  align-content: center;
}

.org-feature h3 {
  font-size: clamp(21px, 2.1vw, 30px);
  font-weight: var(--weight-bold);
  line-height: 1.3;
  letter-spacing: -0.015em;
}

.org-feature > div > p {
  margin-top: var(--space-4);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.75;
  color: var(--text-muted);
}

.is-dark .org-feature > div > p {
  color: var(--text-on-dark);
}

.org-feature.is-wide {
  max-width: 720px;
}

.org-pull {
  max-width: 22ch;
  margin: 0 auto;
  font-size: clamp(19px, 2vw, 28px);
  font-weight: var(--weight-bold);
  line-height: 1.4;
  letter-spacing: -0.02em;
  text-align: center;
  text-wrap: balance;
}

.org-pull i {
  font-style: normal;
  color: var(--brand);
}

.is-dark .org-pull i {
  color: var(--brand-light);
}

/* --------------------------------------------------------------------------
   Figures: the diagram cards
   -------------------------------------------------------------------------- */

.org-figure {
  margin: 0;
  padding: clamp(24px, 3vw, 40px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-2xl);
  background: var(--bg-light);
}

.is-dark .org-figure {
  border-color: var(--border-dark);
  background: rgba(255, 255, 255, 0.035);
}

.org-figure-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 2.5vw, 32px);
  align-items: stretch;
}

.org-figure-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.org-figure-head h4 {
  font-size: var(--text-base);
  font-weight: var(--weight-bold);
}

.org-figure-head p {
  font-size: var(--text-xs);
  color: var(--text-subtle);
}

.is-dark .org-figure-head p {
  color: rgba(255, 255, 255, 0.45);
}

.org-figure figcaption {
  margin-top: var(--space-5);
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

.is-dark .org-figure figcaption {
  color: rgba(255, 255, 255, 0.55);
}

.org-figure.is-doc {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.org-figure.is-doc .org-figure-head {
  margin-bottom: 0;
}

.org-figure.is-doc figcaption {
  margin-top: 0;
}

.org-doc {
  width: 100%;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.org-fig-cap {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

.is-dark .org-fig-cap {
  color: rgba(255, 255, 255, 0.55);
}

/* ─── The colour key under a diagram ─────── */

.org-fig-key {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
  margin-top: var(--space-4);
  font-size: 13px;
}

.org-fig-key.is-centred {
  justify-content: center;
  margin-top: var(--space-6);
}

.org-fig-key span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
}

.is-dark .org-fig-key span {
  color: rgba(255, 255, 255, 0.6);
}

.org-fig-key em {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 2px;
}

.org-swatch-brand,
.org-swatch-brand-dot {
  background: var(--brand);
}

.org-swatch-brand-light,
.org-swatch-brand-light-dot {
  background: var(--brand-light);
}

.org-swatch-muted {
  background: var(--text-subtle);
}

.org-swatch-brand-dot,
.org-swatch-brand-light-dot {
  border-radius: 50%;
}


/* ─── reach-spread: the two rings ────────── */

.org-fig-reach {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 56px);
}

.org-fig-reach-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  text-align: center;
}

.org-fig-reach-panel h5 {
  font-size: var(--text-base);
  font-weight: var(--weight-bold);
  letter-spacing: -0.01em;
}

.org-fig-reach-panel h5 span {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
}

.is-dark .org-fig-reach-panel h5 span {
  color: rgba(255, 255, 255, 0.6);
}

.org-ring {
  position: relative;
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1;
}

.org-ring-band {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 1px dashed var(--border-light);
  border-radius: 50%;
}

.is-dark .org-ring-band {
  border-color: var(--border-dark);
}

.org-ring-band-inner {
  width: 58%;
  height: 58%;
}

.org-ring-band-outer {
  width: 100%;
  height: 100%;
}

.org-ring-band-inner.is-lit {
  border-color: rgba(109, 74, 255, 0.45);
  background: rgba(109, 74, 255, 0.07);
}

.org-ring-band-outer.is-lit {
  border-color: rgba(109, 74, 255, 0.3);
  background: radial-gradient(closest-side, rgba(109, 74, 255, 0.09), rgba(109, 74, 255, 0.02));
}

.org-ring-me {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  box-shadow: var(--shadow-brand);
}

.org-ring-dot {
  position: absolute;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  transition: transform 0.55s var(--transition-spring), opacity 0.4s ease;
}

.org-ring-dot-inner {
  width: 14px;
  height: 14px;
  background: var(--brand);
}

.org-ring-dot-outer {
  width: 10px;
  height: 10px;
  background: var(--brand-light);
}

.org-rv.is-pending .org-ring-dot {
  transform: translate(-50%, -50%) scale(0.3);
  opacity: 0;
}

.org-ring-void {
  position: absolute;
  left: 50%;
  bottom: 6%;
  transform: translateX(-50%);
  font-size: var(--text-xs);
  color: var(--text-subtle);
}

/* ─── community-structure: the fan-out ───── */

.org-fig-hub {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}

.org-fig-hub-note {
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
}

.is-dark .org-fig-hub-note {
  color: rgba(255, 255, 255, 0.55);
}

.org-fig-hub-url {
  display: inline-flex;
  align-items: center;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  background: var(--brand);
  color: #fff;
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: var(--weight-medium);
  box-shadow: var(--shadow-brand);
}

.org-fig-hub-fan {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
  padding-top: var(--space-6);
}

.org-fig-hub-fan::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: var(--space-6);
  background: currentColor;
  opacity: 0.25;
}

.org-chip {
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  background: var(--brand-subtle);
  color: var(--brand);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  transition: transform 0.4s var(--transition-spring), opacity 0.3s ease;
}

.is-dark .org-chip {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.org-rv.is-pending .org-chip {
  transform: translateY(8px);
  opacity: 0;
}

/* ─── payout-timeline: the rail ──────────── */

.org-fig-rail {
  position: relative;
  padding: var(--space-8) 0 var(--space-4);
}

.org-fig-rail-tag {
  position: absolute;
  top: 0;
  left: 32%;
  transform: translateX(-50%);
  white-space: nowrap;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  background: var(--brand-subtle);
  color: var(--brand);
  font-size: 11px;
  font-weight: var(--weight-medium);
}

.is-dark .org-fig-rail-tag {
  background: rgba(155, 133, 255, 0.16);
  color: var(--brand-light);
}

.org-fig-rail-line {
  position: relative;
  height: 3px;
  border-radius: var(--radius-full);
  background: var(--border-light);
}

.is-dark .org-fig-rail-line {
  background: rgba(255, 255, 255, 0.12);
}

.org-fig-rail-fill {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 8%;
  width: 48%;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--brand), var(--brand-light));
  transition: width 1s 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.org-rv.is-pending .org-fig-rail-fill {
  width: 0;
}

.org-fig-rail-nodes {
  display: flex;
  justify-content: space-between;
  margin-top: -7px;
}

.org-fig-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  width: 33%;
  text-align: center;
}

.org-fig-node i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 4px var(--brand-subtle);
}

.org-fig-node.is-pale i {
  background: var(--text-subtle);
  box-shadow: none;
}

.org-fig-node b {
  font-size: 15px;
  font-weight: var(--weight-semibold);
}

.org-fig-node p {
  font-size: var(--text-xs);
  line-height: 1.5;
  color: var(--text-subtle);
}

.is-dark .org-fig-node p {
  color: rgba(255, 255, 255, 0.5);
}

/* ─── fee-split and fee-burden: the bars ─── */

.org-fig-headline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}

.org-fig-big {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.6vw, 48px);
  font-weight: var(--weight-bold);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--brand);
}

.org-bar {
  display: flex;
  height: 14px;
  overflow: hidden;
  border-radius: var(--radius-full);
  background: var(--border-light);
}

.is-dark .org-bar {
  background: rgba(255, 255, 255, 0.12);
}

.org-bar.is-plain {
  height: 12px;
  background: transparent;
}

.org-bar > i {
  display: block;
  flex: 0 0 auto;
  width: var(--w);
  height: 100%;
  transition: width 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.org-rv.is-pending .org-bar > i {
  width: 0;
}

.org-fee-row + .org-fee-row {
  margin-top: var(--space-6);
}

.org-fee-label {
  margin-bottom: var(--space-3);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
}

.org-fee-row .org-fig-cap {
  margin-top: var(--space-3);
}

/* ─── checkin-flow: the four steps ───────── */

.org-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-5);
}

.org-steps::before {
  content: '';
  position: absolute;
  top: 17px;
  left: 12%;
  right: 12%;
  height: 1px;
  opacity: 0.28;
  background: repeating-linear-gradient(90deg, currentColor 0 4px, transparent 4px 9px);
}

.org-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-3);
}

.org-step u {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  text-decoration: none;
  box-shadow: 0 0 0 5px var(--bg-light);
}

.is-subtle .org-step u {
  box-shadow: 0 0 0 5px var(--bg-subtle);
}

.is-dark .org-step u {
  box-shadow: 0 0 0 5px var(--bg-dark);
}

.org-step p {
  font-size: 15px;
  font-weight: var(--weight-medium);
  line-height: 1.3;
}

/* ─── ai-flow: the three panels ──────────── */

.org-flow3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-5);
  align-items: stretch;
}

.org-flow-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: var(--space-5);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  background: var(--bg-light);
}

.is-dark .org-flow-panel {
  border-color: var(--border-dark);
  background: rgba(255, 255, 255, 0.04);
}

.org-flow-panel > u {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.08em;
  text-decoration: none;
  color: var(--brand);
}

.is-dark .org-flow-panel > u {
  color: var(--brand-light);
}

.org-flow-panel b {
  font-size: 15px;
  font-weight: var(--weight-semibold);
  line-height: 1.5;
}

.org-flow-panel > p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

.is-dark .org-flow-panel > p {
  color: rgba(255, 255, 255, 0.6);
}

.org-art {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  height: 104px;
  padding: var(--space-4);
  overflow: hidden;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background: var(--bg-subtle);
}

.is-dark .org-art {
  border-color: var(--border-dark);
  background: rgba(0, 0, 0, 0.25);
}

.org-art-url {
  padding: 8px 10px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  background: var(--bg-light);
  font-family: var(--font-display);
  font-size: 11px;
  color: var(--text-muted);
}

.is-dark .org-art-url {
  border-color: transparent;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.75);
}

.org-art-line {
  height: 7px;
  border-radius: var(--radius-full);
  background: var(--border-light);
}

.is-dark .org-art-line {
  background: rgba(255, 255, 255, 0.14);
}

.org-art-line.is-brand {
  height: 10px;
  background: var(--brand);
  opacity: 0.75;
}

.org-art-kv {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--text-muted);
}

.is-dark .org-art-kv {
  color: rgba(255, 255, 255, 0.7);
}

.org-art-kv i {
  flex: 0 0 auto;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand);
}

.org-art-scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-light), transparent);
  animation: org-scan 2.6s ease-in-out infinite;
}

@keyframes org-scan {
  0%,
  100% {
    top: 14%;
  }
  50% {
    top: 82%;
  }
}

.org-flow-arrow {
  position: absolute;
  top: 50%;
  right: calc(var(--space-5) * -0.5);
  z-index: 2;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  transform: translate(50%, -50%);
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 11px;
  box-shadow: 0 0 0 4px var(--bg-light);
}

.is-subtle .org-flow-arrow {
  box-shadow: 0 0 0 4px var(--bg-subtle);
}

.is-dark .org-flow-arrow {
  box-shadow: 0 0 0 4px var(--bg-dark);
}

/* ─── staff-matrix: the permission table ─── */

.org-matrix-scroll {
  overflow-x: auto;
}

.org-matrix {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.org-matrix th,
.org-matrix td {
  padding: var(--space-3);
  text-align: center;
  border-bottom: 1px solid var(--border-light);
}

.is-dark .org-matrix th,
.is-dark .org-matrix td {
  border-bottom-color: var(--border-dark);
}

.org-matrix thead th {
  font-size: 13px;
  font-weight: var(--weight-semibold);
  white-space: nowrap;
  color: var(--text-subtle);
}

.is-dark .org-matrix thead th {
  color: rgba(255, 255, 255, 0.55);
}

.org-matrix thead th:first-child,
.org-matrix tbody th {
  text-align: left;
}

.org-matrix tbody th {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-body);
}

.is-dark .org-matrix tbody th {
  color: rgba(255, 255, 255, 0.8);
}

.org-matrix tbody tr:last-child th,
.org-matrix tbody tr:last-child td {
  border-bottom: 0;
}

.org-matrix .is-yes {
  color: var(--brand);
  font-weight: var(--weight-bold);
}

.is-dark .org-matrix .is-yes {
  color: var(--brand-light);
}

.org-matrix .is-no {
  color: var(--text-subtle);
}

.is-dark .org-matrix .is-no {
  color: rgba(255, 255, 255, 0.25);
}

/* --------------------------------------------------------------------------
   Lists, notes, link cards
   -------------------------------------------------------------------------- */

.org-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 2.5vw, 32px);
}

.org-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  background: var(--bg-light);
  box-shadow: var(--shadow-sm);
}

.org-group h3 {
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
}

.org-ol {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: org-step;
}

.org-ol li {
  display: flex;
  gap: var(--space-4);
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
}

.org-ol li::before {
  counter-increment: org-step;
  content: counter(org-step);
  display: grid;
  place-items: center;
  flex: 0 0 24px;
  height: 24px;
  margin-top: 3px;
  border-radius: 50%;
  background: var(--brand-subtle);
  color: var(--brand);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: var(--weight-bold);
}

.org-ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin: 0;
  padding: 0;
  list-style: none;
}

.org-ul li {
  display: flex;
  gap: var(--space-3);
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
}

.org-ul li::before {
  content: '—';
  flex: 0 0 auto;
  color: var(--text-subtle);
}

.org-unsuitable {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: var(--space-6) clamp(24px, 3vw, 36px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  background: var(--bg-light);
}

.org-unsuitable h3 {
  font-size: var(--text-base);
  font-weight: var(--weight-bold);
}

.org-note {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-4);
  padding: var(--space-5) var(--space-6);
  border-radius: var(--radius-xl);
  background: var(--brand-subtle);
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-body);
}

.is-dark .org-note {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.72);
}

.org-note b {
  flex: 0 0 auto;
  font-weight: var(--weight-semibold);
  color: var(--brand);
}

.is-dark .org-note b {
  color: var(--brand-light);
}

.org-note span {
  flex: 1 1 320px;
}

.org-link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-4);
}

.org-link-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding: var(--space-6);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  background: var(--bg-light);
  color: var(--text-body);
  transition: transform var(--transition-base), box-shadow var(--transition-base),
    border-color var(--transition-base);
}

.org-link-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand);
  color: var(--text-body);
}

.org-link-card b {
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
}

.org-link-card span {
  font-size: 13px;
  color: var(--text-subtle);
}

.org-link-card u {
  margin-top: var(--space-2);
  font-size: var(--text-sm);
  text-decoration: none;
  color: var(--brand);
}

/* --------------------------------------------------------------------------
   Closing and footer
   -------------------------------------------------------------------------- */

.org-closing {
  position: relative;
  padding: clamp(88px, 10vw, 140px) 0;
  overflow: clip;
  background: var(--bg-dark);
  color: #fff;
  text-align: center;
}

.org-closing::after {
  content: '';
  position: absolute;
  inset: auto -10% -60% -10%;
  height: 70%;
  pointer-events: none;
  background: radial-gradient(closest-side, rgba(109, 74, 255, 0.4), transparent);
  filter: blur(20px);
}

.org-closing-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
  max-width: 720px;
  margin: 0 auto;
}

.org-closing h2 {
  font-size: clamp(26px, 3.4vw, 44px);
  font-weight: var(--weight-bold);
  line-height: 1.25;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.org-footer {
  padding: var(--space-12) 0 var(--space-10);
  border-top: 1px solid var(--border-dark);
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.55);
}

.org-footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-6) var(--space-10);
}

.org-footer-logo img {
  height: 20px;
  width: auto;
}

.org-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
}

.org-footer a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.62);
}

.org-footer a:hover {
  color: #fff;
}

.org-footer small {
  width: 100%;
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.38);
}

/* --------------------------------------------------------------------------
   Reveal on scroll

   Everything is visible by default. The script adds `is-pending` only once it
   has an IntersectionObserver to take it off again, so a blocked script, an
   old browser and the printer all get the finished page rather than a blank
   one — the failure mode that matters on a page people are shown while they
   are deciding.
   -------------------------------------------------------------------------- */

.org-rv {
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: var(--org-delay, 0ms);
}

.org-rv.is-pending {
  opacity: 0;
  transform: translateY(20px);
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1000px) {
  .org-nav-links {
    display: none;
  }

  .org-burger {
    display: block;
  }

  .org-hero-grid,
  .org-split {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-10);
  }

  .org-hero-art {
    order: 2;
    padding-top: 0;
  }

  .org-split.is-reversed .org-split-media {
    order: 0;
  }

  .org-points-3,
  .org-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .org-flow3 {
    grid-template-columns: minmax(0, 1fr);
  }

  .org-flow-arrow {
    top: auto;
    right: auto;
    left: 50%;
    bottom: calc(var(--space-5) * -0.5);
    transform: translate(-50%, 50%) rotate(90deg);
  }

  .org-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-6);
  }

  .org-steps::before {
    display: none;
  }

  .org-figure-pair {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 74px;
  }

  .org-points-2,
  .org-points-3,
  .org-groups,
  .org-link-grid,
  .org-shots,
  .org-shots[data-count='2'],
  .org-fig-reach {
    grid-template-columns: minmax(0, 1fr);
  }

  .org-shots {
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }

  .org-ring {
    max-width: 240px;
  }

  .org-hero-art {
    gap: var(--space-3);
  }

  .org-fig-rail {
    padding-top: var(--space-2);
  }

  .org-fig-rail-line {
    display: none;
  }

  .org-fig-rail-tag {
    position: static;
    display: inline-flex;
    margin-bottom: var(--space-4);
    transform: none;
  }

  .org-fig-rail-nodes {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-6);
    margin-top: var(--space-6);
  }

  .org-fig-node {
    width: 100%;
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
  }

  .org-fig-node i {
    margin-top: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .org-rv,
  .org-rv.is-pending {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .org-phone.is-float,
  .org-art-scan {
    animation: none;
  }

  .org-hero h1 em::after {
    animation: none;
    transform: none;
  }

  .org-rv.is-pending .org-ring-dot {
    opacity: 1;
    transform: translate(-50%, -50%);
  }

  .org-rv.is-pending .org-chip {
    opacity: 1;
    transform: none;
  }

  .org-rv.is-pending .org-fig-rail-fill {
    width: 48%;
  }

  .org-rv.is-pending .org-bar > i {
    width: var(--w);
  }
}

/* --------------------------------------------------------------------------
   Print: this page is also the PDF that gets emailed

   The dark bands are the problem. Browsers do not print backgrounds, so a dark
   section would otherwise arrive as white text on white paper. Flipping the
   surfaces to light repaints the whole page instead of patching it band by
   band.
   -------------------------------------------------------------------------- */

@media print {
  :root {
    --bg-dark: #ffffff;
    --bg-dark-2: #ffffff;
    --bg-dark-3: #ffffff;
    --border-dark: rgba(16, 16, 20, 0.16);
    --text-on-dark: rgba(16, 16, 20, 0.78);
    --shadow-sm: none;
    --shadow-md: none;
    --shadow-dark: none;
    --shadow-brand: none;
  }

  .org-body {
    background: #fff;
    color: var(--text-body);
    font-size: 11pt;
  }

  .org-nav,
  .org-progress,
  .org-skip,
  .org-footer,
  .org-cta,
  .org-cta-row,
  .org-cta-note,
  .org-dots,
  .org-orb,
  .org-closing::after {
    display: none !important;
  }

  .org-section,
  .org-hero,
  .org-closing {
    padding: 24px 0;
    background: #fff !important;
    color: var(--text-body) !important;
    overflow: visible;
  }

  .org-hero h1 em::after,
  .org-art-scan {
    display: none;
  }

  .is-dark .org-point,
  .is-dark .org-figure,
  .is-dark .org-flow-panel,
  .is-dark .org-note,
  .is-dark .org-chip {
    background: #fff;
    border-color: var(--border-dark);
    color: var(--text-body);
  }

  .is-dark .org-point p,
  .is-dark .org-section-lead,
  .is-dark .org-figure figcaption,
  .is-dark .org-shot figcaption,
  .is-dark .org-fig-node p {
    color: var(--text-muted);
  }

  .is-dark .org-point h3,
  .is-dark .org-shot figcaption b,
  .is-dark .org-matrix tbody th,
  .is-dark .org-section-head h2,
  .is-dark .org-pull {
    color: var(--text-body);
  }

  .is-dark .org-kicker b,
  .is-dark .org-pull i,
  .is-dark .org-matrix .is-yes,
  .is-dark .org-note b {
    color: var(--brand);
  }

  .org-phone {
    border-color: rgba(16, 16, 20, 0.2);
    background: none;
    box-shadow: none;
  }

  .org-phone::before {
    display: none;
  }

  /* Page one is the summary on its own: an emailed PDF is often read no
     further than that. */
  .org-hero {
    break-after: page;
  }

  .org-section,
  .org-closing,
  .org-point,
  .org-group,
  .org-figure,
  .org-shot,
  .org-flow-panel {
    break-inside: avoid;
  }

  /* Paper is about 720px across: the side-by-side rows do not fit on it. */
  .org-split,
  .org-figure-pair,
  .org-hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }

  .org-shots,
  .org-points-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .org-split-media {
    max-width: 320px;
  }

  a[href^='http']::after {
    content: ' (' attr(href) ')';
    font-size: 9px;
    color: var(--text-subtle);
  }
}
