@layer reset, base, tokens, recipes, utilities;

@layer base{
  :root {
    --made-with-panda: '🐼';
    color-scheme: light;
}

  * {
    box-sizing: border-box;
}

  html {
    scroll-behavior: smooth;
}

  body {
    margin: var(--spacing-0);
    background: var(--colors-paper);
    display: flex;
    flex-direction: column;
    color: var(--colors-ink);
    font-family: var(--fonts-ui);
    font-size: var(--font-sizes-body);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    min-height: 100vh;
}

  main {
    flex: 1 1 0%;
}

  main,header,footer {
    position: relative;
    z-index: 1;
}

  a {
    text-decoration: none;
    color: var(--colors-accent);
}

  a:hover {
    text-decoration: underline;
    color: var(--colors-accent-ink);
    text-underline-offset: 3px;
}

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

  :focus-visible {
    outline: 2px solid var(--colors-accent);
    outline-offset: 3px;
}

  h1,h2,h3 {
    margin: var(--spacing-0);
    text-wrap: balance;
    font-family: var(--fonts-display);
    font-variation-settings: "opsz" 96;
    letter-spacing: var(--letter-spacings-head);
}

  h1 {
    font-size: var(--font-sizes-h1);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: var(--letter-spacings-h1);
}

  h2 {
    font-size: var(--font-sizes-h2);
    font-weight: 700;
    line-height: 1.08;
    font-variation-settings: "opsz" 48;
}

  h3 {
    font-size: var(--font-sizes-h3);
    font-weight: 700;
    letter-spacing: var(--letter-spacings-h3);
}

  p {
    margin: var(--spacing-0);
}

  *,::before,::after,::backdrop {
    --blur: /*-*/ /*-*/;
    --brightness: /*-*/ /*-*/;
    --contrast: /*-*/ /*-*/;
    --grayscale: /*-*/ /*-*/;
    --hue-rotate: /*-*/ /*-*/;
    --invert: /*-*/ /*-*/;
    --saturate: /*-*/ /*-*/;
    --sepia: /*-*/ /*-*/;
    --drop-shadow: /*-*/ /*-*/;
    --backdrop-blur: /*-*/ /*-*/;
    --backdrop-brightness: /*-*/ /*-*/;
    --backdrop-contrast: /*-*/ /*-*/;
    --backdrop-grayscale: /*-*/ /*-*/;
    --backdrop-hue-rotate: /*-*/ /*-*/;
    --backdrop-invert: /*-*/ /*-*/;
    --backdrop-opacity: /*-*/ /*-*/;
    --backdrop-saturate: /*-*/ /*-*/;
    --backdrop-sepia: /*-*/ /*-*/;
    --gradient-from-position: /*-*/ /*-*/;
    --gradient-to-position: /*-*/ /*-*/;
    --gradient-via-position: /*-*/ /*-*/;
    --scroll-snap-strictness: proximity;
    --border-spacing-x: 0;
    --border-spacing-y: 0;
    --translate-x: 0;
    --translate-y: 0;
    --rotate: 0;
    --rotate-x: 0;
    --rotate-y: 0;
    --skew-x: 0;
    --skew-y: 0;
    --scale-x: 1;
    --scale-y: 1;
}
}

@layer tokens{
  :where(:root, :host) {
    --aspect-ratios-square: 1 / 1;
    --aspect-ratios-landscape: 4 / 3;
    --aspect-ratios-portrait: 3 / 4;
    --aspect-ratios-wide: 16 / 9;
    --aspect-ratios-ultrawide: 18 / 5;
    --aspect-ratios-golden: 1.618 / 1;
    --easings-default: cubic-bezier(0.4, 0, 0.2, 1);
    --easings-linear: linear;
    --easings-in: cubic-bezier(0.4, 0, 1, 1);
    --easings-out: cubic-bezier(0, 0, 0.2, 1);
    --easings-in-out: cubic-bezier(0.4, 0, 0.2, 1);
    --durations-fastest: 50ms;
    --durations-faster: 100ms;
    --durations-fast: 150ms;
    --durations-normal: 200ms;
    --durations-slow: 300ms;
    --durations-slower: 400ms;
    --durations-slowest: 500ms;
    --radii-xs: 0.125rem;
    --radii-sm: 0.25rem;
    --radii-md: 0.375rem;
    --radii-lg: 0.5rem;
    --radii-xl: 0.75rem;
    --radii-2xl: 1rem;
    --radii-3xl: 1.5rem;
    --radii-4xl: 2rem;
    --radii-full: 9999px;
    --font-weights-thin: 100;
    --font-weights-extralight: 200;
    --font-weights-light: 300;
    --font-weights-normal: 400;
    --font-weights-medium: 500;
    --font-weights-semibold: 600;
    --font-weights-bold: 700;
    --font-weights-extrabold: 800;
    --font-weights-black: 900;
    --line-heights-none: 1;
    --line-heights-tight: 1.25;
    --line-heights-snug: 1.375;
    --line-heights-normal: 1.5;
    --line-heights-relaxed: 1.625;
    --line-heights-loose: 2;
    --blurs-xs: 4px;
    --blurs-sm: 8px;
    --blurs-md: 12px;
    --blurs-lg: 16px;
    --blurs-xl: 24px;
    --blurs-2xl: 40px;
    --blurs-3xl: 64px;
    --spacing-0: 0rem;
    --spacing-1: 0.25rem;
    --spacing-2: 0.5rem;
    --spacing-3: 0.75rem;
    --spacing-4: 1rem;
    --spacing-5: 1.25rem;
    --spacing-6: 1.5rem;
    --spacing-7: 1.75rem;
    --spacing-8: 2rem;
    --spacing-9: 2.25rem;
    --spacing-10: 2.5rem;
    --spacing-11: 2.75rem;
    --spacing-12: 3rem;
    --spacing-14: 3.5rem;
    --spacing-16: 4rem;
    --spacing-20: 5rem;
    --spacing-24: 6rem;
    --spacing-28: 7rem;
    --spacing-32: 8rem;
    --spacing-36: 9rem;
    --spacing-40: 10rem;
    --spacing-44: 11rem;
    --spacing-48: 12rem;
    --spacing-52: 13rem;
    --spacing-56: 14rem;
    --spacing-60: 15rem;
    --spacing-64: 16rem;
    --spacing-72: 18rem;
    --spacing-80: 20rem;
    --spacing-96: 24rem;
    --spacing-0\.5: 0.125rem;
    --spacing-1\.5: 0.375rem;
    --spacing-2\.5: 0.625rem;
    --spacing-3\.5: 0.875rem;
    --spacing-4\.5: 1.125rem;
    --spacing-5\.5: 1.375rem;
    --animations-spin: spin 1s linear infinite;
    --animations-ping: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
    --animations-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    --animations-bounce: bounce 1s infinite;
    --colors-current: currentColor;
    --colors-black: #000;
    --colors-white: #fff;
    --colors-transparent: rgb(0 0 0 / 0);
    --colors-rose-50: #fff1f2;
    --colors-rose-100: #ffe4e6;
    --colors-rose-200: #fecdd3;
    --colors-rose-300: #fda4af;
    --colors-rose-400: #fb7185;
    --colors-rose-500: #f43f5e;
    --colors-rose-600: #e11d48;
    --colors-rose-700: #be123c;
    --colors-rose-800: #9f1239;
    --colors-rose-900: #881337;
    --colors-rose-950: #4c0519;
    --colors-pink-50: #fdf2f8;
    --colors-pink-100: #fce7f3;
    --colors-pink-200: #fbcfe8;
    --colors-pink-300: #f9a8d4;
    --colors-pink-400: #f472b6;
    --colors-pink-500: #ec4899;
    --colors-pink-600: #db2777;
    --colors-pink-700: #be185d;
    --colors-pink-800: #9d174d;
    --colors-pink-900: #831843;
    --colors-pink-950: #500724;
    --colors-fuchsia-50: #fdf4ff;
    --colors-fuchsia-100: #fae8ff;
    --colors-fuchsia-200: #f5d0fe;
    --colors-fuchsia-300: #f0abfc;
    --colors-fuchsia-400: #e879f9;
    --colors-fuchsia-500: #d946ef;
    --colors-fuchsia-600: #c026d3;
    --colors-fuchsia-700: #a21caf;
    --colors-fuchsia-800: #86198f;
    --colors-fuchsia-900: #701a75;
    --colors-fuchsia-950: #4a044e;
    --colors-purple-50: #faf5ff;
    --colors-purple-100: #f3e8ff;
    --colors-purple-200: #e9d5ff;
    --colors-purple-300: #d8b4fe;
    --colors-purple-400: #c084fc;
    --colors-purple-500: #a855f7;
    --colors-purple-600: #9333ea;
    --colors-purple-700: #7e22ce;
    --colors-purple-800: #6b21a8;
    --colors-purple-900: #581c87;
    --colors-purple-950: #3b0764;
    --colors-violet-50: #f5f3ff;
    --colors-violet-100: #ede9fe;
    --colors-violet-200: #ddd6fe;
    --colors-violet-300: #c4b5fd;
    --colors-violet-400: #a78bfa;
    --colors-violet-500: #8b5cf6;
    --colors-violet-600: #7c3aed;
    --colors-violet-700: #6d28d9;
    --colors-violet-800: #5b21b6;
    --colors-violet-900: #4c1d95;
    --colors-violet-950: #2e1065;
    --colors-indigo-50: #eef2ff;
    --colors-indigo-100: #e0e7ff;
    --colors-indigo-200: #c7d2fe;
    --colors-indigo-300: #a5b4fc;
    --colors-indigo-400: #818cf8;
    --colors-indigo-500: #6366f1;
    --colors-indigo-600: #4f46e5;
    --colors-indigo-700: #4338ca;
    --colors-indigo-800: #3730a3;
    --colors-indigo-900: #312e81;
    --colors-indigo-950: #1e1b4b;
    --colors-blue-50: #eff6ff;
    --colors-blue-100: #dbeafe;
    --colors-blue-200: #bfdbfe;
    --colors-blue-300: #93c5fd;
    --colors-blue-400: #60a5fa;
    --colors-blue-500: #3b82f6;
    --colors-blue-600: #2563eb;
    --colors-blue-700: #1d4ed8;
    --colors-blue-800: #1e40af;
    --colors-blue-900: #1e3a8a;
    --colors-blue-950: #172554;
    --colors-sky-50: #f0f9ff;
    --colors-sky-100: #e0f2fe;
    --colors-sky-200: #bae6fd;
    --colors-sky-300: #7dd3fc;
    --colors-sky-400: #38bdf8;
    --colors-sky-500: #0ea5e9;
    --colors-sky-600: #0284c7;
    --colors-sky-700: #0369a1;
    --colors-sky-800: #075985;
    --colors-sky-900: #0c4a6e;
    --colors-sky-950: #082f49;
    --colors-cyan-50: #ecfeff;
    --colors-cyan-100: #cffafe;
    --colors-cyan-200: #a5f3fc;
    --colors-cyan-300: #67e8f9;
    --colors-cyan-400: #22d3ee;
    --colors-cyan-500: #06b6d4;
    --colors-cyan-600: #0891b2;
    --colors-cyan-700: #0e7490;
    --colors-cyan-800: #155e75;
    --colors-cyan-900: #164e63;
    --colors-cyan-950: #083344;
    --colors-teal-50: #f0fdfa;
    --colors-teal-100: #ccfbf1;
    --colors-teal-200: #99f6e4;
    --colors-teal-300: #5eead4;
    --colors-teal-400: #2dd4bf;
    --colors-teal-500: #14b8a6;
    --colors-teal-600: #0d9488;
    --colors-teal-700: #0f766e;
    --colors-teal-800: #115e59;
    --colors-teal-900: #134e4a;
    --colors-teal-950: #042f2e;
    --colors-emerald-50: #ecfdf5;
    --colors-emerald-100: #d1fae5;
    --colors-emerald-200: #a7f3d0;
    --colors-emerald-300: #6ee7b7;
    --colors-emerald-400: #34d399;
    --colors-emerald-500: #10b981;
    --colors-emerald-600: #059669;
    --colors-emerald-700: #047857;
    --colors-emerald-800: #065f46;
    --colors-emerald-900: #064e3b;
    --colors-emerald-950: #022c22;
    --colors-green-50: #f0fdf4;
    --colors-green-100: #dcfce7;
    --colors-green-200: #bbf7d0;
    --colors-green-300: #86efac;
    --colors-green-400: #4ade80;
    --colors-green-500: #22c55e;
    --colors-green-600: #16a34a;
    --colors-green-700: #15803d;
    --colors-green-800: #166534;
    --colors-green-900: #14532d;
    --colors-green-950: #052e16;
    --colors-lime-50: #f7fee7;
    --colors-lime-100: #ecfccb;
    --colors-lime-200: #d9f99d;
    --colors-lime-300: #bef264;
    --colors-lime-400: #a3e635;
    --colors-lime-500: #84cc16;
    --colors-lime-600: #65a30d;
    --colors-lime-700: #4d7c0f;
    --colors-lime-800: #3f6212;
    --colors-lime-900: #365314;
    --colors-lime-950: #1a2e05;
    --colors-yellow-50: #fefce8;
    --colors-yellow-100: #fef9c3;
    --colors-yellow-200: #fef08a;
    --colors-yellow-300: #fde047;
    --colors-yellow-400: #facc15;
    --colors-yellow-500: #eab308;
    --colors-yellow-600: #ca8a04;
    --colors-yellow-700: #a16207;
    --colors-yellow-800: #854d0e;
    --colors-yellow-900: #713f12;
    --colors-yellow-950: #422006;
    --colors-amber-50: #fffbeb;
    --colors-amber-100: #fef3c7;
    --colors-amber-200: #fde68a;
    --colors-amber-300: #fcd34d;
    --colors-amber-400: #fbbf24;
    --colors-amber-500: #f59e0b;
    --colors-amber-600: #d97706;
    --colors-amber-700: #b45309;
    --colors-amber-800: #92400e;
    --colors-amber-900: #78350f;
    --colors-amber-950: #451a03;
    --colors-orange-50: #fff7ed;
    --colors-orange-100: #ffedd5;
    --colors-orange-200: #fed7aa;
    --colors-orange-300: #fdba74;
    --colors-orange-400: #fb923c;
    --colors-orange-500: #f97316;
    --colors-orange-600: #ea580c;
    --colors-orange-700: #c2410c;
    --colors-orange-800: #9a3412;
    --colors-orange-900: #7c2d12;
    --colors-orange-950: #431407;
    --colors-red-50: #fef2f2;
    --colors-red-100: #fee2e2;
    --colors-red-200: #fecaca;
    --colors-red-300: #fca5a5;
    --colors-red-400: #f87171;
    --colors-red-500: #ef4444;
    --colors-red-600: #dc2626;
    --colors-red-700: #b91c1c;
    --colors-red-800: #991b1b;
    --colors-red-900: #7f1d1d;
    --colors-red-950: #450a0a;
    --colors-neutral-50: #fafafa;
    --colors-neutral-100: #f5f5f5;
    --colors-neutral-200: #e5e5e5;
    --colors-neutral-300: #d4d4d4;
    --colors-neutral-400: #a3a3a3;
    --colors-neutral-500: #737373;
    --colors-neutral-600: #525252;
    --colors-neutral-700: #404040;
    --colors-neutral-800: #262626;
    --colors-neutral-900: #171717;
    --colors-neutral-950: #0a0a0a;
    --colors-stone-50: #fafaf9;
    --colors-stone-100: #f5f5f4;
    --colors-stone-200: #e7e5e4;
    --colors-stone-300: #d6d3d1;
    --colors-stone-400: #a8a29e;
    --colors-stone-500: #78716c;
    --colors-stone-600: #57534e;
    --colors-stone-700: #44403c;
    --colors-stone-800: #292524;
    --colors-stone-900: #1c1917;
    --colors-stone-950: #0c0a09;
    --colors-zinc-50: #fafafa;
    --colors-zinc-100: #f4f4f5;
    --colors-zinc-200: #e4e4e7;
    --colors-zinc-300: #d4d4d8;
    --colors-zinc-400: #a1a1aa;
    --colors-zinc-500: #71717a;
    --colors-zinc-600: #52525b;
    --colors-zinc-700: #3f3f46;
    --colors-zinc-800: #27272a;
    --colors-zinc-900: #18181b;
    --colors-zinc-950: #09090b;
    --colors-gray-50: #f9fafb;
    --colors-gray-100: #f3f4f6;
    --colors-gray-200: #e5e7eb;
    --colors-gray-300: #d1d5db;
    --colors-gray-400: #9ca3af;
    --colors-gray-500: #6b7280;
    --colors-gray-600: #4b5563;
    --colors-gray-700: #374151;
    --colors-gray-800: #1f2937;
    --colors-gray-900: #111827;
    --colors-gray-950: #030712;
    --colors-slate-50: #f8fafc;
    --colors-slate-100: #f1f5f9;
    --colors-slate-200: #e2e8f0;
    --colors-slate-300: #cbd5e1;
    --colors-slate-400: #94a3b8;
    --colors-slate-500: #64748b;
    --colors-slate-600: #475569;
    --colors-slate-700: #334155;
    --colors-slate-800: #1e293b;
    --colors-slate-900: #0f172a;
    --colors-slate-950: #020617;
    --colors-paper: #F4F1EA;
    --colors-surface: #FFFFFF;
    --colors-paper2: #ECE8DF;
    --colors-ink: #15171B;
    --colors-ink2: #5F6672;
    --colors-ink3: #8B91A0;
    --colors-line: #D8D3C7;
    --colors-line2: #B9B3A5;
    --colors-accent: #1F4FFF;
    --colors-accent-ink: #1538C9;
    --colors-on-accent: #FFFFFF;
    --colors-wash: #E7ECFF;
    --colors-human: #F1592A;
    --colors-human-wash: #FDE7DE;
    --colors-human-ink: #D84A1F;
    --colors-ok: #1F9D5B;
    --colors-ok-wash: #E2F3E9;
    --colors-go: #FFE3B0;
    --colors-go-hover: #FFD98A;
    --colors-sand-shadow: #CDC4B0;
    --fonts-sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --fonts-serif: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
    --fonts-display: 'Bricolage Grotesque', ui-sans-serif, system-ui, 'Helvetica Neue', Arial, sans-serif;
    --fonts-ui: 'Geist', 'Instrument Sans', ui-sans-serif, system-ui, sans-serif;
    --fonts-mono: 'Geist Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
    --shadows-2xs: 0 1px rgb(0 0 0 / 0.05);
    --shadows-xs: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadows-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadows-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadows-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadows-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadows-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --shadows-inset-2xs: inset 0 1px rgb(0 0 0 / 0.05);
    --shadows-inset-xs: inset 0 1px 1px rgb(0 0 0 / 0.05);
    --shadows-inset-sm: inset 0 2px 4px rgb(0 0 0 / 0.05);
    --shadows-hard: -3px 3px 0 var(--colors-ink);
    --shadows-hard-sm: -2px 2px 0 var(--colors-ink);
    --shadows-hard-xs: -1.5px 1.5px 0 var(--colors-ink);
    --borders-none: none;
    --borders-ink: 1.5px solid var(--colors-ink);
    --borders-hair: 1px solid var(--colors-line);
    --font-sizes-2xs: 0.5rem;
    --font-sizes-xs: 0.75rem;
    --font-sizes-sm: 0.875rem;
    --font-sizes-md: 1rem;
    --font-sizes-lg: 1.125rem;
    --font-sizes-xl: 1.25rem;
    --font-sizes-2xl: 1.5rem;
    --font-sizes-3xl: 1.875rem;
    --font-sizes-4xl: 2.25rem;
    --font-sizes-5xl: 3rem;
    --font-sizes-6xl: 3.75rem;
    --font-sizes-7xl: 4.5rem;
    --font-sizes-8xl: 6rem;
    --font-sizes-9xl: 8rem;
    --font-sizes-body: 16px;
    --font-sizes-small: 15px;
    --font-sizes-note: 14px;
    --font-sizes-label: 11.5px;
    --font-sizes-label-sm: 10px;
    --font-sizes-key: 10px;
    --font-sizes-h3: 20px;
    --font-sizes-h2: clamp(28px, 3.2vw, 42px);
    --font-sizes-h1: clamp(38px, 4.8vw, 64px);
    --font-sizes-deck: clamp(17px, 1.35vw, 19px);
    --font-sizes-mic: clamp(44px, 7vw, 96px);
    --letter-spacings-tighter: -0.05em;
    --letter-spacings-tight: -0.025em;
    --letter-spacings-normal: 0em;
    --letter-spacings-wide: 0.025em;
    --letter-spacings-wider: 0.05em;
    --letter-spacings-widest: 0.1em;
    --letter-spacings-label: .12em;
    --letter-spacings-label-tight: .1em;
    --letter-spacings-mono: .04em;
    --letter-spacings-head: -.025em;
    --letter-spacings-h1: -.028em;
    --letter-spacings-h3: -.015em;
    --letter-spacings-mic: -.035em;
    --sizes-0: 0rem;
    --sizes-1: 0.25rem;
    --sizes-2: 0.5rem;
    --sizes-3: 0.75rem;
    --sizes-4: 1rem;
    --sizes-5: 1.25rem;
    --sizes-6: 1.5rem;
    --sizes-7: 1.75rem;
    --sizes-8: 2rem;
    --sizes-9: 2.25rem;
    --sizes-10: 2.5rem;
    --sizes-11: 2.75rem;
    --sizes-12: 3rem;
    --sizes-14: 3.5rem;
    --sizes-16: 4rem;
    --sizes-20: 5rem;
    --sizes-24: 6rem;
    --sizes-28: 7rem;
    --sizes-32: 8rem;
    --sizes-36: 9rem;
    --sizes-40: 10rem;
    --sizes-44: 11rem;
    --sizes-48: 12rem;
    --sizes-52: 13rem;
    --sizes-56: 14rem;
    --sizes-60: 15rem;
    --sizes-64: 16rem;
    --sizes-72: 18rem;
    --sizes-80: 20rem;
    --sizes-96: 24rem;
    --sizes-0\.5: 0.125rem;
    --sizes-1\.5: 0.375rem;
    --sizes-2\.5: 0.625rem;
    --sizes-3\.5: 0.875rem;
    --sizes-4\.5: 1.125rem;
    --sizes-5\.5: 1.375rem;
    --sizes-xs: 20rem;
    --sizes-sm: 24rem;
    --sizes-md: 28rem;
    --sizes-lg: 32rem;
    --sizes-xl: 36rem;
    --sizes-2xl: 42rem;
    --sizes-3xl: 48rem;
    --sizes-4xl: 56rem;
    --sizes-5xl: 64rem;
    --sizes-6xl: 72rem;
    --sizes-7xl: 80rem;
    --sizes-8xl: 90rem;
    --sizes-prose: 65ch;
    --sizes-full: 100%;
    --sizes-min: min-content;
    --sizes-max: max-content;
    --sizes-fit: fit-content;
    --sizes-col: 1240px;
    --sizes-breakpoint-sm: 640px;
    --sizes-breakpoint-md: 768px;
    --sizes-breakpoint-lg: 1024px;
    --sizes-breakpoint-xl: 1280px;
    --sizes-breakpoint-2xl: 1536px;
    --breakpoints-sm: 640px;
    --breakpoints-md: 768px;
    --breakpoints-lg: 1024px;
    --breakpoints-xl: 1280px;
    --breakpoints-2xl: 1536px;
}

  @keyframes spin {
    to {
      transform: rotate(360deg);
}
}

  @keyframes ping {
    75%,100% {
      transform: scale(2);
      opacity: 0;
}
}

  @keyframes pulse {
    50% {
      opacity: 0.5;
}
}

  @keyframes bounce {
    0%,100% {
      transform: translateY(-25%);
      animation-timing-function: cubic-bezier(0.8,0,1,1);
}

    50% {
      transform: none;
      animation-timing-function: cubic-bezier(0,0,0.2,1);
}
}
}

@layer utilities{
  @layer compositions{

    .layerStyle_castSm {
      background: var(--colors-transparent);
      isolation: isolate;
}

    .layerStyle_castSm::before {
      background: var(--surface, var(--colors-surface));
      z-index: -1;
}

    .layerStyle_castSm::before,.layerStyle_castSm::after {
      inset: var(--spacing-0);
      content: "";
      position: absolute;
      pointer-events: none;
}

    .layerStyle_castSm::after {
      z-index: -2;
      transform: translate(-3px, 3px);
      background-image: repeating-conic-gradient(var(--colors-ink) 0 25%, transparent 0 50%);
      background-size: 2px 2px;
      opacity: 0.68;
}

    .layerStyle_cast {
      background: var(--colors-transparent);
      isolation: isolate;
}

    .layerStyle_cast::before {
      background: var(--surface, var(--colors-surface));
      z-index: -1;
}

    .layerStyle_cast::before,.layerStyle_cast::after {
      inset: var(--spacing-0);
      content: "";
      position: absolute;
      pointer-events: none;
}

    .layerStyle_cast::after {
      z-index: -2;
      transform: translate(-6px, 6px);
      background-image: repeating-conic-gradient(var(--colors-ink) 0 25%, transparent 0 50%);
      background-size: 2px 2px;
      opacity: 0.68;
}

    .\[\&_pre\]\:layerStyle_cast pre {
      background: var(--colors-transparent);
      isolation: isolate;
}

    .\[\&_pre\]\:layerStyle_cast pre::before {
      background: var(--surface, var(--colors-surface));
      z-index: -1;
}

    .\[\&_pre\]\:layerStyle_cast pre::before,.\[\&_pre\]\:layerStyle_cast pre::after {
      inset: var(--spacing-0);
      content: "";
      position: absolute;
      pointer-events: none;
}

    .\[\&_pre\]\:layerStyle_cast pre::after {
      z-index: -2;
      transform: translate(-6px, 6px);
      background-image: repeating-conic-gradient(var(--colors-ink) 0 25%, transparent 0 50%);
      background-size: 2px 2px;
      opacity: 0.68;
}

    .\[\&_\.frame\]\:layerStyle_cast .frame {
      background: var(--colors-transparent);
      isolation: isolate;
}

    .\[\&_\.frame\]\:layerStyle_cast .frame::before {
      background: var(--surface, var(--colors-surface));
      z-index: -1;
}

    .\[\&_\.frame\]\:layerStyle_cast .frame::before,.\[\&_\.frame\]\:layerStyle_cast .frame::after {
      inset: var(--spacing-0);
      content: "";
      position: absolute;
      pointer-events: none;
}

    .\[\&_\.frame\]\:layerStyle_cast .frame::after {
      z-index: -2;
      transform: translate(-6px, 6px);
      background-image: repeating-conic-gradient(var(--colors-ink) 0 25%, transparent 0 50%);
      background-size: 2px 2px;
      opacity: 0.68;
}

    .\[\&_aside\.note\,_\&_aside\.caution\]\:layerStyle_cast aside.note,.\[\&_aside\.note\,_\&_aside\.caution\]\:layerStyle_cast aside.caution {
      background: var(--colors-transparent);
      isolation: isolate;
}

    .\[\&_aside\.note\,_\&_aside\.caution\]\:layerStyle_cast aside.note::before,.\[\&_aside\.note\,_\&_aside\.caution\]\:layerStyle_cast aside.caution::before {
      inset: var(--spacing-0);
      background: var(--surface, var(--colors-surface));
      content: "";
      position: absolute;
      z-index: -1;
      pointer-events: none;
}

    .\[\&_aside\.note\,_\&_aside\.caution\]\:layerStyle_cast aside.note::after,.\[\&_aside\.note\,_\&_aside\.caution\]\:layerStyle_cast aside.caution::after {
      inset: var(--spacing-0);
      content: "";
      position: absolute;
      z-index: -2;
      transform: translate(-6px, 6px);
      background-image: repeating-conic-gradient(var(--colors-ink) 0 25%, transparent 0 50%);
      background-size: 2px 2px;
      opacity: 0.68;
      pointer-events: none;
}
}

  .\--surface_\{colors\.go\} {
    --surface: var(--colors-go);
}

  .\--surface_\{colors\.human\} {
    --surface: var(--colors-human);
}

  .p_0_14px_0_16px {
    padding: 0 14px 0 16px;
}

  .bd_ink {
    border: var(--borders-ink);
}

  .p_0_10px_0_12px {
    padding: 0 10px 0 12px;
}

  .p_0_4px {
    padding: 0 4px;
}

  .bd_hair {
    border: var(--borders-hair);
}

  .bg_surface {
    background: var(--colors-surface);
}

  .bg_\#fff {
    background: #fff;
}

  .m_0 {
    margin: var(--spacing-0);
}

  .p_0 {
    padding: var(--spacing-0);
}

  .bg_transparent {
    background: var(--colors-transparent);
}

  .bg_accent {
    background: var(--colors-accent);
}

  .bg_ink {
    background: var(--colors-ink);
}

  .p_56px_0_24px {
    padding: 56px 0 24px;
}

  .p_72px_0_0 {
    padding: 72px 0 0;
}

  .p_88px_0_72px {
    padding: 88px 0 72px;
}

  .p_56px_0_72px {
    padding: 56px 0 72px;
}

  .m_0_auto {
    margin: 0 auto;
}

  .p_0_28px {
    padding: 0 28px;
}

  .p_4px_0 {
    padding: 4px 0;
}

  .bg_repeating-linear-gradient\(0deg\,_\{colors\.ink\}_0_1px\,_transparent_1px_3px\) {
    background: repeating-linear-gradient(0deg, var(--colors-ink) 0 1px, transparent 1px 3px);
}

  .p_0_10px {
    padding: 0 10px;
}

  .p_9px_10px {
    padding: 9px 10px;
}

  .p_7px_10px {
    padding: 7px 10px;
}

  .bg_paper {
    background: var(--colors-paper);
}

  .p_0_12px {
    padding: 0 12px;
}

  .bd_0 {
    border: 0;
}

  .p_0_8px {
    padding: 0 8px;
}

  .bg_ok {
    background: var(--colors-ok);
}

  .bg_human {
    background: var(--colors-human);
}

  .p_3px_5px {
    padding: 3px 5px;
}

  .p_12px_14px_14px {
    padding: 12px 14px 14px;
}

  .bg_ink3 {
    background: var(--colors-ink3);
}

  .p_8px_10px {
    padding: 8px 10px;
}

  .p_0_9px {
    padding: 0 9px;
}

  .p_8px_11px {
    padding: 8px 11px;
}

  .bd_1\.5px_solid_\{colors\.line2\} {
    border: 1.5px solid var(--colors-line2);
}

  .p_10px_12px {
    padding: 10px 12px;
}

  .p_3px_0 {
    padding: 3px 0;
}

  .bg_repeating-linear-gradient\(0deg\,_\{colors\.accent\}_0_1px\,_transparent_1px_3px\) {
    background: repeating-linear-gradient(0deg, var(--colors-accent) 0 1px, transparent 1px 3px);
}

  .p_10px_14px_14px {
    padding: 10px 14px 14px;
}

  .p_3px_3px_5px {
    padding: 3px 3px 5px;
}

  .p_7px {
    padding: 7px;
}

  .bd_1\.5px_solid_\{colors\.line\} {
    border: 1.5px solid var(--colors-line);
}

  .bg_repeating-linear-gradient\(0deg\,_\{colors\.human\}_0_1px\,_transparent_1px_3px\) {
    background: repeating-linear-gradient(0deg, var(--colors-human) 0 1px, transparent 1px 3px);
}

  .p_0_6px {
    padding: 0 6px;
}

  .p_7px_10px_8px {
    padding: 7px 10px 8px;
}

  .p_22px_0_62px {
    padding: 22px 0 62px;
}

  .p_4px_10px {
    padding: 4px 10px;
}

  .p_16px_18px_20px {
    padding: 16px 18px 20px;
}

  .font_inherit {
    font: inherit;
}

  .p_14px_14px_4px {
    padding: 14px 14px 4px;
}

  .m_-6px_0_12px_16px {
    margin: -6px 0 12px 16px;
}

  .m_2px_0_12px {
    margin: 2px 0 12px;
}

  .m_2px_0_4px {
    margin: 2px 0 4px;
}

  .p_2px_6px {
    padding: 2px 6px;
}

  .m_0_0_10px {
    margin: 0 0 10px;
}

  .bd_1\.5px_solid_currentColor {
    border: 1.5px solid currentColor;
}

  .p_7px_12px {
    padding: 7px 12px;
}

  .m_14px_0_0 {
    margin: 14px 0 0;
}

  .p_18px_18px_22px {
    padding: 18px 18px 22px;
}

  .p_16px_18px_18px {
    padding: 16px 18px 18px;
}

  .inset_0 {
    inset: var(--spacing-0);
}

  .p_22px_22px_26px {
    padding: 22px 22px 26px;
}

  .gap_9px {
    gap: 9px;
}

  .td_none\! {
    text-decoration: none !important;
}

  .trs_transform_\.08s {
    transition: transform .08s;
}

  .bd-c_human {
    border-color: var(--colors-human);
}

  .flex_none {
    flex: none;
}

  .bd-c_ink {
    border-color: var(--colors-ink);
}

  .li-s_none {
    list-style: none;
}

  .bd-r_hair {
    border-right: var(--borders-hair);
}

  .bd-r_0 {
    border-right: 0;
}

  .bd-t_hair {
    border-top: var(--borders-hair);
}

  .gap_7px {
    gap: 7px;
}

  .bd-c_ink3 {
    border-color: var(--colors-ink3);
}

  .bd-c_accent {
    border-color: var(--colors-accent);
}

  .gap_40px {
    gap: 40px;
}

  .gap_0_10px {
    gap: 0 10px;
}

  .bd-b_ink {
    border-bottom: var(--borders-ink);
}

  .ov_hidden {
    overflow: hidden;
}

  .flex_1 {
    flex: 1 1 0%;
}

  .gap_10px {
    gap: 10px;
}

  .bd-t_ink {
    border-top: var(--borders-ink);
}

  .gap_14px {
    gap: 14px;
}

  .bd-r_ink {
    border-right: var(--borders-ink);
}

  .gap_16px {
    gap: 16px;
}

  .gap_6px {
    gap: 6px;
}

  .bd-c_ok {
    border-color: var(--colors-ok);
}

  .place-items_center {
    place-items: center;
}

  .bg-p_var\(--vp-x\)_var\(--vp-y\) {
    background-position: var(--vp-x) var(--vp-y);
}

  .trs_transform_\.45s_cubic-bezier\(\.2\,\.7\,\.2\,1\) {
    transition: transform .45s cubic-bezier(.2,.7,.2,1);
}

  .ov_visible {
    overflow: visible;
}

  .trs_stroke_\.25s {
    transition: stroke .25s;
}

  .gap_8px {
    gap: 8px;
}

  .ov_auto {
    overflow: auto;
}

  .gap_12px {
    gap: 12px;
}

  .trs_transform_\.08s\,_box-shadow_\.08s {
    transition: transform .08s, box-shadow .08s;
}

  .gap_5px {
    gap: 5px;
}

  .flex_1_1_78px {
    flex: 1 1 78px;
}

  .bd-c_line2 {
    border-color: var(--colors-line2);
}

  .gap_4px {
    gap: 4px;
}

  .trs_opacity_\.25s\,_box-shadow_\.25s\,_border-color_\.25s {
    transition: opacity .25s, box-shadow .25s, border-color .25s;
}

  .gap_3px {
    gap: 3px;
}

  .gap_18px_28px {
    gap: 18px 28px;
}

  .gap_6px_22px {
    gap: 6px 22px;
}

  .td_none {
    text-decoration: none;
}

  .gap_0_48px {
    gap: 0 48px;
}

  .gap_28px {
    gap: 28px;
}

  .bd-l_2px_solid_transparent {
    border-left: 2px solid transparent;
}

  .gap_48px {
    gap: 48px;
}

  .gap_24px {
    gap: 24px;
}

  .trs_width_\.3s {
    transition: width .3s;
}

  .trs_transform_\.34s_cubic-bezier\(\.2\,\.7\,\.2\,1\) {
    transition: transform .34s cubic-bezier(.2,.7,.2,1);
}

  .trs_none {
    transition: none;
}

  .gap_20px {
    gap: 20px;
}

  .bd-w_1px {
    border-width: 1px;
}

  .border-style_solid {
    border-style: solid;
}

  .trs_background_\.12s {
    transition: background .12s;
}

  .bd-t_1px_solid_\{colors\.ink\} {
    border-top: 1px solid var(--colors-ink);
}

  .bd-l_0 {
    border-left: 0;
}

  .bd-t_0 {
    border-top: 0;
}

  .ring_none {
    outline: var(--borders-none);
}

  .gap_6px_24px {
    gap: 6px 24px;
}

  .grid-c_1 {
    grid-column: 1;
}

  .grid-c_2 {
    grid-column: 2;
}

  .grid-r_1_\/_span_2 {
    grid-row: 1 / span 2;
}

  .fv-num_tabular-nums {
    font-variant-numeric: tabular-nums;
}

  .d_inline-flex {
    display: inline-flex;
}

  .ai_center {
    align-items: center;
}

  .jc_center {
    justify-content: center;
}

  .pos_relative {
    position: relative;
}

  .c_ink {
    color: var(--colors-ink);
}

  .ff_mono {
    font-family: var(--fonts-mono);
}

  .fs_label {
    font-size: var(--font-sizes-label);
}

  .fw_500 {
    font-weight: 500;
}

  .lh_1 {
    line-height: 1;
}

  .ls_label {
    letter-spacing: var(--letter-spacings-label);
}

  .tt_uppercase {
    text-transform: uppercase;
}

  .white-space_nowrap {
    white-space: nowrap;
}

  .cursor_pointer {
    cursor: pointer;
}

  .c_ink2 {
    color: var(--colors-ink2);
}

  .c_\#fff {
    color: #fff;
}

  .fs_11px {
    font-size: 11px;
}

  .fill_go {
    fill: var(--colors-go);
}

  .stk_ink {
    stroke: var(--colors-ink);
}

  .stk-w_1 {
    stroke-width: 1;
}

  .shape-rendering_geometricPrecision {
    shape-rendering: geometricPrecision;
}

  .fill_\#fff {
    fill: #fff;
}

  .fs_key {
    font-size: var(--font-sizes-key);
}

  .ls_0 {
    letter-spacing: 0;
}

  .d_grid {
    display: grid;
}

  .grid-tc_1fr {
    grid-template-columns: 1fr;
}

  .grid-tc_repeat\(3\,_minmax\(0\,_1fr\)\) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

  .grid-tc_repeat\(4\,_minmax\(0\,_1fr\)\) {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

  .shape-rendering_crispEdges {
    shape-rendering: crispEdges;
}

  .va_-8px {
    vertical-align: -8px;
}

  .va_middle {
    vertical-align: middle;
}

  .c_ink3 {
    color: var(--colors-ink3);
}

  .c_accent {
    color: var(--colors-accent);
}

  .fs_labelSm {
    font-size: var(--font-sizes-label-sm);
}

  .ls_labelTight {
    letter-spacing: var(--letter-spacings-label-tight);
}

  .grid-tc_minmax\(0\,_7fr\)_minmax\(0\,_5fr\) {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
}

  .ai_end {
    align-items: end;
}

  .ff_ui {
    font-family: var(--fonts-ui);
}

  .fs_small {
    font-size: var(--font-sizes-small);
}

  .lh_1\.3 {
    line-height: 1.3;
}

  .tt_none {
    text-transform: none;
}

  .d_flex {
    display: flex;
}

  .flex-wrap_wrap {
    flex-wrap: wrap;
}

  .fs_deck {
    font-size: var(--font-sizes-deck);
}

  .lh_1\.5 {
    line-height: 1.5;
}

  .fs_body {
    font-size: var(--font-sizes-body);
}

  .flex-d_column {
    flex-direction: column;
}

  .vis_hidden {
    visibility: hidden;
}

  .bg-cp_content-box {
    background-clip: content-box;
    -webkit-background-clip: content-box;
}

  .ls_mono {
    letter-spacing: var(--letter-spacings-mono);
}

  .tov_ellipsis {
    text-overflow: ellipsis;
}

  .pos_absolute {
    position: absolute;
}

  .ap_none {
    appearance: none;
    -webkit-appearance: none;
}

  .jc_space-between {
    justify-content: space-between;
}

  .fw_400 {
    font-weight: 400;
}

  .fs_12px {
    font-size: 12px;
}

  .fw_600 {
    font-weight: 600;
}

  .fs_10\.5px {
    font-size: 10.5px;
}

  .ls_\.06em {
    letter-spacing: .06em;
}

  .grid-tc_minmax\(0\,_1fr\)_410px {
    grid-template-columns: minmax(0, 1fr) 410px;
}

  .font-style_normal {
    font-style: normal;
}

  .ta_center {
    text-align: center;
}

  .c_human {
    color: var(--colors-human);
}

  .fs_10px {
    font-size: 10px;
}

  .ls_\.1em {
    letter-spacing: .1em;
}

  .c_ok {
    color: var(--colors-ok);
}

  .lh_1\.4 {
    line-height: 1.4;
}

  .bg-s_var\(--dot\)_var\(--dot\) {
    background-size: var(--dot) var(--dot);
}

  .bg-i_radial-gradient\(\{colors\.line\}_1px\,_transparent_1px\) {
    background-image: radial-gradient(var(--colors-line) 1px, transparent 1px);
}

  .cursor_grab {
    cursor: grab;
}

  .tch-a_none {
    touch-action: none;
}

  .us_none {
    -webkit-user-select: none;
    user-select: none;
}

  .cursor_grabbing {
    cursor: grabbing;
}

  .trf_var\(--world\) {
    transform: var(--world);
}

  .trf-o_0_0 {
    transform-origin: 0 0;
}

  .will-change_transform {
    will-change: transform;
}

  .pointer-events_none {
    pointer-events: none;
}

  .trf_translate\(-50\%\,-50\%\)_translate\(var\(--lx\)\,_var\(--ly\)\) {
    transform: translate(-50%,-50%) translate(var(--lx), var(--ly));
}

  .fs_9px {
    font-size: 9px;
}

  .ls_\.08em {
    letter-spacing: .08em;
}

  .cursor_default {
    cursor: default;
}

  .d_none {
    display: none;
}

  .fill_none {
    fill: none;
}

  .stk_line2 {
    stroke: var(--colors-line2);
}

  .stk-w_1\.5 {
    stroke-width: 1.5;
}

  .stk_accent {
    stroke: var(--colors-accent);
}

  .stk-w_2 {
    stroke-width: 2;
}

  .stk_human {
    stroke: var(--colors-human);
}

  .fill_accent {
    fill: var(--colors-accent);
}

  .fill_human {
    fill: var(--colors-human);
}

  .fs_13px {
    font-size: 13px;
}

  .lh_1\.2 {
    line-height: 1.2;
}

  .lh_1\.6 {
    line-height: 1.6;
}

  .white-space_pre-wrap {
    white-space: pre-wrap;
}

  .fs_13\.5px {
    font-size: 13.5px;
}

  .lh_1\.45 {
    line-height: 1.45;
}

  .as_flex-end {
    align-self: flex-end;
}

  .c_paper {
    color: var(--colors-paper);
}

  .lh_1\.7 {
    line-height: 1.7;
}

  .grid-tc_repeat\(5\,_minmax\(0\,_1fr\)\) {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

  .ta_left {
    text-align: left;
}

  .ff_inherit {
    font-family: inherit;
}

  .fs_inherit {
    font-size: inherit;
}

  .c_inherit {
    color: inherit;
}

  .fs_9\.5px {
    font-size: 9.5px;
}

  .ls_\.12em {
    letter-spacing: .12em;
}

  .fs_15px {
    font-size: 15px;
}

  .scr-bar-w_thin {
    scrollbar-width: thin;
}

  .op_0\.6 {
    opacity: 0.6;
}

  .bx-sh_2px_2px_0_\{colors\.human\} {
    box-shadow: 2px 2px 0 var(--colors-human);
}

  .bx-sh_hardSm {
    box-shadow: var(--shadows-hard-sm);
}

  .op_0\.55 {
    opacity: 0.55;
}

  .bx-sh_none {
    box-shadow: none;
}

  .bx-sh_2px_2px_0_\{colors\.accent\} {
    box-shadow: 2px 2px 0 var(--colors-accent);
}

  .fs_12\.5px {
    font-size: 12.5px;
}

  .lh_1\.25 {
    line-height: 1.25;
}

  .ls_-\.01em {
    letter-spacing: -.01em;
}

  .ta_right {
    text-align: right;
}

  .ff_display {
    font-family: var(--fonts-display);
}

  .fv-s_\"opsz\"_96 {
    font-variation-settings: "opsz" 96;
}

  .fw_700 {
    font-weight: 700;
}

  .fs_mic {
    font-size: var(--font-sizes-mic);
}

  .lh_0\.92 {
    line-height: 0.92;
}

  .ls_mic {
    letter-spacing: var(--letter-spacings-mic);
}

  .d_inline-block {
    display: inline-block;
}

  .fs_note {
    font-size: var(--font-sizes-note);
}

  .grid-tc_220px_minmax\(0\,_1fr\)_200px {
    grid-template-columns: 220px minmax(0, 1fr) 200px;
}

  .ai_start {
    align-items: start;
}

  .pos_sticky {
    position: sticky;
}

  .d_block {
    display: block;
}

  .z_20 {
    z-index: 20;
}

  .va_-0\.2em {
    vertical-align: -0.2em;
}

  .trf_translateY\(-1em\) {
    transform: translateY(-1em);
}

  .asp_5_\/_4 {
    aspect-ratio: 5 / 4;
}

  .pos_fixed {
    position: fixed;
}

  .z_50 {
    z-index: 50;
}

  .bg-c_accent {
    background-color: var(--colors-accent);
}

  .bg-i_repeating-conic-gradient\(\{colors\.ink\}_0_25\%\,_transparent_0_50\%\) {
    background-image: repeating-conic-gradient(var(--colors-ink) 0 25%, transparent 0 50%);
}

  .bg-s_4px_4px {
    background-size: 4px 4px;
}

  .trf_translate\(-50\%\,_-50\%\) {
    transform: translate(-50%, -50%);
}

  .z_49 {
    z-index: 49;
}

  .ov-wrap_anywhere {
    overflow-wrap: anywhere;
}

  .ls_\.15em {
    letter-spacing: .15em;
}

  .jc_flex-end {
    justify-content: flex-end;
}

  .trf_translateY\(-2px\)_rotate\(45deg\) {
    transform: translateY(-2px) rotate(45deg);
}

  .fs_clamp\(34px\,_4\.2vw\,_56px\) {
    font-size: clamp(34px, 4.2vw, 56px);
}

  .grid-tc_minmax\(0\,_1fr\)_auto {
    grid-template-columns: minmax(0, 1fr) auto;
}

  .fs_14\.5px {
    font-size: 14.5px;
}

  .as_start {
    align-self: start;
}

  .z_-1 {
    z-index: -1;
}

  .image-rendering_pixelated {
    image-rendering: pixelated;
}

  .bx-sh_inset_2px_2px_0_\{colors\.paper2\} {
    box-shadow: inset 2px 2px 0 var(--colors-paper2);
}

  .h_42px {
    height: 42px;
}

  .h_32px {
    height: 32px;
}

  .min-w_17px {
    min-width: 17px;
}

  .h_17px {
    height: 17px;
}

  .ml_1px {
    margin-left: 1px;
}

  .min-w_0 {
    min-width: var(--sizes-0);
}

  .w_24px {
    width: 24px;
}

  .h_24px {
    height: 24px;
}

  .mr_10px {
    margin-right: 10px;
}

  .w_16px {
    width: 16px;
}

  .h_16px {
    height: 16px;
}

  .mr_0 {
    margin-right: var(--spacing-0);
}

  .w_9px {
    width: 9px;
}

  .h_9px {
    height: 9px;
}

  .w_8px {
    width: 8px;
}

  .h_8px {
    height: 8px;
}

  .max-w_col {
    max-width: var(--sizes-col);
}

  .mb_22px {
    margin-bottom: 22px;
}

  .max-w_62ch {
    max-width: 62ch;
}

  .mb_40px {
    margin-bottom: 40px;
}

  .max-w_56ch {
    max-width: 56ch;
}

  .max-w_80\% {
    max-width: 80%;
}

  .left_7px {
    left: 7px;
}

  .top_5px {
    top: 5px;
}

  .w_12px {
    width: 12px;
}

  .h_12px {
    height: 12px;
}

  .min-h_0 {
    min-height: var(--sizes-0);
}

  .h_28px {
    height: 28px;
}

  .ml_auto {
    margin-left: auto;
}

  .w_14px {
    width: 14px;
}

  .h_20px {
    height: 20px;
}

  .w_6px {
    width: 6px;
}

  .h_6px {
    height: 6px;
}

  .w_30px {
    width: 30px;
}

  .h_30px {
    height: 30px;
}

  .w_26px {
    width: 26px;
}

  .h_26px {
    height: 26px;
}

  .h_540px {
    height: 540px;
}

  .left_0 {
    left: var(--spacing-0);
}

  .top_0 {
    top: var(--spacing-0);
}

  .w_1px {
    width: 1px;
}

  .h_1px {
    height: 1px;
}

  .left_12px {
    left: 12px;
}

  .bottom_12px {
    bottom: 12px;
}

  .left_var\(--nx\) {
    left: var(--nx);
}

  .top_var\(--ny\) {
    top: var(--ny);
}

  .w_var\(--nw\) {
    width: var(--nw);
}

  .ml_6px {
    margin-left: 6px;
}

  .min-h_96px {
    min-height: 96px;
}

  .max-h_300px {
    max-height: 300px;
}

  .max-w_92\% {
    max-width: 92%;
}

  .mb_18px {
    margin-bottom: 18px;
}

  .left_5px {
    left: 5px;
}

  .top_4px {
    top: 4px;
}

  .w_10px {
    width: 10px;
}

  .h_10px {
    height: 10px;
}

  .ov-x_auto {
    overflow-x: auto;
}

  .min-w_78px {
    min-width: 78px;
}

  .w_100\% {
    width: 100%;
}

  .mr_5px {
    margin-right: 5px;
}

  .right_6px {
    right: 6px;
}

  .top_2px {
    top: 2px;
}

  .mb_2px {
    margin-bottom: 2px;
}

  .mt_12px {
    margin-top: 12px;
}

  .mt_24px {
    margin-top: 24px;
}

  .ml_4px {
    margin-left: 4px;
}

  .top_76px {
    top: 76px;
}

  .mt_10px {
    margin-top: 10px;
}

  .max-w_72ch {
    max-width: 72ch;
}

  .mt_36px {
    margin-top: 36px;
}

  .mt_48px {
    margin-top: 48px;
}

  .pt_20px {
    padding-top: 20px;
}

  .mb_10px {
    margin-bottom: 10px;
}

  .mt_32px {
    margin-top: 32px;
}

  .mt_\.16em {
    margin-top: .16em;
}

  .h_52px {
    height: 52px;
}

  .w_var\(--w\) {
    width: var(--w);
}

  .h_1em {
    height: 1em;
}

  .top_1em {
    top: 1em;
}

  .right_22px {
    right: 22px;
}

  .bottom_22px {
    bottom: 22px;
}

  .w_min\(400px\,_calc\(100vw_-_32px\)\) {
    width: min(400px, calc(100vw - 32px));
}

  .h_215px {
    height: 215px;
}

  .min-h_240px {
    min-height: 240px;
}

  .max-h_min\(460px\,_calc\(100vh_-_400px\)\) {
    max-height: min(460px, calc(100vh - 400px));
}

  .h_22px {
    height: 22px;
}

  .w_var\(--pct\) {
    width: var(--pct);
}

  .bottom_0 {
    bottom: var(--spacing-0);
}

  .left_50\% {
    left: 50%;
}

  .top_50\% {
    top: 50%;
}

  .h_36px {
    height: 36px;
}

  .pl_16px {
    padding-left: 16px;
}

  .max-w_100\% {
    max-width: 100%;
}

  .right_0 {
    right: var(--spacing-0);
}

  .top_calc\(100\%_\+_8px\) {
    top: calc(100% + 8px);
}

  .min-w_min\(300px\,_calc\(100vw_-_32px\)\) {
    min-width: min(300px, calc(100vw - 32px));
}

  .mt_72px {
    margin-top: 72px;
}

  .mt_8px {
    margin-top: 8px;
}

  .max-w_14ch {
    max-width: 14ch;
}

  .mt_18px {
    margin-top: 18px;
}

  .mb_12px {
    margin-bottom: 12px;
}

  .h_100\% {
    height: 100%;
}

  .max-w_500px {
    max-width: 500px;
}

  .left_-9999px {
    left: -9999px;
}

  .\[\&\[aria-expanded\=\"true\"\]\]\:--surface_\{colors\.wash\}[aria-expanded="true"] {
    --surface: var(--colors-wash);
}

  .\[\&\[aria-pressed\=\"true\"\]\]\:bg_ink[aria-pressed="true"] {
    background: var(--colors-ink);
}

  .\[\&_code\]\:bg_paper2 code {
    background: var(--colors-paper2);
}

  .\[\&_code\]\:p_1px_4px code {
    padding: 1px 4px;
}

  .\[\&_pre\]\:p_14px_16px pre {
    padding: 14px 16px;
}

  .\[\&_pre\]\:bd_ink pre {
    border: var(--borders-ink);
}

  .\[\&_pre_code\]\:bg_none pre code {
    background: none;
}

  .\[\&_pre_code\]\:p_0 pre code {
    padding: var(--spacing-0);
}

  .\[\&_\.frame\]\:bd_ink .frame {
    border: var(--borders-ink);
}

  .\[\&_th\]\:p_8px_12px th,.\[\&_td\]\:p_8px_12px td {
    padding: 8px 12px;
}

  .\[\&_blockquote\]\:m_18px_0_0 blockquote {
    margin: 18px 0 0;
}

  .\[\&_blockquote\]\:p_2px_0_2px_16px blockquote {
    padding: 2px 0 2px 16px;
}

  .\[\&_hr\]\:m_32px_0 hr {
    margin: 32px 0;
}

  .\[\&_hr\]\:bd_none hr {
    border: var(--borders-none);
}

  .\[\&_aside\.note\,_\&_aside\.caution\]\:m_20px_0_0 aside.note,.\[\&_aside\.note\,_\&_aside\.caution\]\:m_20px_0_0 aside.caution {
    margin: 20px 0 0;
}

  .\[\&_aside\.note\,_\&_aside\.caution\]\:p_12px_16px_14px aside.note,.\[\&_aside\.note\,_\&_aside\.caution\]\:p_12px_16px_14px aside.caution {
    padding: 12px 16px 14px;
}

  .\[\&_aside\.note\,_\&_aside\.caution\]\:bd_ink aside.note,.\[\&_aside\.note\,_\&_aside\.caution\]\:bd_ink aside.caution {
    border: var(--borders-ink);
}

  .\[\&_canvas\]\:inset_0 canvas {
    inset: var(--spacing-0);
}

  .disabled\:bg_paper2:is(:disabled, [disabled], [data-disabled], [aria-disabled=true]) {
    background: var(--colors-paper2);
}

  .before\:bg_accent::before {
    background: var(--colors-accent);
}

  .before\:bg_human::before {
    background: var(--colors-human);
}

  .\[\&\[data-focus\]\]\:bg_wash[data-focus] {
    background: var(--colors-wash);
}

  .\[\&\[aria-selected\=\"true\"\]\]\:bg_ink[aria-selected="true"] {
    background: var(--colors-ink);
}

  .\[\&\[aria-selected\=\"true\"\]\[data-focus\]\]\:bg_accent[aria-selected="true"][data-focus] {
    background: var(--colors-accent);
}

  .\[\&\:last-child\]\:bd-r_0:last-child {
    border-right: 0;
}

  .\[\&\:first-child\]\:bd-t_0:first-child {
    border-top: 0;
}

  .\[\&_a\]\:td_none a {
    text-decoration: none;
}

  .\[\&\:last-child\]\:bd-b_0:last-child {
    border-bottom: 0;
}

  .\[\&_h2\]\:bd-t_hair h2 {
    border-top: var(--borders-hair);
}

  .\[\&_pre\]\:ov_auto pre {
    overflow: auto;
}

  .\[\&_th\]\:bd-b_hair th,.\[\&_td\]\:bd-b_hair td {
    border-bottom: var(--borders-hair);
}

  .\[\&_tr\:last-child_td\]\:bd-b_none tr:last-child td {
    border-bottom: var(--borders-none);
}

  .\[\&_blockquote\]\:bd-l_2px_solid_\{colors\.ink\} blockquote {
    border-left: 2px solid var(--colors-ink);
}

  .\[\&_hr\]\:bd-t_hair hr {
    border-top: var(--borders-hair);
}

  .\[\&_h2_a\.anchor\,_\&_h3_a\.anchor\]\:td_none h2 a.anchor,.\[\&_h2_a\.anchor\,_\&_h3_a\.anchor\]\:td_none h3 a.anchor {
    text-decoration: none;
}

  .\[\&_h2_a\.anchor\,_\&_h3_a\.anchor\]\:trs_opacity_\.12s h2 a.anchor,.\[\&_h2_a\.anchor\,_\&_h3_a\.anchor\]\:trs_opacity_\.12s h3 a.anchor {
    transition: opacity .12s;
}

  .before\:bd-w_1px::before {
    border-width: 1px;
}

  .before\:border-style_solid::before {
    border-style: solid;
}

  .before\:bd-c_ink::before {
    border-color: var(--colors-ink);
}

  .\[\&_a\]\:td_underline a {
    text-decoration: underline;
}

  .disabled\:op_0\.55:is(:disabled, [disabled], [data-disabled], [aria-disabled=true]) {
    opacity: 0.55;
}

  .disabled\:cursor_default:is(:disabled, [disabled], [data-disabled], [aria-disabled=true]) {
    cursor: default;
}

  .after\:d_none::after {
    display: none;
}

  .\[\&_b\]\:c_accent b {
    color: var(--colors-accent);
}

  .\[\&_b\]\:fw_500 b {
    font-weight: 500;
}

  .\[\&_b\]\:c_ink b {
    color: var(--colors-ink);
}

  .\[\&_a\]\:c_inherit a {
    color: inherit;
}

  .\[\&\[aria-pressed\=\"true\"\]\]\:c_paper[aria-pressed="true"] {
    color: var(--colors-paper);
}

  .\[\&_svg\]\:va_middle svg {
    vertical-align: middle;
}

  .\[\&_svg\]\:fill_accent svg {
    fill: var(--colors-accent);
}

  .\[\&_svg\]\:fill_human svg {
    fill: var(--colors-human);
}

  .\[\&_a\]\:c_ink a,.currentPage\:c_ink[aria-current=page] {
    color: var(--colors-ink);
}

  .\[\&_h1\]\:fs_clamp\(32px\,_3\.6vw\,_48px\) h1 {
    font-size: clamp(32px, 3.6vw, 48px);
}

  .\[\&_h2\]\:fs_24px h2 {
    font-size: 24px;
}

  .\[\&_h2\]\:fw_700 h2 {
    font-weight: 700;
}

  .\[\&_h2\]\:lh_1\.2 h2 {
    line-height: 1.2;
}

  .\[\&_h2\]\:ls_head h2 {
    letter-spacing: var(--letter-spacings-head);
}

  .\[\&_h3\]\:fs_18px h3 {
    font-size: 18px;
}

  .\[\&_h3\]\:fw_700 h3 {
    font-weight: 700;
}

  .\[\&_h3\]\:lh_1\.3 h3 {
    line-height: 1.3;
}

  .\[\&_p\,_\&_li\]\:fs_body p,.\[\&_p\,_\&_li\]\:fs_body li {
    font-size: var(--font-sizes-body);
}

  .\[\&_p\,_\&_li\]\:lh_1\.6 p,.\[\&_p\,_\&_li\]\:lh_1\.6 li {
    line-height: 1.6;
}

  .\[\&_p\,_\&_li\]\:c_ink p,.\[\&_p\,_\&_li\]\:c_ink li {
    color: var(--colors-ink);
}

  .\[\&_a\]\:c_accent a {
    color: var(--colors-accent);
}

  .\[\&_strong\]\:c_ink strong {
    color: var(--colors-ink);
}

  .\[\&_strong\]\:fw_500 strong {
    font-weight: 500;
}

  .\[\&_code\]\:ff_mono code {
    font-family: var(--fonts-mono);
}

  .\[\&_code\]\:fs_13\.5px code {
    font-size: 13.5px;
}

  .\[\&_pre\]\:pos_relative pre {
    position: relative;
}

  .\[\&_pre\]\:ff_mono pre {
    font-family: var(--fonts-mono);
}

  .\[\&_pre\]\:fs_13px pre {
    font-size: 13px;
}

  .\[\&_pre\]\:lh_1\.55 pre {
    line-height: 1.55;
}

  .\[\&_pre_code\]\:fs_inherit pre code {
    font-size: inherit;
}

  .\[\&_\.frame\]\:pos_relative .frame {
    position: relative;
}

  .\[\&_table\]\:bd-cl_collapse table {
    border-collapse: collapse;
}

  .\[\&_th\]\:ta_left th {
    text-align: left;
}

  .\[\&_th\]\:ff_mono th {
    font-family: var(--fonts-mono);
}

  .\[\&_th\]\:fs_label th {
    font-size: var(--font-sizes-label);
}

  .\[\&_th\]\:fw_500 th {
    font-weight: 500;
}

  .\[\&_th\]\:ls_labelTight th {
    letter-spacing: var(--letter-spacings-label-tight);
}

  .\[\&_th\]\:tt_uppercase th {
    text-transform: uppercase;
}

  .\[\&_th\]\:c_ink2 th {
    color: var(--colors-ink2);
}

  .\[\&_td\]\:fs_14\.5px td {
    font-size: 14.5px;
}

  .\[\&_td\]\:lh_1\.5 td {
    line-height: 1.5;
}

  .\[\&_blockquote\]\:c_ink2 blockquote {
    color: var(--colors-ink2);
}

  .\[\&_aside\.note\,_\&_aside\.caution\]\:pos_relative aside.note,.\[\&_aside\.note\,_\&_aside\.caution\]\:pos_relative aside.caution {
    position: relative;
}

  .\[\&_aside\.note_\.note__title\,_\&_aside\.caution_\.caution__title\]\:ff_mono aside.note .note__title,.\[\&_aside\.note_\.note__title\,_\&_aside\.caution_\.caution__title\]\:ff_mono aside.caution .caution__title {
    font-family: var(--fonts-mono);
}

  .\[\&_aside\.note_\.note__title\,_\&_aside\.caution_\.caution__title\]\:fs_label aside.note .note__title,.\[\&_aside\.note_\.note__title\,_\&_aside\.caution_\.caution__title\]\:fs_label aside.caution .caution__title {
    font-size: var(--font-sizes-label);
}

  .\[\&_aside\.note_\.note__title\,_\&_aside\.caution_\.caution__title\]\:fw_500 aside.note .note__title,.\[\&_aside\.note_\.note__title\,_\&_aside\.caution_\.caution__title\]\:fw_500 aside.caution .caution__title {
    font-weight: 500;
}

  .\[\&_aside\.note_\.note__title\,_\&_aside\.caution_\.caution__title\]\:ls_label aside.note .note__title,.\[\&_aside\.note_\.note__title\,_\&_aside\.caution_\.caution__title\]\:ls_label aside.caution .caution__title {
    letter-spacing: var(--letter-spacings-label);
}

  .\[\&_aside\.note_\.note__title\,_\&_aside\.caution_\.caution__title\]\:tt_uppercase aside.note .note__title,.\[\&_aside\.note_\.note__title\,_\&_aside\.caution_\.caution__title\]\:tt_uppercase aside.caution .caution__title {
    text-transform: uppercase;
}

  .\[\&_aside\.note_\.note__title\]\:c_accent aside.note .note__title {
    color: var(--colors-accent);
}

  .\[\&_aside\.caution_\.caution__title\]\:c_human aside.caution .caution__title {
    color: var(--colors-human);
}

  .\[\&_h2_a\.anchor\,_\&_h3_a\.anchor\]\:ff_mono h2 a.anchor,.\[\&_h2_a\.anchor\,_\&_h3_a\.anchor\]\:ff_mono h3 a.anchor {
    font-family: var(--fonts-mono);
}

  .\[\&_h2_a\.anchor\,_\&_h3_a\.anchor\]\:fw_400 h2 a.anchor,.\[\&_h2_a\.anchor\,_\&_h3_a\.anchor\]\:fw_400 h3 a.anchor {
    font-weight: 400;
}

  .\[\&_h2_a\.anchor\,_\&_h3_a\.anchor\]\:c_ink3 h2 a.anchor,.\[\&_h2_a\.anchor\,_\&_h3_a\.anchor\]\:c_ink3 h3 a.anchor {
    color: var(--colors-ink3);
}

  .\[\&_h2_a\.anchor\,_\&_h3_a\.anchor\]\:op_0 h2 a.anchor,.\[\&_h2_a\.anchor\,_\&_h3_a\.anchor\]\:op_0 h3 a.anchor {
    opacity: 0;
}

  .\[\&_\>_p\:first-child\]\:c_ink3 > p:first-child {
    color: var(--colors-ink3);
}

  .\[\&_b\]\:fw_600 b {
    font-weight: 600;
}

  .\[\&_canvas\]\:pos_absolute canvas {
    position: absolute;
}

  .\[\&_canvas\]\:d_block canvas {
    display: block;
}

  .\[\&_canvas\]\:image-rendering_pixelated canvas {
    image-rendering: pixelated;
}

  .\[\&\[hidden\]\]\:d_none[hidden],.\[\&\:empty\]\:d_none:empty {
    display: none;
}

  .disabled\:c_ink3:is(:disabled, [disabled], [data-disabled], [aria-disabled=true]) {
    color: var(--colors-ink3);
}

  .before\:content_\"\"::before {
    content: "";
}

  .before\:pos_absolute::before,:is(.\[\&_\+_\&\]\:pos_absolute) + :is(.\[\&_\+_\&\]\:pos_absolute) {
    position: absolute;
}

  .\[\&\[aria-selected\=\"true\"\]\]\:c_paper[aria-selected="true"] {
    color: var(--colors-paper);
}

  .\[\&\[aria-selected\=\"true\"\]\[data-focus\]\]\:c_onAccent[aria-selected="true"][data-focus] {
    color: var(--colors-on-accent);
}

  .placeholder\:c_ink3::placeholder,.placeholder\:c_ink3[data-placeholder] {
    color: var(--colors-ink3);
}

  .\[\&_a\]\:tu-o_3px a {
    text-underline-offset: 3px;
}

  .\[\&_h2\]\:mt_14px h2 {
    margin-top: 14px;
}

  .\[\&_h2\]\:max-w_20ch h2 {
    max-width: 20ch;
}

  .\[\&_h1\]\:mt_18px h1 {
    margin-top: 18px;
}

  .\[\&_svg\]\:w_12px svg {
    width: 12px;
}

  .\[\&_svg\]\:h_12px svg {
    height: 12px;
}

  .\[\&_svg\]\:mr_6px svg {
    margin-right: 6px;
}

  .\[\&_\>_p\]\:max-w_64ch > p {
    max-width: 64ch;
}

  .\[\&_\>_p\:first-child\]\:mb_14px > p:first-child {
    margin-bottom: 14px;
}

  .\[\&_\>_p\:first-child\]\:max-w_40ch > p:first-child {
    max-width: 40ch;
}

  .\[\&_\>_p\:last-child\]\:mt_18px > p:last-child {
    margin-top: 18px;
}

  .\[\&_form\]\:mt_0 form {
    margin-top: var(--spacing-0);
}

  .currentPage\:bd-l-c_accent[aria-current=page] {
    border-left-color: var(--colors-accent);
}

  .\[\&_h1\]\:max-w_16ch h1 {
    max-width: 16ch;
}

  .\[\&_p\]\:mt_16px p {
    margin-top: 16px;
}

  .\[\&_h2\]\:mt_40px h2 {
    margin-top: 40px;
}

  .\[\&_h2\]\:pt_16px h2 {
    padding-top: 16px;
}

  .\[\&_h3\]\:mt_28px h3 {
    margin-top: 28px;
}

  .\[\&_ul\,_\&_ol\]\:mt_12px ul,.\[\&_ul\,_\&_ol\]\:mt_12px ol {
    margin-top: 12px;
}

  .\[\&_ul\,_\&_ol\]\:pl_22px ul,.\[\&_ul\,_\&_ol\]\:pl_22px ol {
    padding-left: 22px;
}

  .\[\&_li\]\:mt_6px li {
    margin-top: 6px;
}

  .\[\&_pre\]\:mt_18px pre,.\[\&_\.frame\]\:mt_18px .frame {
    margin-top: 18px;
}

  .\[\&_\.frame\]\:ov-x_auto .frame {
    overflow-x: auto;
}

  .\[\&_table\]\:w_100\% table {
    width: 100%;
}

  .\[\&_img\]\:max-w_100\% img {
    max-width: 100%;
}

  .\[\&_img\]\:h_auto img {
    height: auto;
}

  .\[\&_aside\.note_\.note__title\,_\&_aside\.caution_\.caution__title\]\:mt_0 aside.note .note__title,.\[\&_aside\.note_\.note__title\,_\&_aside\.caution_\.caution__title\]\:mt_0 aside.caution .caution__title {
    margin-top: var(--spacing-0);
}

  .\[\&_h2_a\.anchor\,_\&_h3_a\.anchor\]\:ml_8px h2 a.anchor,.\[\&_h2_a\.anchor\,_\&_h3_a\.anchor\]\:ml_8px h3 a.anchor {
    margin-left: 8px;
}

  .\[\&_\>_\:last-child\]\:ml_auto > :last-child {
    margin-left: auto;
}

  .\[\&\[data-depth\=\'3\'\]\]\:pl_14px[data-depth='3'] {
    padding-left: 14px;
}

  .\[\&_h1\]\:max-w_13ch h1 {
    max-width: 13ch;
}

  .\[\&_h1_\+_p\]\:mt_22px h1 + p {
    margin-top: 22px;
}

  .\[\&_form\]\:mt_28px form {
    margin-top: 28px;
}

  .\[\&_canvas\]\:w_100\% canvas {
    width: 100%;
}

  .\[\&_canvas\]\:h_100\% canvas {
    height: 100%;
}

  .before\:left_0::before {
    left: var(--spacing-0);
}

  .before\:top_7px::before {
    top: 7px;
}

  .before\:w_7px::before {
    width: 7px;
}

  .before\:h_7px::before {
    height: 7px;
}

  :is(.\[\&_\+_\&\]\:left_0) + :is(.\[\&_\+_\&\]\:left_0) {
    left: var(--spacing-0);
}

  .\[\&_\+_\&\]\:right_0 + .\[\&_\+_\&\]\:right_0 {
    right: var(--spacing-0);
}

  .\[\&_\+_\&\]\:top_1em + .\[\&_\+_\&\]\:top_1em {
    top: 1em;
}

  .\[\&_h3\]\:mt_12px h3 {
    margin-top: 12px;
}

  .\[\&\:first-child\]\:pl_0:first-child {
    padding-left: var(--spacing-0);
}

  .focusVisible\:ring_2px_solid_\{colors\.accent\}:is(:focus-visible, [data-focus-visible]) {
    outline: 2px solid var(--colors-accent);
}

  .focus\:ring_none:is(:focus, [data-focus]) {
    outline: var(--borders-none);
}

  .focus\:bd-c_accent:is(:focus, [data-focus]) {
    border-color: var(--colors-accent);
}

  .focusVisible\:ring-o_2px:is(:focus-visible, [data-focus-visible]) {
    outline-offset: 2px;
}

  .\[\&_h2\:hover_a\.anchor\,_\&_h3\:hover_a\.anchor\,_\&_h2_a\.anchor\:focus-visible\,_\&_h3_a\.anchor\:focus-visible\]\:op_1 h2:hover a.anchor,.\[\&_h2\:hover_a\.anchor\,_\&_h3\:hover_a\.anchor\,_\&_h2_a\.anchor\:focus-visible\,_\&_h3_a\.anchor\:focus-visible\]\:op_1 h3:hover a.anchor,.\[\&_h2\:hover_a\.anchor\,_\&_h3\:hover_a\.anchor\,_\&_h2_a\.anchor\:focus-visible\,_\&_h3_a\.anchor\:focus-visible\]\:op_1 h2 a.anchor:focus-visible,.\[\&_h2\:hover_a\.anchor\,_\&_h3\:hover_a\.anchor\,_\&_h2_a\.anchor\:focus-visible\,_\&_h3_a\.anchor\:focus-visible\]\:op_1 h3 a.anchor:focus-visible {
    opacity: 1;
}

  .focus\:bx-sh_inset_2px_2px_0_\{colors\.wash\}:is(:focus, [data-focus]) {
    box-shadow: inset 2px 2px 0 var(--colors-wash);
}

  .hover\:--surface_\{colors\.wash\}:is(:hover, [data-hover]) {
    --surface: var(--colors-wash);
}

  .hover\:--surface_\{colors\.goHover\}:is(:hover, [data-hover]) {
    --surface: var(--colors-go-hover);
}

  .hover\:--surface_\{colors\.humanInk\}:is(:hover, [data-hover]) {
    --surface: var(--colors-human-ink);
}

  .hover\:bg_wash:is(:hover, [data-hover]),.\[\&\:hover\:not\(\[aria-pressed\=\"true\"\]\)\]\:bg_wash:hover:not([aria-pressed="true"]) {
    background: var(--colors-wash);
}

  .hover\:bd-c_humanInk:is(:hover, [data-hover]) {
    border-color: var(--colors-human-ink);
}

  .\[\&_a\:hover\]\:td_underline a:hover {
    text-decoration: underline;
}

  .hover\:bd-c_ink:is(:hover, [data-hover]) {
    border-color: var(--colors-ink);
}

  .hover\:td_none:is(:hover, [data-hover]) {
    text-decoration: none;
}

  .hover\:c_ink:is(:hover, [data-hover]) {
    color: var(--colors-ink);
}

  .hover\:c_\#fff:is(:hover, [data-hover]) {
    color: #fff;
}

  .\[\&_a\:hover\]\:tu-o_3px a:hover {
    text-underline-offset: 3px;
}

  .\[\&_a\:hover\]\:c_accent a:hover {
    color: var(--colors-accent);
}

  .\[\&\:hover\:not\(\[aria-pressed\=\"true\"\]\)\]\:c_ink:hover:not([aria-pressed="true"]) {
    color: var(--colors-ink);
}

  .hover\:trf_translate\(1px\,-1px\):is(:hover, [data-hover]) {
    transform: translate(1px,-1px);
}

  .active\:trf_translate\(-3px\,3px\):is(:active, [data-active]) {
    transform: translate(-3px,3px);
}

  .active\:trf_none:is(:active, [data-active]) {
    transform: none;
}

  .active\:cursor_grabbing:is(:active, [data-active]) {
    cursor: grabbing;
}

  .\[\&_blockquote\]\:\[\&_p\]\:c_ink2 blockquote p {
    color: var(--colors-ink2);
}

  .\[\&_aside\.note\,_\&_aside\.caution\]\:\[\&_p\]\:mt_8px aside.note p,.\[\&_aside\.note\,_\&_aside\.caution\]\:\[\&_p\]\:mt_8px aside.caution p {
    margin-top: 8px;
}

  .active\:after\:vis_hidden:is(:active, [data-active])::after {
    visibility: hidden;
}

  @media (max-width: 1100px) {
    .\[\@media_\(max-width\:_1100px\)\]\:grid-tc_repeat\(3\,_minmax\(0\,_1fr\)\) {
      grid-template-columns: repeat(3, minmax(0, 1fr));
}
    .\[\@media_\(max-width\:_1100px\)\]\:grid-tc_220px_minmax\(0\,_1fr\) {
      grid-template-columns: 220px minmax(0, 1fr);
}
    .\[\@media_\(max-width\:_1100px\)\]\:d_none {
      display: none;
}
}

  @media (max-width: 900px) {
    .\[\@media_\(max-width\:_900px\)\]\:gap_12px {
      gap: 12px;
}
    .\[\@media_\(max-width\:_900px\)\]\:bd-r_0 {
      border-right: 0;
}
    .\[\@media_\(max-width\:_900px\)\]\:bd-b_ink {
      border-bottom: var(--borders-ink);
}
    .\[\@media_\(max-width\:_900px\)\]\:gap_24px {
      gap: 24px;
}
    .\[\@media_\(max-width\:_900px\)\]\:gap_32px_0 {
      gap: 32px 0;
}
    .\[\@media_\(max-width\:_900px\)\]\:gap_16px_32px {
      gap: 16px 32px;
}
    .\[\@media_\(max-width\:_900px\)\]\:bd-b_hair {
      border-bottom: var(--borders-hair);
}
    .\[\@media_\(max-width\:_900px\)\]\:gap_0_4px {
      gap: 0 4px;
}
    .\[\@media_\(max-width\:_900px\)\]\:gap_28px {
      gap: 28px;
}
    .\[\@media_\(max-width\:_900px\)\]\:grid-tc_1fr_1fr {
      grid-template-columns: 1fr 1fr;
}
    .\[\@media_\(max-width\:_900px\)\]\:grid-tc_1fr {
      grid-template-columns: 1fr;
}
    .\[\@media_\(max-width\:_900px\)\]\:grid-tc_minmax\(0\,_1fr\) {
      grid-template-columns: minmax(0, 1fr);
}
    .\[\@media_\(max-width\:_900px\)\]\:pos_static {
      position: static;
}
    .\[\@media_\(max-width\:_900px\)\]\:flex-d_row {
      flex-direction: row;
}
    .\[\@media_\(max-width\:_900px\)\]\:flex-wrap_wrap {
      flex-wrap: wrap;
}
    .\[\@media_\(max-width\:_900px\)\]\:ml_0 {
      margin-left: var(--spacing-0);
}
    .\[\@media_\(max-width\:_900px\)\]\:h_420px {
      height: 420px;
}
    .\[\@media_\(max-width\:_900px\)\]\:pb_20px {
      padding-bottom: 20px;
}
    .\[\@media_\(max-width\:_900px\)\]\:max-w_520px {
      max-width: 520px;
}
    .\[\@media_\(max-width\:_900px\)\]\:\[\&\:nth-child\(2\)\]\:bd-r_0:nth-child(2) {
      border-right: 0;
}
    .\[\@media_\(max-width\:_900px\)\]\:\[\&\:nth-child\(n\+3\)\]\:bd-t_hair:nth-child(n+3) {
      border-top: var(--borders-hair);
}
}

  @media (max-width: 760px) {
    .\[\@media_\(max-width\:_760px\)\]\:bd-r_0 {
      border-right: 0;
}
    .\[\@media_\(max-width\:_760px\)\]\:bd-t_hair {
      border-top: var(--borders-hair);
}
    .\[\@media_\(max-width\:_760px\)\]\:bd-b_hair {
      border-bottom: var(--borders-hair);
}
    .\[\@media_\(max-width\:_760px\)\]\:grid-tc_1fr {
      grid-template-columns: 1fr;
}
    .\[\@media_\(max-width\:_760px\)\]\:d_none {
      display: none;
}
    .\[\@media_\(max-width\:_760px\)\]\:pl_0 {
      padding-left: var(--spacing-0);
}
    .\[\@media_\(max-width\:_760px\)\]\:\[\&\:first-child\]\:bd-t_0:first-child {
      border-top: 0;
}
    .\[\@media_\(max-width\:_760px\)\]\:\[\&\:last-child\]\:bd-b_0:last-child {
      border-bottom: 0;
}
}

  @media (max-width: 640px) {
    .\[\@media_\(max-width\:_640px\)\]\:p_0_16px {
      padding: 0 16px;
}
    .\[\@media_\(max-width\:_640px\)\]\:grid-c_1 {
      grid-column: 1;
}
    .\[\@media_\(max-width\:_640px\)\]\:grid-r_auto {
      grid-row: auto;
}
    .\[\@media_\(max-width\:_640px\)\]\:d_none {
      display: none;
}
    .\[\@media_\(max-width\:_640px\)\]\:grid-tc_1fr {
      grid-template-columns: 1fr;
}
    .\[\@media_\(max-width\:_640px\)\]\:ta_left {
      text-align: left;
}
    .\[\@media_\(max-width\:_640px\)\]\:right_10px {
      right: 10px;
}
    .\[\@media_\(max-width\:_640px\)\]\:left_10px {
      left: 10px;
}
    .\[\@media_\(max-width\:_640px\)\]\:bottom_10px {
      bottom: 10px;
}
    .\[\@media_\(max-width\:_640px\)\]\:w_auto {
      width: auto;
}
}

  @media (max-width: 560px) {
    .\[\@media_\(max-width\:_560px\)\]\:bd-r_0 {
      border-right: 0;
}
    .\[\@media_\(max-width\:_560px\)\]\:bd-t_hair {
      border-top: var(--borders-hair);
}
    .\[\@media_\(max-width\:_560px\)\]\:grid-tc_1fr {
      grid-template-columns: 1fr;
}
    .\[\@media_\(max-width\:_560px\)\]\:\[\&\:first-child\]\:bd-t_0:first-child {
      border-top: 0;
}
}

  @media (max-width: 480px) {
    .\[\@media_\(max-width\:_480px\)\]\:flex-d_column {
      flex-direction: column;
}
}

  @media (hover: none) {
    .\[\@media_\(hover\:_none\)\]\:d_none {
      display: none;
}
}

  @media (prefers-reduced-motion: no-preference) {
    .\[\@media_\(prefers-reduced-motion\:_no-preference\)\]\:trs_transform_\.18s_ease-out\,_opacity_\.18s_ease-out {
      transition: transform .18s ease-out, opacity .18s ease-out;
}
}

  @media (prefers-reduced-motion: no-preference) {
    @starting-style {
      .\[\@media_\(prefers-reduced-motion\:_no-preference\)\]\:\[\@starting-style\]\:trf_translateY\(8px\) {
        transform: translateY(8px);
}
      .\[\@media_\(prefers-reduced-motion\:_no-preference\)\]\:\[\@starting-style\]\:op_0 {
        opacity: 0;
}
}
}
}