@charset "UTF-8";
:root {
  --brand: var(--brand-configured, #0069b3);
  --on-brand: var(--on-brand-configured, #ffffff);
  --brand-dark: var(--brand-dark-light, color-mix(in srgb, var(--brand) 80%, #000));
  --brand-50: var(--brand-50-light, color-mix(in srgb, var(--brand) 50%, #fff));
  --brand-20: var(--brand-20-light, color-mix(in srgb, var(--brand) 20%, #fff));
  --brand-10: var(--brand-10-light, color-mix(in srgb, var(--brand) 14%, #fff));
  --brand-05: var(--brand-05-light, color-mix(in srgb, var(--brand) 6%, #fff));
  --ink: var(--ink-light, color-mix(in srgb, var(--brand) 12%, #000));
  --ink-2: var(--ink-2-light, color-mix(in srgb, var(--brand) 25%, #000));
  --muted: var(--muted-light, color-mix(in srgb, var(--brand) 50%, #000));
  --muted-2: var(--muted-2-light, color-mix(in srgb, var(--brand) 78%, #000));
  --bg: var(--bg-light, color-mix(in srgb, var(--brand) 10%, #fff));
  --panel: var(--panel-light, color-mix(in srgb, var(--brand) 2%, #fff));
  --line: var(--line-light, color-mix(in srgb, var(--brand) 20%, #fff));
  --line-2: var(--line-2-light, color-mix(in srgb, var(--brand) 30%, #fff));
  --blue: var(--brand);
  --blue-600: var(--brand-dark);
  --blue-50: var(--brand-10);
  --brand-primary: var(--brand);
  --brand-on-primary: var(--on-brand);
  --brand-soft: var(--brand-50);
  --green: #1d9e6e;
  --green-bg: #e2f5ec;
  --red: #e30613;
  --red-bg: #fde9ea;
  --amber: #ee9b1f;
  --link-color: var(--link-color-light, var(--brand));
  --link-color-panel: var(--link-color-panel-light, var(--link-color));
  --tooltip-bg: var(--tooltip-bg-light, #10203f);
  --tooltip-fg: var(--tooltip-fg-light, #ffffff);
  --button-primary-bg: var(--button-primary-bg-light, var(--brand));
  --button-primary-fg: var(--button-primary-fg-light, var(--on-brand));
  --button-primary-bg-hover: var(--button-primary-bg-hover-light, var(--brand-dark));
  --chart-primary: var(--chart-primary-light, var(--button-primary-bg));
  --chart-secondary: var(--chart-secondary-light, var(--brand-50));
  --tag-gray-bg: var(--brand-10);
  --tag-gray-ink: var(--on-accent);
  --surface-hover: var(--brand-05);
  --surface-accent: var(--brand-10);
  --surface-strong: var(--brand-20);
  --cell-a: var(--cell-a-light, color-mix(in srgb, var(--brand) 10%, #fff));
  --cell-b: var(--cell-b-light, color-mix(in srgb, var(--brand) 5%, #fff));
  --on-accent: var(--on-accent-light, #000);
  --on-accent-muted: var(--on-accent-muted-light, color-mix(in srgb, #000 72%, var(--brand)));
  --ink-hover: var(--ink-hover-light, color-mix(in srgb, var(--ink) 85%, #000));
  --table-stripe-hover: var(--brand-05);
  --table-stripe-locked: var(--table-stripe-locked-light, color-mix(in srgb, var(--brand) 4%, #fff));
  --border-hover: var(--border-hover-light, color-mix(in srgb, var(--brand) 35%, #fff));
  --border-strong: var(--border-strong-light, color-mix(in srgb, var(--brand) 45%, #fff));
  --ghost-hover-bg: var(--brand-05);
  --radius: 1rem;
  --radius-s: 0.75rem;
  --pill: 62.4375rem;
  --shadow: 0 0.0625rem 0.125rem color-mix(in srgb, var(--brand-dark) 6%, transparent), 0 0.625rem 1.75rem -0.875rem color-mix(in srgb, var(--brand-dark) 18%, transparent);
  --focus: 0 0 0 0.1875rem color-mix(in srgb, var(--brand) 35%, transparent);
  --blue-shadow: 0 0.375rem 1rem -0.5rem color-mix(in srgb, var(--brand-dark) 16%, transparent);
  --topbar-h: 3.75rem;
  --bottombar-h: 2.375rem;
}

html[data-theme=dark] {
  --brand-dark: var(--brand-dark-dark, color-mix(in srgb, var(--brand) 70%, #fff));
  --brand-50: var(--brand-50-dark, color-mix(in srgb, var(--brand) 55%, #000));
  --brand-20: var(--brand-20-dark, color-mix(in srgb, var(--brand) 30%, #000));
  --brand-10: var(--brand-10-dark, color-mix(in srgb, var(--brand) 24%, #000));
  --brand-05: var(--brand-05-dark, color-mix(in srgb, var(--brand) 18%, #000));
  --ink: var(--ink-dark, color-mix(in srgb, var(--brand) 90%, #fff));
  --ink-2: var(--ink-2-dark, color-mix(in srgb, var(--brand) 85%, #000));
  --muted: var(--muted-dark, color-mix(in srgb, var(--brand) 65%, #000));
  --muted-2: var(--muted-2-dark, color-mix(in srgb, var(--brand) 45%, #000));
  --bg: var(--bg-dark, color-mix(in srgb, var(--brand) 8%, #000));
  --panel: var(--panel-dark, color-mix(in srgb, var(--brand) 14%, #000));
  --line: var(--line-dark, color-mix(in srgb, var(--brand) 26%, #000));
  --line-2: var(--line-2-dark, color-mix(in srgb, var(--brand) 34%, #000));
  --link-color: var(--link-color-dark, var(--brand));
  --link-color-panel: var(--link-color-panel-dark, var(--link-color));
  --tooltip-bg: var(--tooltip-bg-dark, var(--ink));
  --tooltip-fg: var(--tooltip-fg-dark, #ffffff);
  --button-primary-bg: var(--button-primary-bg-dark, var(--brand));
  --button-primary-fg: var(--button-primary-fg-dark, var(--on-brand));
  --button-primary-bg-hover: var(--button-primary-bg-hover-dark, var(--brand-dark));
  --chart-primary: var(--chart-primary-dark, var(--button-primary-bg));
  --chart-secondary: var(--chart-secondary-dark, var(--brand-50));
  --cell-a: var(--cell-a-dark, color-mix(in srgb, var(--brand) 22%, #000));
  --cell-b: var(--cell-b-dark, color-mix(in srgb, var(--brand) 16%, #000));
  --on-accent: var(--on-accent-dark, var(--ink));
  --on-accent-muted: var(--on-accent-muted-dark, var(--muted));
  --ink-hover: var(--ink-hover-dark, color-mix(in srgb, var(--ink) 92%, #fff));
  --table-stripe-hover: var(--brand-05);
  --table-stripe-locked: var(--table-stripe-locked-dark, var(--brand-10));
  --border-hover: var(--border-hover-dark, color-mix(in srgb, var(--brand) 40%, #000));
  --border-strong: var(--border-strong-dark, color-mix(in srgb, var(--brand) 50%, #000));
  --ghost-hover-bg: var(--brand-05);
  --shadow: 0 0.0625rem 0.125rem rgba(0, 0, 0, .5), 0 0.625rem 1.75rem -0.875rem rgba(0, 0, 0, .65);
}

/*! modern-normalize v3.0.1 | MIT License | https://github.com/sindresorhus/modern-normalize */
/*
Document
========
*/
/**
Use a better box model (opinionated).
*/
*,
::before,
::after {
  box-sizing: border-box;
}

html {
  /* Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3) */
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.15; /* 1. Correct the line height in all browsers. */
  -webkit-text-size-adjust: 100%; /* 2. Prevent adjustments of font size after orientation changes in iOS. */
  tab-size: 4; /* 3. Use a more readable tab size (opinionated). */
}

/*
Sections
========
*/
body {
  margin: 0; /* Remove the margin in all browsers. */
}

/*
Text-level semantics
====================
*/
/**
Add the correct font weight in Chrome and Safari.
*/
b,
strong {
  font-weight: bolder;
}

/**
1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
2. Correct the odd 'em' font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
Add the correct font size in all browsers.
*/
small {
  font-size: 80%;
}

/**
Prevent 'sub' and 'sup' elements from affecting the line height in all browsers.
*/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
Tabular data
============
*/
/**
Correct table border color inheritance in Chrome and Safari. (https://issues.chromium.org/issues/40615503, https://bugs.webkit.org/show_bug.cgi?id=195016)
*/
table {
  border-color: currentcolor;
}

/*
Forms
=====
*/
/**
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
Correct the inability to style clickable types in iOS and Safari.
*/
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.
*/
legend {
  padding: 0;
}

/**
Add the correct vertical alignment in Chrome and Firefox.
*/
progress {
  vertical-align: baseline;
}

/**
Correct the cursor style of increment and decrement buttons in Safari.
*/
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
Remove the inner padding in Chrome and Safari on macOS.
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to 'inherit' in Safari.
*/
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Interactive
===========
*/
/*
Add the correct display in Chrome and Safari.
*/
summary {
  display: list-item;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

input {
  border: none;
}
input:focus {
  outline: none;
}
input::placeholder {
  opacity: 0.75;
}

p {
  margin: 0;
}

hr {
  border: none;
  height: 0.0625rem;
  margin: 0;
  width: 100%;
}

.tox-tinymce {
  border-radius: 0 !important;
  border: 0.0625rem solid #D4DDEC !important;
}
.tox:not(.tox-tinymce-inline) .tox-editor-header {
  border-bottom: 0.0625rem solid #D4DDEC !important;
  box-shadow: none !important;
}
.tox-edit-area:before {
  border-radius: 0 !important;
  border: none !important;
}

/* lato-100 - latin */
@font-face {
  font-display: swap;
  font-family: "Lato";
  font-style: normal;
  font-weight: 100;
  src: url("/build/assets/lato-v25-latin-100-Dw0I1B7H.woff2") format("woff2"), url("/build/assets/lato-v25-latin-100-Dw40n3D4.ttf") format("truetype");
}
/* lato-100italic - latin */
@font-face {
  font-display: swap;
  font-family: "Lato";
  font-style: italic;
  font-weight: 100;
  src: url("/build/assets/lato-v25-latin-100italic-T4bLkjYz.woff2") format("woff2"), url("/build/assets/lato-v25-latin-100italic-D-d-DREe.ttf") format("truetype");
}
/* lato-300 - latin */
@font-face {
  font-display: swap;
  font-family: "Lato";
  font-style: normal;
  font-weight: 300;
  src: url("/build/assets/lato-v25-latin-300-BP2wSCML.woff2") format("woff2"), url("/build/assets/lato-v25-latin-300-eB954ePo.ttf") format("truetype");
}
/* lato-300italic - latin */
@font-face {
  font-display: swap;
  font-family: "Lato";
  font-style: italic;
  font-weight: 300;
  src: url("/build/assets/lato-v25-latin-300italic-CK90s4zi.woff2") format("woff2"), url("/build/assets/lato-v25-latin-300italic-B3bJgKFB.ttf") format("truetype");
}
/* lato-regular - latin */
@font-face {
  font-display: swap;
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
  src: url("/build/assets/lato-v25-latin-regular-BEhtfm5r.woff2") format("woff2"), url("/build/assets/lato-v25-latin-regular-LMT6Cjo-.ttf") format("truetype");
}
/* lato-italic - latin */
@font-face {
  font-display: swap;
  font-family: "Lato";
  font-style: italic;
  font-weight: 400;
  src: url("/build/assets/lato-v25-latin-italic-Dc0B1559.woff2") format("woff2"), url("/build/assets/lato-v25-latin-italic-BieLA7pp.ttf") format("truetype");
}
/* lato-700 - latin */
@font-face {
  font-display: swap;
  font-family: "Lato";
  font-style: normal;
  font-weight: 700;
  src: url("/build/assets/lato-v25-latin-700-BUGMgin4.woff2") format("woff2"), url("/build/assets/lato-v25-latin-700-CJbL-VvX.ttf") format("truetype");
}
/* lato-700italic - latin */
@font-face {
  font-display: swap;
  font-family: "Lato";
  font-style: italic;
  font-weight: 700;
  src: url("/build/assets/lato-v25-latin-700italic-Jzc1y7Yy.woff2") format("woff2"), url("/build/assets/lato-v25-latin-700italic-UcvsBUA6.ttf") format("truetype");
}
/* lato-900 - latin */
@font-face {
  font-display: swap;
  font-family: "Lato";
  font-style: normal;
  font-weight: 900;
  src: url("/build/assets/lato-v25-latin-900-C3uaq3BA.woff2") format("woff2"), url("/build/assets/lato-v25-latin-900-B1bPG5r9.ttf") format("truetype");
}
/* lato-900italic - latin */
@font-face {
  font-display: swap;
  font-family: "Lato";
  font-style: italic;
  font-weight: 900;
  src: url("/build/assets/lato-v25-latin-900italic-BavPsJuJ.woff2") format("woff2"), url("/build/assets/lato-v25-latin-900italic-Bz6KgKIp.ttf") format("truetype");
}
.content-form__headline {
  font-size: 1.125rem;
  line-height: 1.5rem;
}
@media (min-width: 768px) {
  .content-form__headline {
    font-size: 1.25rem;
    line-height: 1.625rem;
  }
}

.content-form__subheadline, .backend__section-title, .modal__header {
  font-size: 1rem;
  line-height: 1.875rem;
}

.auth__label, .auth__checkbox label, .form__radio label, .csv__errors div {
  font-size: 0.875rem;
  line-height: 1.5rem;
}

.auth__role-logout-btn, .button {
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.075rem;
}

.wrap {
  margin: 0 auto;
  max-width: 96.25rem;
  padding-left: 0.625rem;
  padding-right: 0.625rem;
  width: 100%;
}
@media (min-width: 768px) {
  .wrap {
    padding-left: 1.875rem;
    padding-right: 1.875rem;
  }
}

.flex {
  display: flex;
}

.no-scroll {
  overflow-y: hidden;
}

.nowrap {
  white-space: nowrap;
}

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

.items-center {
  align-items: center;
}

.items-baseline {
  align-items: baseline;
}

.list-no-style {
  list-style: none;
}
.list-no-style li {
  margin-left: 0 !important;
}
.list li {
  margin-left: 0.9375rem;
}
.list li:not(:last-child) {
  margin-bottom: 0.625rem;
}

.flex-list {
  display: flex;
  flex-wrap: wrap;
  font-weight: 300;
  gap: 1.25rem;
  list-style: none;
}

.grid-list {
  display: grid;
  gap: 1.25rem;
  list-style: none;
  grid-template-columns: repeat(2, min-content);
}

.sticky {
  position: sticky;
  top: 1.875rem;
  transition: top 0.25s ease;
  z-index: 5;
}

.opacity-0 {
  opacity: 0;
}

.opacity-100 {
  opacity: 1;
}

.scale-95 {
  transform: scale(0.95);
}

.scale-100 {
  transform: scale(1);
}

.width-5 {
  width: 5%;
}
.width-10 {
  width: 10%;
}
.width-15 {
  width: 15%;
}
.width-20 {
  width: 20%;
}
.width-25 {
  width: 25%;
}
.width-30 {
  width: 30%;
}
.width-40 {
  width: 40%;
}
.width-50 {
  width: 50%;
}
.width-60 {
  width: 60%;
}
.width-70 {
  width: 70%;
}
.width-75 {
  width: 75%;
}
.width-80 {
  width: 80%;
}
.width-90 {
  width: 90%;
}
.width-100 {
  width: 100%;
}

.mobile {
  display: inline-block !important;
}
@media (min-width: 768px) {
  .mobile {
    display: none !important;
  }
}

.sr-only {
  position: absolute;
  width: 0.0625rem;
  height: 0.0625rem;
  padding: 0;
  margin: -0.0625rem;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

svg.icon {
  display: block;
  width: 1.125rem;
  height: 1.125rem;
  flex: none;
}

svg.icon--s {
  width: 0.9375rem;
  height: 0.9375rem;
}

:is(button, input, a):focus-visible {
  outline: none;
  box-shadow: var(--focus);
  border-radius: var(--radius-s);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
@page {
  margin: 5pt !important;
}
html {
  height: 100%;
}

body {
  background-color: var(--bg);
  color: var(--ink);
  font-family: "Lato", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.875rem;
  font-stretch: normal;
  font-style: normal;
  font-synthesis: weight;
  letter-spacing: normal;
  line-height: 1.5;
  min-width: 22.5rem;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
body.print {
  font-size: 10pt !important;
  background-color: transparent !important;
  display: block !important;
  min-height: 0 !important;
  overflow: auto !important;
  padding: 5pt !important;
}
body.print .review {
  page-break-inside: avoid;
}
body.print .review h2 {
  font-size: 12pt !important;
}
body.print .review:first-child {
  margin-top: 0 !important;
}
body.print .table__content {
  overflow-x: hidden;
}
body.print .table__content table {
  border: none !important;
}
body.print .table__content table thead tr th {
  font-size: 10pt !important;
  border-top: 0.0625rem solid #d4ddec;
}
body.print .table__content table thead tr th:first-child {
  border-left: 0.0625rem solid #d4ddec;
}
body.print .table__content table thead tr th:last-child {
  border-right: 0.0625rem solid #d4ddec;
}
body.print .table__content table tbody tr {
  background-color: transparent !important;
  page-break-inside: avoid;
  page-break-after: auto;
}
body.print .table__content table tbody tr:last-child td {
  border-bottom: 0.0625rem solid #d4ddec;
}
body.print .table__content table tbody tr td {
  padding: 0.3125rem !important;
}
body.print .table__content table tbody tr td:first-child {
  border-left: 0.0625rem solid #d4ddec;
}
body.print .table__content table tbody tr td:last-child {
  border-right: 0.0625rem solid #d4ddec;
}
body.dev:after {
  background: var(--blue);
  border: 0.0625rem solid #000000;
  bottom: 1.25rem;
  color: #ffffff;
  font-weight: 600;
  left: 1.25rem;
  opacity: 0.75;
  padding: 0.625rem 1.25rem;
  position: fixed;
  z-index: 999;
  font-size: 0.75rem;
  line-height: 1;
  content: "mobile";
}
@media (min-width: 768px) {
  body.dev:after {
    content: "tablet";
  }
}
@media (min-width: 1024px) {
  body.dev:after {
    content: "laptop";
  }
}
@media (min-width: 1280px) {
  body.dev:after {
    content: "desktop";
  }
}
@media (min-width: 1536px) {
  body.dev:after {
    content: "large";
  }
}

form {
  width: 100%;
}

a {
  color: #10203f;
  cursor: pointer;
  text-decoration: none;
}
a:hover, a:focus, a:active {
  text-decoration: underline;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

input {
  font: inherit;
}

h1 {
  margin: 0;
}

p {
  margin: 0;
}

img {
  max-width: 100%;
}

p + p {
  margin-top: 1.25rem;
}

.accordion {
  background: var(--panel);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 1.125rem;
  overflow: hidden;
}
.accordion__trigger {
  align-items: center;
  background-color: var(--button-primary-bg);
  border: none;
  color: var(--button-primary-fg);
  cursor: pointer;
  display: flex;
  gap: 0.75rem;
  justify-content: space-between;
  letter-spacing: 0.02em;
  padding: 0.875rem 1.125rem;
  text-align: left;
  transition: background 0.15s ease;
  width: 100%;
}
.accordion__trigger:hover {
  background-color: var(--button-primary-bg-hover);
}
.accordion__title {
  font-weight: 700;
  font-size: 0.875rem;
}
.accordion__icon {
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  transition: transform 0.18s ease;
}
.accordion__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.accordion__body > * {
  overflow: hidden;
}
.accordion__content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0;
  transition: padding 0.3s ease;
}
.accordion__content > .form__block:not(:last-child) {
  margin-bottom: 0;
}
.accordion__content > .form {
  display: contents;
}
.accordion--mt {
  margin-top: 1.25rem;
}
.accordion__banner-download {
  cursor: pointer;
  display: inline-block;
  line-height: 0;
  max-width: 100%;
  vertical-align: top;
}
.accordion__banner-download:focus-visible {
  outline: 0.125rem solid var(--brand);
  outline-offset: 0.125rem;
}
.accordion__img {
  display: block;
  height: auto;
  max-width: 100%;
  width: auto;
}
.accordion--initializing .accordion__body,
.accordion--initializing .accordion__content,
.accordion--initializing .accordion__icon {
  transition: none;
}
.accordion--open .accordion__body {
  grid-template-rows: 1fr;
}
.accordion--open .accordion__content {
  padding: 0.875rem 1rem 1rem;
}
.accordion:not(.accordion--open) .accordion__icon {
  transform: rotate(-180deg);
}
.accordion--static .accordion__trigger {
  cursor: default;
  pointer-events: none;
}
.accordion--static .accordion__trigger:hover {
  background-color: var(--button-primary-bg);
}
.accordion--static .accordion__icon {
  display: none;
}

.banner-preview__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.banner-preview__pill {
  align-items: center;
  background: var(--brand-10);
  border: 1px solid color-mix(in srgb, var(--brand) 25%, transparent);
  border-radius: var(--pill);
  color: var(--on-accent);
  display: inline-flex;
  font-size: 0.8125rem;
  gap: 0.25rem;
  line-height: 1.2;
  padding: 0.25rem 0.375rem 0.25rem 0.625rem;
}
.banner-preview__pill .banner-preview__pill-action:hover {
  background: color-mix(in srgb, var(--brand) 12%, transparent);
}
.banner-preview__pill--hidden {
  background: var(--brand-05);
  border: 1px dashed color-mix(in srgb, var(--ink) 28%, transparent);
  color: var(--on-accent-muted);
}
.banner-preview__pill--hidden .banner-preview__pill-action:hover {
  background: color-mix(in srgb, var(--ink) 10%, transparent);
}
.banner-preview__pill-label {
  white-space: nowrap;
}
.banner-preview__pill-action {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: var(--pill);
  color: inherit;
  cursor: pointer;
  display: inline-flex;
  flex-shrink: 0;
  height: 1.375rem;
  justify-content: center;
  padding: 0;
  width: 1.375rem;
}
.banner-preview__pill-action:hover {
  background: color-mix(in srgb, var(--brand) 12%, transparent);
}
.banner-preview__pill-action .icon {
  height: 0.875rem;
  width: 0.875rem;
}
.banner-preview__scroll {
  max-width: 100%;
  overflow: auto;
}

.banner-stage {
  color: #fff;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}
.banner-stage__grid {
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}
.banner-stage__guides {
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 6;
}
.banner-stage__guide {
  position: absolute;
}
.banner-stage__guide--vertical {
  border-left: 2px dashed transparent;
  bottom: 0;
  top: 0;
  width: 0;
}
.banner-stage__guide--horizontal {
  border-top: 2px dashed transparent;
  height: 0;
  left: 0;
  right: 0;
}
.banner-stage__element {
  box-sizing: border-box;
  cursor: move;
  position: absolute;
  touch-action: none;
  user-select: none;
  z-index: 2;
}
.banner-stage__element--selected {
  outline: 2px solid var(--brand-primary);
  outline-offset: 0;
  overflow: visible;
  z-index: 4;
}
.banner-stage__element--text:not(.banner-stage__element--selected) {
  overflow: hidden;
}
.banner-stage__element--photo {
  border-radius: 50%;
}
.banner-stage__element--photo:not(.banner-stage__element--selected) {
  overflow: hidden;
}
.banner-stage__element--logo:not(.banner-stage__element--selected) {
  overflow: hidden;
}
.banner-stage__dimensions {
  background: var(--brand-primary);
  border-radius: var(--radius-s);
  bottom: 0.25rem;
  color: #ffffff;
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1.2;
  padding: 0.125rem 0.375rem;
  pointer-events: none;
  position: absolute;
  right: 0.25rem;
  white-space: nowrap;
  z-index: 6;
}
.banner-stage__text-box {
  height: 100%;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.banner-stage__text {
  line-height: 1;
  pointer-events: none;
  position: absolute;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
  white-space: nowrap;
}
.banner-stage__text--bold {
  font-family: BannerPreviewBold, Lato, Arial, sans-serif;
  font-weight: 700;
}
.banner-stage__text--black {
  font-family: BannerPreviewBlack, Lato, Arial, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}
.banner-stage__text--regular {
  font-family: BannerPreviewRegular, Lato, Arial, sans-serif;
  font-weight: 400;
}
.banner-stage__photo {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 50%;
  height: 100%;
  pointer-events: none;
  width: 100%;
}
.banner-stage__logo-image {
  display: block;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  width: 100%;
}
.banner-stage__handle {
  background: #fff;
  border: 1px solid var(--brand-primary);
  box-sizing: border-box;
  height: 0.625rem;
  position: absolute;
  touch-action: none;
  width: 0.625rem;
  z-index: 5;
}
.banner-stage__handle--nw {
  cursor: nwse-resize;
  left: -0.3125rem;
  top: -0.3125rem;
}
.banner-stage__handle--n {
  cursor: ns-resize;
  left: 50%;
  top: -0.3125rem;
  transform: translateX(-50%);
}
.banner-stage__handle--ne {
  cursor: nesw-resize;
  right: -0.3125rem;
  top: -0.3125rem;
}
.banner-stage__handle--e {
  cursor: ew-resize;
  right: -0.3125rem;
  top: 50%;
  transform: translateY(-50%);
}
.banner-stage__handle--se {
  bottom: -0.3125rem;
  cursor: nwse-resize;
  right: -0.3125rem;
}
.banner-stage__handle--s {
  bottom: -0.3125rem;
  cursor: ns-resize;
  left: 50%;
  transform: translateX(-50%);
}
.banner-stage__handle--sw {
  bottom: -0.3125rem;
  cursor: nesw-resize;
  left: -0.3125rem;
}
.banner-stage__handle--w {
  cursor: ew-resize;
  left: -0.3125rem;
  top: 50%;
  transform: translateY(-50%);
}

.banner-stage__element:not(.banner-stage__element--selected) .banner-stage__handle {
  display: none;
}

.banner-stage__element--selected .banner-stage__handle,
.banner-stage__element:hover .banner-stage__handle {
  display: block;
}

.banner-stage__element--text:not(.banner-stage__element--selected) {
  outline: 1px dashed rgba(255, 255, 255, 0.35);
}

.banner-stage__element--photo:not(.banner-stage__element--selected),
.banner-stage__element--logo:not(.banner-stage__element--selected) {
  outline: 1px dashed rgba(255, 255, 255, 0.35);
}

.btn {
  align-items: center;
  border-radius: var(--pill);
  display: inline-flex;
  font-size: 0.75rem;
  font-weight: 700;
  gap: 0.5625rem;
  letter-spacing: 0.09em;
  padding: 0.75rem 1.375rem;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--button-primary-bg);
  color: var(--button-primary-fg);
  box-shadow: var(--blue-shadow);
}
.btn--primary:hover {
  background: var(--button-primary-bg-hover);
  text-decoration: none;
}
.btn--ghost {
  background: var(--cell-b);
  border: 0.0625rem solid var(--border-strong);
  color: var(--ink-2);
  font-weight: 400;
}
.btn--ghost:hover {
  border-color: var(--border-hover);
  background: var(--ghost-hover-bg);
  text-decoration: none;
}
.btn--strong {
  border-color: var(--border-strong);
  color: var(--ink);
  font-weight: 700;
}
.btn--text {
  color: var(--muted);
  font-weight: 400;
  padding: 0.625rem 0.75rem;
}
.btn--text:hover {
  color: var(--ink-2);
}
.btn--filtertoggle {
  display: inline-flex;
}
@media (min-width: 1024px) {
  .btn--filtertoggle {
    display: none;
  }
}
.btn .count {
  color: var(--muted);
  font-weight: 400;
}
.btn.is-disabled {
  cursor: not-allowed;
  opacity: 0.48;
  pointer-events: auto;
}
.btn--primary.is-disabled {
  background: color-mix(in srgb, var(--muted-2) 78%, var(--line-2));
  box-shadow: none;
  color: color-mix(in srgb, var(--muted-2) 78%, var(--line-2));
}
.btn--primary.is-disabled:hover {
  background: color-mix(in srgb, var(--muted-2) 78%, var(--line-2));
}

.badge {
  min-width: 1.25rem;
  padding: 0.0625rem 0.4375rem;
  border-radius: 62.4375rem;
  background: var(--blue);
  color: var(--brand-on-primary);
  font-size: 0.6875rem;
  font-weight: 700;
  text-align: center;
}

.page__head-actions {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-wrap: wrap;
}

.page__head .btn--primary {
  flex: 1;
  justify-content: center;
}
@media (min-width: 768px) {
  .page__head .btn--primary {
    flex: none;
  }
}

.schedule-export {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  gap: 0.625rem;
  flex-wrap: wrap;
  margin-bottom: 1.125rem;
}
.schedule-export__plans {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  min-width: 0;
}
.schedule-export__new {
  flex-shrink: 0;
  margin-left: auto;
}

.button {
  background-color: var(--blue);
  border: 0.0625rem solid var(--blue);
  color: var(--brand-on-primary);
  display: inline-block;
  padding: 0.25rem 0.625rem;
  text-align: center;
  text-transform: uppercase;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  width: 100%;
  border-radius: var(--radius-s);
}
@media (min-width: 768px) {
  .button {
    width: auto;
  }
}
@media (min-width: 1024px) {
  .button {
    padding: 0.5rem 0.625rem;
  }
}
.button:hover, .button:focus, .button:active {
  background-color: var(--blue-600);
  color: var(--brand-on-primary);
  text-decoration: none;
}
.button--confirm {
  background-color: var(--red);
  color: #ffffff;
  border-color: var(--red);
}
.button--confirm:hover, .button--confirm:focus, .button--confirm:active {
  color: #ffffff;
  background-color: rgb(69.5346293024%, 1.8379197172%, 5.8200791046%);
}
.button--warning {
  background-color: var(--amber);
  border-color: var(--amber);
  color: var(--ink);
}
.button--warning:hover, .button--warning:focus, .button--warning:active {
  background-color: rgb(83.1776096331%, 52.3573346351%, 6.3125864454%);
}
.button--inactive {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}
.button--form {
  transition: background-color 0.25s ease-in-out;
  text-decoration: none;
  padding: 0 2.5rem 0 1.875rem;
  line-height: 3.125rem;
  height: 3.125rem;
  display: inline-block;
  cursor: pointer;
  color: var(--brand-on-primary);
  border: none;
  background-color: var(--blue);
  border-radius: var(--radius-s);
}
.button--form:hover {
  background-color: var(--blue-600);
  color: var(--brand-on-primary);
}
.button--form input {
  display: none;
}

.faq__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 1.25rem;
  margin-bottom: 1.875rem;
}
.faq__nav .btn--primary .count {
  color: rgba(255, 255, 255, 0.85);
}
.faq__content {
  transition: opacity 0.2s ease;
}
.faq__content--fading {
  opacity: 0;
}
.faq__section {
  margin-bottom: 2.5rem;
}
.faq__section .accordion {
  background-color: var(--cell-b);
}
.faq__section .accordion__body,
.faq__section .accordion__content {
  background-color: var(--cell-b);
}
.faq__section .accordion__content {
  padding: 0;
}
.faq__section-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 0.125rem solid var(--brand);
}
.faq__answer {
  word-break: break-word;
  padding: 0.875rem 1.125rem;
  line-height: 1.7;
  background-color: var(--panel);
  color: var(--ink);
}
.faq__answer p {
  margin: 0;
}
.faq__answer p + p {
  margin-top: 1rem;
}
.faq__answer ul,
.faq__answer ol {
  margin: 0.75rem 0 0;
  padding-left: 1.2em;
}
.faq__answer a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}
.faq__answer a:hover {
  text-decoration: underline;
}
.faq__admin {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.faq__admin-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq__admin-heading {
  font-size: 1rem;
  font-weight: 600;
}

.frontend-program {
  padding: 6rem 0;
}
.frontend-program__wrap {
  max-width: var(--frontend-wrap);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.frontend-program__head {
  max-width: 52.5rem;
  margin-bottom: 2.75rem;
}
.frontend-program__eyebrow {
  display: block;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--frontend-section-fg-muted, var(--frontend-text-dim));
}
.frontend-program__headline {
  font-weight: 700;
  font-size: clamp(1.875rem, 4.6vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.frontend-program__headline p {
  margin: 0;
}
.frontend-program__text {
  margin-top: 1rem;
  max-width: 56ch;
  color: var(--frontend-section-fg-soft, var(--frontend-text-dim));
  font-size: 1.125rem;
  line-height: 1.55;
}
.frontend-program__text p {
  margin: 0;
}
.frontend-program__text p + p {
  margin-top: 1rem;
}
.frontend-program__toolbar {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  justify-content: space-between;
  margin-bottom: 1.625rem;
}
.frontend-program__toolbar-main {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
  gap: 0.875rem;
  min-width: 0;
}
.frontend-program__toolbar-side {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
}
.frontend-program__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.frontend-program__filter {
  align-items: center;
  appearance: none;
  background: var(--frontend-section-surface, #fff);
  border: 1.5px solid var(--frontend-section-surface-border, var(--frontend-line));
  border-radius: 62.4375rem;
  color: var(--frontend-section-surface-fg-muted, var(--frontend-text-dim));
  cursor: pointer;
  display: inline-flex;
  font-family: inherit;
  font-size: 0.84375rem;
  font-weight: 500;
  gap: 0.5rem;
  padding: 0.5rem 0.875rem;
  transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}
.frontend-program__filter.is-active {
  border-color: var(--frontend-section-active-bg, var(--frontend-ink));
  color: var(--frontend-section-active-bg, var(--frontend-ink));
}
.frontend-program__filter--all.is-active {
  background: var(--frontend-section-active-bg, var(--frontend-ink));
  border-color: var(--frontend-section-active-bg, var(--frontend-ink));
  color: var(--frontend-section-active-fg, #fff);
}
.frontend-program__filter-swatch {
  border-radius: 50%;
  flex-shrink: 0;
  height: 0.5625rem;
  width: 0.5625rem;
}
.frontend-program__view-toggle {
  background: var(--frontend-section-surface, #fff);
  border: 1.5px solid var(--frontend-section-surface-border, var(--frontend-line));
  border-radius: 62.4375rem;
  display: inline-flex;
  padding: 0.1875rem;
}
.frontend-program__view-toggle button {
  appearance: none;
  background: none;
  border: 0;
  border-radius: 62.4375rem;
  color: var(--frontend-section-surface-fg-muted, var(--frontend-text-dim));
  cursor: pointer;
  font-family: inherit;
  font-size: 0.84375rem;
  font-weight: 600;
  padding: 0.4375rem 1rem;
}
.frontend-program__view-toggle button.is-active {
  background: var(--frontend-section-active-bg, var(--frontend-ink));
  color: var(--frontend-section-active-fg, #fff);
}
.frontend-program__sticky-head.session-planner__sticky-head {
  background: var(--frontend-section-bg, #eef0f3);
  padding-top: 0.875rem;
  position: sticky;
  top: var(--frontend-chrome-height);
  z-index: 30;
}
.frontend-program__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.frontend-program__list-slot {
  border-top: 1px solid var(--frontend-section-border, var(--frontend-line));
  padding: 1.375rem 0;
}
.frontend-program__list-slot:first-child {
  border-top: 0;
}
.frontend-program__list-time {
  color: var(--frontend-section-fg-muted, var(--frontend-text-dim));
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}
.frontend-program__list-items {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fill, minmax(16.25rem, 1fr));
}
.frontend-program__list-item {
  background: var(--frontend-section-surface, #fff);
  border: 1px solid var(--frontend-section-surface-border, var(--frontend-line));
  border-left-width: 0.25rem;
  border-radius: 0.75rem;
  padding: 0.9375rem 1.0625rem;
  color: var(--frontend-section-surface-fg, var(--frontend-ink));
  transition: box-shadow 0.2s ease, transform 0.14s ease;
}
.frontend-program__list-item:hover {
  box-shadow: 0 0.5rem 1.625rem rgba(22, 22, 31, 0.08);
  transform: translateY(-0.125rem);
}
.frontend-program__list-item--clickable {
  cursor: pointer;
}
.frontend-program__list-stage {
  color: var(--frontend-section-surface-fg-muted, var(--frontend-text-dim));
  font-size: 0.6875rem;
  letter-spacing: 0.03em;
  margin-bottom: 0.4375rem;
}
.frontend-program__list-title {
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.12;
  margin: 0;
}
.frontend-program__list-people {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin: 0.4375rem 0 0;
}
.frontend-program__list-person-chip {
  background: var(--frontend-section-surface, #fff);
  border-color: currentColor;
  color: var(--frontend-section-surface-fg, var(--frontend-ink));
}
.frontend-program .session-planner__day-nav-btn.is-disabled {
  color: var(--muted-2);
  cursor: default;
  opacity: 0.55;
  pointer-events: none;
}
.frontend-program__overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(22, 22, 31, 0.5);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  overscroll-behavior: none;
  touch-action: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.frontend-program__overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.frontend-program__drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  width: min(28.75rem, 92vw);
  background: var(--frontend-paper);
  box-shadow: -1.25rem 0 3.75rem rgba(0, 0, 0, 0.2);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.frontend-program__drawer.is-open {
  transform: none;
}
.frontend-program__drawer-top {
  height: 0.5rem;
}
.frontend-program__drawer-close {
  position: absolute;
  top: 1.125rem;
  right: 1.25rem;
  width: 2.375rem;
  height: 2.375rem;
  border: 1.5px solid var(--frontend-line);
  border-radius: 50%;
  background: #fff;
  color: var(--frontend-text-dim);
  cursor: pointer;
  font-size: 1.125rem;
  line-height: 1;
}
.frontend-program__drawer-inner {
  padding: 1.875rem 2rem 2.5rem;
}
.frontend-program__drawer-time {
  color: var(--frontend-text-dim);
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
}
.frontend-program__drawer-stage {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  margin: 0.375rem 0 0.875rem;
}
.frontend-program__drawer-title {
  font-size: 1.625rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0.5rem 0 1rem;
}
.frontend-program__drawer-description {
  color: var(--frontend-text-dim);
  font-size: 1rem;
  line-height: 1.55;
  margin: 0 0 1.625rem;
  white-space: pre-line;
}
.frontend-program__drawer-speakers-label {
  color: var(--frontend-text-dim);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}
.frontend-program__drawer-speaker {
  align-items: flex-start;
  border-top: 1px solid var(--frontend-line);
  display: flex;
  gap: 0.8125rem;
  padding: 0.8125rem 0;
}
.frontend-program__drawer-speaker-avatar {
  align-items: center;
  border-radius: 50%;
  color: #fff;
  display: flex;
  flex: none;
  font-size: 0.9375rem;
  font-weight: 700;
  height: 2.5rem;
  justify-content: center;
  width: 2.5rem;
}
.frontend-program__drawer-speaker-name {
  font-size: 0.9375rem;
  font-weight: 600;
}
.frontend-program__drawer-speaker-company {
  color: var(--frontend-text-dim);
  font-size: 0.8125rem;
}
.frontend-program__drawer-speaker-role {
  color: var(--frontend-text-dim);
  font-size: 0.6875rem;
  letter-spacing: 0.03em;
  margin-top: 0.125rem;
}

.session-planner--readonly .session-planner__column-body {
  cursor: default;
}
.session-planner--readonly .session-planner__block,
.session-planner--readonly .session-planner__block--readonly {
  border: 0.0625rem solid var(--session-planner-block-border, rgba(0, 0, 0, 0.15));
  cursor: default;
}
.session-planner--readonly .session-planner__block--clickable {
  cursor: pointer;
  transition: filter 0.14s ease, transform 0.14s ease;
}
.session-planner--readonly .session-planner__block--clickable:hover {
  filter: brightness(1.05);
  transform: scale(1.012);
  z-index: 5;
}
.session-planner--readonly .session-planner__person-chip--readonly {
  cursor: default;
  pointer-events: none;
  text-decoration: none;
}
.session-planner--readonly .session-planner__column.is-dimmed {
  opacity: 0.22;
}

@media (max-width: 767px) {
  .frontend-program {
    padding: 4.5rem 0;
  }
  .frontend-program .session-planner__board,
  .frontend-program .session-planner__board-head {
    display: none !important;
  }
  .frontend-program__list-items {
    grid-template-columns: 1fr;
  }
  .frontend-program__list-stage {
    font-size: 0.6875rem;
    letter-spacing: 0.03em;
  }
  .frontend-program__toolbar-side {
    justify-content: space-between;
    width: 100%;
  }
  .frontend-program__view-toggle {
    display: none;
  }
}
.fchip {
  position: relative;
}
.fchip__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 0.875rem;
  border: 0.0625rem solid var(--line-2);
  border-radius: var(--pill);
  background: var(--panel);
  color: var(--ink-2);
  font-weight: 400;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.fchip__btn:hover {
  border-color: var(--border-hover);
}
.fchip__btn .icon {
  color: var(--muted);
}
.fchip__btn .chev {
  width: 0.875rem;
  height: 0.875rem;
  color: var(--muted);
  transition: transform 0.15s ease;
}
.fchip.active .fchip__btn {
  border-color: var(--brand);
  color: var(--brand);
}
.fchip.active .fchip__btn .icon {
  color: var(--brand);
}
.fchip.open .fchip__btn .chev {
  transform: rotate(180deg);
}
.fchip__count {
  min-width: 1.125rem;
  padding: 0 0.375rem;
  border-radius: 62.4375rem;
  background: var(--brand);
  color: var(--on-brand);
  font-size: 0.6875rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.125rem;
}
.fchip__menu {
  position: absolute;
  top: calc(100% + 0.375rem);
  left: 0;
  z-index: 50;
  min-width: 13.75rem;
  max-height: 18.75rem;
  overflow: auto;
  padding: 0.375rem;
  background: var(--panel);
  border: 0.0625rem solid var(--line);
  border-radius: 0.75rem;
  box-shadow: var(--shadow);
}
.fchip__menu--right {
  left: auto;
  right: 0;
}
.fchip__opt {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.5rem 0.625rem;
  border-radius: 0.5rem;
  cursor: pointer;
  color: var(--ink-2);
}
.fchip__opt:hover {
  background: var(--surface-hover);
}
.fchip__opt input {
  accent-color: var(--blue);
  width: 0.9375rem;
  height: 0.9375rem;
  margin: 0;
  flex: none;
}
.fchip__opt .opt__label {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.fchip__opt .opt__n {
  font-size: 0.71875rem;
  color: var(--muted);
}

.info-box {
  border: 0.1875rem solid var(--brand);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.25rem;
  background-color: var(--panel);
}
.info-box__headline {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--brand);
}
.info-box__content {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--ink);
}
.info-box__content p {
  margin: 0;
}
.info-box__content p + p {
  margin-top: 0.75rem;
}
.info-box__content ul,
.info-box__content ol {
  margin: 0.625rem 0 0;
  padding-left: 1.2em;
}
.info-box__content a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}
.info-box__content a:hover {
  text-decoration: underline;
}

.csv {
  margin-bottom: 0.625rem;
}
.csv .button,
.csv form {
  width: 100%;
  user-select: none;
}
.csv .button input,
.csv form input {
  display: none;
}
.csv__flex {
  display: flex;
  justify-content: space-between;
}
.csv__box {
  display: flex;
  align-content: space-between;
  flex-wrap: wrap;
  width: calc(50% - 0.9375rem) !important;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .csv__box {
    width: calc(50% - 0.9375rem);
  }
}
@supports (-ms-ime-align: auto) {
  .csv__box {
    width: calc(50% - 0.9375rem);
  }
}
.csv__box label {
  cursor: pointer;
}
.csv__box .box {
  width: 100%;
}
.csv__errors div {
  background-color: rgb(99.7778338803%, 91.5947151393%, 92.0760750652%);
  border: 0.0625rem solid #e30613;
  color: #e30613;
  margin-top: 0.625rem;
  padding: 0.625rem 1.25rem;
}
.csv__errors div:not(:last-child) {
  margin-bottom: 0.625rem;
}
.csv__errors div p {
  font-weight: 600;
}
.csv__errors div ul {
  margin-left: 0.9375rem;
}

.dashboard {
  display: grid;
  gap: 1.125rem;
}
.dashboard__row {
  display: grid;
  gap: 1.125rem;
}
@media (min-width: 1024px) {
  .dashboard__row--2col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.dashboard__system {
  display: grid;
  gap: 0.875rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .dashboard__system {
    grid-template-columns: repeat(auto-fit, minmax(17.5rem, 1fr));
  }
}
.dashboard__kpis {
  display: grid;
  gap: 0.875rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .dashboard__kpis {
    grid-template-columns: repeat(auto-fit, minmax(17.5rem, 1fr));
  }
}
.dashboard__kpi {
  padding: 1rem 1.125rem;
}
.dashboard__kpi-head {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.dashboard__kpi-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0;
}
.dashboard__kpi-body {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  flex-wrap: wrap;
}
.dashboard__panel {
  min-width: 0;
  padding: 1rem 1.125rem;
}
@media (min-width: 768px) {
  .dashboard__panel {
    padding: 1.125rem 1.25rem;
  }
}
.dashboard__panel-head {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
}
.dashboard__panel-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: 0.9375rem;
  font-weight: 900;
  letter-spacing: 0.01em;
}
.dashboard__panel-meta {
  font-size: 0.78125rem;
  font-weight: 700;
  color: var(--muted);
}
.dashboard__panel-foot {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.875rem;
}
.dashboard__panel-links {
  margin-left: auto;
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.dashboard__link {
  margin-left: auto;
  color: var(--link-color-panel);
  font-size: 0.78125rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.dashboard__link:hover {
  text-decoration: underline;
}
.dashboard__dot {
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  margin-right: 0.3125rem;
  vertical-align: 1px;
}
.dashboard__dot--blue {
  background: var(--chart-primary);
}
.dashboard__dot--green {
  background: var(--chart-secondary);
}
.dashboard__dot--red {
  background: var(--red);
}
.dashboard__dot--gray {
  background: var(--muted-2);
}
.dashboard__meter {
  margin-bottom: 1rem;
}
.dashboard__meter:last-child {
  margin-bottom: 0;
}
.dashboard__meter-top {
  display: flex;
  align-items: baseline;
  gap: 0.625rem;
  margin-bottom: 0.4375rem;
}
.dashboard__meter-top strong {
  font-size: 0.84375rem;
  font-weight: 700;
}
.dashboard__meter-top span {
  margin-left: auto;
  font-size: 0.78125rem;
  color: var(--muted);
}
.dashboard__meter-top--spaced {
  margin-bottom: 0.625rem;
}
.dashboard__bar {
  height: 0.625rem;
  border-radius: var(--pill);
  background: var(--line-2);
  overflow: hidden;
  display: flex;
}
.dashboard__bar--thin {
  height: 0.375rem;
}
.dashboard__bar-seg {
  display: block;
  height: 100%;
}
.dashboard__bar-seg--blue {
  background: var(--chart-primary);
}
.dashboard__bar-seg--green {
  background: var(--chart-secondary);
}
.dashboard__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1rem;
  margin-top: 0.4375rem;
  font-size: 0.78125rem;
  color: var(--muted);
}
.dashboard__divider {
  height: 0.0625rem;
  background: var(--line);
  margin: 1rem 0;
}
.dashboard__days-scroll {
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  padding-top: 0.25rem;
  scrollbar-color: var(--muted-2) transparent;
  scrollbar-width: thin;
}
.dashboard__days-scroll::-webkit-scrollbar {
  height: 0.625rem;
}
.dashboard__days-scroll::-webkit-scrollbar-track {
  background: transparent;
}
.dashboard__days-scroll::-webkit-scrollbar-thumb {
  background: var(--muted-2);
  border-radius: 62.4375rem;
}
.dashboard__days {
  display: flex;
  gap: 0.875rem;
  align-items: flex-end;
  height: 6.875rem;
  width: max-content;
  min-width: 100%;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .dashboard__days {
    gap: 1.375rem;
    height: 8.25rem;
  }
}
.dashboard__day {
  flex: 1 0 3.25rem;
  min-width: 3.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  height: 100%;
  justify-content: flex-end;
}
.dashboard__day-count {
  font-size: 0.78125rem;
  font-weight: 900;
  color: var(--ink-2);
}
.dashboard__day-bar {
  width: 100%;
  max-width: 4rem;
  background: var(--chart-primary);
  border-radius: 0.5rem 0.5rem 0 0;
  min-height: 0.25rem;
}
.dashboard__day-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ink-2);
}
.dashboard__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.dashboard__chips--flush {
  margin-top: 0;
}
.dashboard__chip {
  padding: 0.3125rem 0.75rem;
  border-radius: var(--pill);
  background: var(--brand-10);
  color: var(--brand-dark);
  font-size: 0.71875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.dashboard__chip--link {
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.dashboard__chip--link:hover {
  background: var(--brand-20);
  color: var(--brand-dark);
  text-decoration: none;
}
.dashboard__types {
  display: flex;
  flex-direction: column;
  gap: 0.5625rem;
}
.dashboard__type-row {
  display: grid;
  grid-template-columns: minmax(6.25rem, 9.375rem) 1fr 2.75rem;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.78125rem;
}
.dashboard__type-row span {
  color: var(--ink-2);
}
.dashboard__type-row em {
  font-style: normal;
  text-align: right;
  font-weight: 700;
  color: var(--muted);
}
@media (min-width: 768px) {
  .dashboard__type-row {
    grid-template-columns: 9.375rem 1fr 2.75rem;
  }
}
.dashboard__type-row--compact {
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
}
.dashboard__type-row--compact em {
  justify-self: end;
  min-width: 1.75rem;
}
@media (min-width: 768px) {
  .dashboard__type-row--compact {
    grid-template-columns: 1fr auto;
  }
}
.dashboard__donut {
  width: 6.25rem;
  height: 6.25rem;
  flex: none;
}
@media (min-width: 768px) {
  .dashboard__donut--kpi {
    width: 6.875rem;
    height: 6.875rem;
  }
}
.dashboard__donut circle {
  fill: none;
  stroke-width: 16;
}
.dashboard__donut-track {
  stroke: var(--line-2);
}
.dashboard__donut-seg {
  stroke: var(--chart-primary);
  stroke-linecap: round;
}
.dashboard__donut-seg--green {
  stroke: var(--chart-secondary);
}
.dashboard__donut text {
  font-family: inherit;
  fill: var(--ink);
  text-anchor: middle;
}
.dashboard__donut-big {
  font-size: 1.25rem;
  font-weight: 900;
}
@media (min-width: 768px) {
  .dashboard__donut-big {
    font-size: 1.375rem;
  }
}
.dashboard__donut-sml {
  font-size: 0.65625rem;
  fill: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.dashboard__donut-legend {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.78125rem;
  color: var(--ink-2);
  min-width: 0;
  flex: 1;
}
.dashboard__donut-legend b {
  font-weight: 900;
}

.form__block:not(:last-child) {
  margin-bottom: 0.5rem;
}
.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form__group:not(:last-child) {
  margin-bottom: 0.5rem;
}
.form__group .form__block {
  margin-bottom: 0;
}
.form__row {
  align-items: flex-start;
  display: grid;
  gap: 0.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .form__row {
    align-items: stretch;
    gap: 0.5rem 0.75rem;
    grid-template-columns: 18.75rem 1fr;
  }
}
.form__row + .form__row {
  margin-top: 0.375rem;
}
@media (min-width: 768px) {
  .form__row + .form__row {
    margin-top: 0;
  }
}
.form__block:has(.form__input) .form__label, .form__block:has(.form__select) .form__label, .form__block:has(.form__combobox) .form__label, .form__block:has(.form__range) .form__label {
  align-items: center;
  min-height: 2.875rem;
  padding: 0.75rem 1rem;
}
@media (min-width: 1024px) {
  .form__block:has(.form__range) .form__row {
    align-items: center;
  }
}
.form__block:has(.form__range) .form__value--edit {
  align-items: center;
  min-height: 2.875rem;
}
.form__block:has(.form__textarea) .form__label {
  align-items: flex-start;
  min-height: 0;
  padding: 0.5625rem 0.875rem;
}
@media (min-width: 768px) {
  .form__block:has(.form__textarea) .form__label {
    padding: 0.75rem 1rem;
  }
}
.form__block:has(.accordion__banner-download) .form__label {
  align-items: flex-start;
  align-self: stretch;
  min-height: 0;
}
.form__block:has(.accordion__banner-download) .form__value--view {
  align-items: flex-start;
  background: none;
  background-color: transparent;
  min-height: 0;
  padding: 0;
}
.form__label {
  align-items: flex-start;
  align-self: stretch;
  background-color: var(--cell-a);
  border: 0.0625rem solid var(--line-2);
  border-radius: 0.625rem;
  color: var(--on-accent);
  display: flex;
  font-size: 0.84375rem;
  font-weight: 700;
  gap: 0.625rem;
  justify-content: space-between;
  min-height: 2.875rem;
  padding: 0.75rem 1rem;
  width: 100%;
}
.form__label-text {
  flex: 1;
  min-width: 0;
}
.form__label-text label,
.form__label-text > span {
  display: inline;
  font-weight: 700;
  line-height: 1.45;
}
.form__required {
  color: var(--red);
  margin-left: 0.0625rem;
}
.form__required-hint {
  color: var(--muted);
  font-size: 0.8125rem;
  margin: 0 0 0.625rem;
  width: 100%;
}
.form__label-tooltip {
  align-items: center;
  align-self: flex-start;
  background: none;
  border: 0;
  color: var(--muted);
  cursor: help;
  display: inline-flex;
  flex-shrink: 0;
  margin-top: -0.09375rem;
  padding: 0;
  transition: color 0.15s ease;
}
.form__label-tooltip .icon {
  height: 1.375rem;
  width: 1.375rem;
}
.form__label-tooltip:hover {
  color: var(--blue);
}
.form__display-value {
  color: var(--ink-2);
  font-size: 0.84375rem;
  width: 100%;
}
.form__display-value:not(.mail-preview) a {
  color: var(--link-color);
  font-weight: 700;
  text-decoration: none;
}
.form__display-value:not(.mail-preview) a:hover {
  text-decoration: underline;
}
.form__display-value--plain {
  align-self: flex-start;
  display: block;
  line-height: 1.75;
  padding-bottom: 0.8125rem;
  padding-top: 0.8125rem;
  white-space: pre-wrap;
  word-break: break-word;
}
.form__display-value--html {
  width: 100%;
}
.form__display-value--html a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}
.form__display-value--html a:hover {
  text-decoration: underline;
}
.form__display-value--email {
  box-sizing: border-box;
  color: #000000;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  width: 100%;
}
.form__display-value--email:not(.mail-preview) a {
  color: #ee9b1f;
  font-weight: 700;
  text-decoration: underline;
}
.form__display-value--email:not(.mail-preview) a:hover {
  text-decoration: underline;
}
.form__display-value--email:not(.mail-preview) p,
.form__display-value--email:not(.mail-preview) ul {
  background: none;
  border: none;
  box-shadow: none;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}
.form__display-value--email:not(.mail-preview) p + p {
  margin-top: 1.25rem;
}
.form__display-value--email:not(.mail-preview) ul {
  list-style: disc;
  margin: 0.625rem 0 0.625rem 0.9375rem;
}
.form__display-value--email:not(.mail-preview) h2 {
  background: none;
  color: #10203f;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 0.625rem;
}
.form__display-value--email:not(.mail-preview) h2:not(:first-child) {
  margin-top: 1.875rem;
}
.form__display-value--email:not(.mail-preview) hr {
  background-color: var(--brand-dark);
  border: none;
  height: 0.0625rem;
  margin: 1.25rem 0;
  width: 100%;
}
.form .dash {
  color: var(--muted-2);
}
.form__value {
  align-items: flex-start;
  color: var(--ink-2);
  display: flex;
  font-size: 0.84375rem;
  width: 100%;
}
.form__value--view, .form__value--text {
  align-items: center;
  background-color: var(--cell-b);
  border-radius: 0.625rem;
  min-height: 2.875rem;
  padding: 0.75rem 1rem;
}
.form__value--view .form__display-value--plain, .form__value--text .form__display-value--plain {
  padding-bottom: 0;
  padding-top: 0;
}
.form__value--view:has(.form__display-value--email), .form__value--view:has(.mail-preview), .form__value--text:has(.form__display-value--email), .form__value--text:has(.mail-preview) {
  align-items: flex-start;
  background-color: var(--cell-b);
  box-sizing: border-box;
  max-width: 100%;
  padding: 1.875rem;
  width: 50rem !important;
}
.form__value--view:has(.mail-preview), .form__value--text:has(.mail-preview) {
  background-color: var(--panel);
  padding: 0;
}
.form__value--text {
  align-items: flex-start;
  display: block;
  line-height: 1.75;
}
.form__value--edit {
  background: none;
  min-height: 0;
  padding: 0;
}
.form__value--html {
  background-color: transparent !important;
  padding: 0 !important;
}
.form__value--plain {
  align-items: flex-start;
  background: none;
  min-height: 0;
  padding: 0;
}
.form__value--mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.8125rem;
  line-height: 1.5;
  word-break: break-all;
}
.form__value .tinymce-content,
.form__value .tinymce,
.form__value .tox-tinymce {
  max-width: 100% !important;
  width: 100% !important;
}
.form__value--email .tinymce-content,
.form__value--email .tinymce,
.form__value--email .tox-tinymce {
  width: 50rem !important;
}
.form__checkboxes {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  padding: 0;
}
@media (min-width: 768px) {
  .form__checkboxes {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.25rem;
  }
}
@media (min-width: 1024px) {
  .form__block--checkbox .form__row, .form__block--radio .form__row {
    align-items: center;
  }
}
@media (min-width: 1024px) {
  .form__block--checkbox .form__label, .form__block--radio .form__label {
    align-self: center;
  }
}
.form__block--checkbox .form__value--plain, .form__block--radio .form__value--plain {
  align-items: center;
}
.form__block--consent-user .form__row {
  align-items: center;
}
.form__block--consent-user .form__label {
  align-self: center;
}
.form__block--consent-user .form__value--plain {
  align-items: center;
}
.form__consent-user {
  align-items: center;
  display: flex;
  gap: 0.75rem;
  width: 100%;
}
.form__consent-user-text {
  flex: 1;
  font-size: 0.84375rem;
  line-height: 1.5;
  min-width: 0;
}
@media (min-width: 768px) {
  .form__consent-user-text {
    font-size: 0.875rem;
  }
}
.form__consent-user-text a {
  text-decoration: underline;
}
.form__consent-user-text p {
  margin: 0 0 0.5rem;
}
.form__consent-user-text p:last-child {
  margin-bottom: 0;
}
.form__checkbox-item {
  align-items: center;
  display: flex;
  gap: 0.5rem;
}
.form__checkbox-label {
  font-size: 0.84375rem;
  line-height: 1.5;
  cursor: pointer;
}
@media (min-width: 768px) {
  .form__checkbox-label {
    font-size: 0.875rem;
  }
}
.form__checkbox-label a {
  text-decoration: underline;
}
.form__checkbox-field {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.form__checkbox-wrap {
  display: inline-flex;
  flex-shrink: 0;
  height: 1.375rem;
  position: relative;
  width: 1.375rem;
}
.form__checkbox {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  margin: 0;
  z-index: 1;
}
.form__checkbox:checked + .form__checkbox-box {
  background-color: var(--button-primary-bg);
  border-color: var(--button-primary-bg);
  color: var(--button-primary-fg);
}
.form__checkbox:checked + .form__checkbox-box svg,
.form__checkbox:checked + .form__checkbox-box .icon {
  display: block;
}
.form__checkbox-box {
  align-items: center;
  background-color: var(--panel);
  border: 0.0625rem solid var(--line-2);
  border-radius: 0.375rem;
  color: #ffffff;
  cursor: pointer;
  display: inline-grid;
  flex-shrink: 0;
  height: 1.375rem;
  justify-content: center;
  place-items: center;
  width: 1.375rem;
}
.form__checkbox-box svg,
.form__checkbox-box .icon {
  display: none;
  height: 0.875rem;
  width: 0.875rem;
}
.form__checkbox-box:hover {
  border-color: var(--border-hover);
}
.form__checkbox-view {
  align-items: center;
  background-color: var(--bg);
  border: 0.0625rem solid var(--line-2);
  border-radius: 0.375rem;
  color: var(--ink-2);
  display: inline-grid;
  flex-shrink: 0;
  height: 1.375rem;
  justify-content: center;
  place-items: center;
  pointer-events: none;
  width: 1.375rem;
}
.form__checkbox-view svg,
.form__checkbox-view .icon {
  display: none;
  height: 0.875rem;
  width: 0.875rem;
}
.form__checkbox-view--checked {
  background-color: var(--cell-b);
  border-color: var(--line-2);
  color: var(--ink-2);
}
.form__checkbox-view--checked svg,
.form__checkbox-view--checked .icon {
  display: block;
}
.form__checkbox-view--success {
  background-color: #1d9e6e;
  border-color: #1d9e6e;
  color: #ffffff;
}
.form__checkbox-view--success svg,
.form__checkbox-view--success .icon {
  display: block;
}
.form__checkbox-view--clickable {
  background-color: var(--panel);
  pointer-events: all;
  cursor: pointer;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}
.form__checkbox-view--clickable:hover {
  border-color: var(--brand);
  background-color: var(--brand-10);
  color: var(--on-accent);
}
.form__radio {
  align-items: flex-start;
  display: flex;
  width: 100%;
}
.form__radio label {
  font-weight: 400;
}
.form__radio label.has-error {
  color: #e30613;
}
.form__radio label.has-error a {
  color: #e30613;
  text-decoration: underline;
}
.form__radio input {
  margin: 0.5rem 0.3125rem 0 0;
}
.form__radio-group {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1.25rem;
  padding: 0;
}
.form__radio-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.form__radio-wrap {
  position: relative;
  display: inline-flex;
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}
.form__radio-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  margin: 0;
  z-index: 1;
}
.form__radio-input:checked + .form__radio-box {
  border-color: var(--button-primary-bg);
}
.form__radio-input:checked + .form__radio-box::after {
  opacity: 1;
}
.form__radio-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border: 0.125rem solid var(--border-strong);
  border-radius: 50%;
  background-color: var(--panel);
  cursor: pointer;
  flex-shrink: 0;
}
.form__radio-box::after {
  content: "";
  display: block;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: var(--button-primary-bg);
  opacity: 0;
  transition: opacity 0.15s ease;
}
.form__radio-box:hover {
  border-color: var(--border-hover);
}
.form__radio-label {
  font-size: 0.84375rem;
  line-height: 1.5;
  cursor: pointer;
}
@media (min-width: 768px) {
  .form__radio-label {
    font-size: 0.875rem;
  }
}
.form__radio-view {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border: 0.125rem solid #69769a;
  border-radius: 50%;
  background-color: var(--cell-b);
  flex-shrink: 0;
}
.form__radio-view--checked {
  border-color: #69769a;
}
.form__radio-view--checked::after {
  content: "";
  display: block;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: #69769a;
}
.form__combobox {
  position: relative;
  width: 100%;
  align-self: stretch;
}
.form__combobox-input {
  background-image: none;
  cursor: text;
  padding-right: 1rem;
}
.form__combobox-input::placeholder {
  opacity: 1;
}
.form__combobox:not(.form__combobox--open) .form__combobox-input::placeholder {
  color: var(--ink-2);
}
.form__combobox--open .form__combobox-input::placeholder {
  color: var(--muted-2);
}
.form__combobox--open .form__combobox-input {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.form__combobox-list {
  position: absolute;
  top: calc(100% + 0.0625rem);
  left: 0;
  right: 0;
  z-index: 110;
  max-height: 18.75rem;
  overflow-y: auto;
  margin: -0.0625rem 0 0;
  padding: 0;
  list-style: none;
  background-color: var(--panel);
  border: 0.0625rem solid var(--line-2);
  border-top: none;
  border-radius: 0 0 0.625rem 0.625rem;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.08);
}
.form__combobox-option {
  padding: 0.75rem 1rem;
  cursor: pointer;
  font-size: 0.84375rem;
  line-height: 1.45;
  color: var(--ink-2);
}
.form__combobox-option--highlighted, .form__combobox-option:hover {
  background-color: var(--cell-b);
}
.form__combobox-option--selected {
  font-weight: 700;
}
.form__combobox-option--empty {
  color: var(--muted-2);
  cursor: default;
}
.form__combobox-option--empty:hover {
  background-color: transparent;
}
.form__input, .form__select, .form__textarea {
  appearance: none;
  background-color: var(--panel);
  border: 0.0625rem solid var(--line-2);
  border-radius: 0.625rem;
  box-sizing: border-box;
  color: var(--ink-2);
  font: inherit;
  font-size: 0.84375rem;
  line-height: 1.45;
  margin: 0;
  outline: none;
  user-select: text;
  width: 100%;
}
.form__input::placeholder, .form__select::placeholder, .form__textarea::placeholder {
  color: var(--muted-2);
}
.form__input:focus, .form__select:focus, .form__textarea:focus {
  border-color: var(--blue);
  box-shadow: var(--focus);
  outline: none;
}
.form__input[readonly], .form__select[readonly], .form__textarea[readonly] {
  background-color: var(--panel);
  border-color: var(--line-2);
  color: var(--ink-2);
  cursor: not-allowed;
}
@media (min-width: 768px) {
  .form__input[readonly], .form__select[readonly], .form__textarea[readonly] {
    background-color: var(--cell-b);
    border-color: transparent;
  }
}
.form__input, .form__select {
  min-height: 2.875rem;
  padding: 0.75rem 1rem;
}
.form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2369769a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-position: right 0.875rem center;
  background-repeat: no-repeat;
  background-size: 1rem;
  padding-right: 2.5rem;
}
.form__textarea {
  min-height: 7.5rem;
  padding: 0.75rem 1rem;
  resize: vertical;
}
.form__color {
  align-items: center;
  display: flex;
  gap: 0.75rem;
  width: 100%;
}
.form__color-picker {
  appearance: none;
  background: none;
  border: 0.0625rem solid var(--line-2);
  border-radius: 0.625rem;
  cursor: pointer;
  flex: none;
  height: 2.875rem;
  padding: 0.25rem;
  width: 2.875rem;
}
.form__color-picker::-webkit-color-swatch-wrapper {
  padding: 0;
}
.form__color-picker::-webkit-color-swatch {
  border: none;
  border-radius: 0.375rem;
}
.form__color-picker::-moz-color-swatch {
  border: none;
  border-radius: 0.375rem;
}
.form__color-picker:focus {
  border-color: var(--blue);
  box-shadow: var(--focus);
  outline: none;
}
.form__color-value-wrap {
  align-items: stretch;
  display: flex;
  flex: 1;
  min-width: 0;
}
.form__color-value-wrap:focus-within .form__color-prefix {
  border-color: var(--blue);
}
.form__color-prefix {
  align-items: center;
  background-color: var(--cell-a);
  border: 0.0625rem solid var(--line-2);
  border-radius: 0.625rem 0 0 0.625rem;
  border-right: 0;
  color: var(--muted);
  display: flex;
  flex: none;
  font-size: 0.84375rem;
  font-weight: 700;
  justify-content: center;
  min-height: 2.875rem;
  padding: 0 0.75rem;
}
.form__color-value {
  border-radius: 0 0.625rem 0.625rem 0;
  flex: 1;
  letter-spacing: 0.04em;
  min-width: 0;
  text-transform: uppercase;
}
.form__color-value:focus {
  position: relative;
  z-index: 1;
}
.form__color-display {
  align-items: center;
  display: inline-flex;
  gap: 0.625rem;
}
.form__color-swatch {
  border: 0.0625rem solid var(--line-2);
  border-radius: 0.375rem;
  flex: none;
  height: 1.5rem;
  width: 1.5rem;
}
.form__range {
  align-items: center;
  display: flex;
  gap: 0.75rem;
  min-height: 2.875rem;
  width: 100%;
}
.form__range-input {
  appearance: none;
  background: linear-gradient(to right, var(--blue) var(--range-progress, 0%), rgb(88%, 88%, 88%) var(--range-progress, 0%));
  border-radius: 62.4375rem;
  cursor: pointer;
  flex: 1;
  height: 1.125rem;
  margin: 0;
  min-width: 0;
  padding: 0;
}
.form__range-input::-webkit-slider-runnable-track {
  background: transparent;
  height: 0.375rem;
}
.form__range-input::-webkit-slider-thumb {
  appearance: none;
  background: var(--blue);
  border: 0.125rem solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 0.0625rem 0.1875rem rgba(0, 0, 0, 0.18);
  cursor: pointer;
  height: 1.125rem;
  margin-top: 0;
  width: 1.125rem;
}
.form__range-input::-moz-range-track {
  background: transparent;
  border: 0;
  height: 0.375rem;
}
.form__range-input::-moz-range-thumb {
  background: var(--blue);
  border: 0.125rem solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 0.0625rem 0.1875rem rgba(0, 0, 0, 0.18);
  cursor: pointer;
  height: 1.125rem;
  width: 1.125rem;
}
.form__range-input:focus {
  outline: none;
}
.form__range-input:focus::-webkit-slider-thumb {
  box-shadow: var(--focus);
}
.form__range-input:focus::-moz-range-thumb {
  box-shadow: var(--focus);
}
.form__range-value {
  align-self: center;
  color: var(--muted);
  flex: none;
  font-size: 0.84375rem;
  font-weight: 700;
  line-height: 1;
  min-width: 2.75rem;
  text-align: right;
}
.form__actions {
  width: 100%;
}
.form__actions > div button {
  margin-bottom: 0.625rem;
}
.form__actions > div {
  margin-bottom: 0.625rem;
}
@media (min-width: 768px) {
  .form__actions > div {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    margin-bottom: 0;
  }
  .form__actions > div button {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .form__actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    justify-content: space-between;
  }
}
.form__actions--top {
  background: var(--bg);
  display: grid;
  gap: 0.5rem;
  grid-auto-rows: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 0.625rem;
  padding: 0.625rem 1rem 0.5rem;
  position: static;
  top: auto;
  transition: box-shadow 0.15s ease;
  z-index: 40;
}
.form__actions--top.stuck {
  box-shadow: none;
}
.form__actions--top > div {
  display: contents;
}
.form__actions--top .btn {
  align-items: center;
  display: inline-flex;
  font-size: 0.59375rem;
  gap: 0.375rem;
  height: 2.625rem;
  justify-content: center;
  letter-spacing: 0.05em;
  line-height: 1;
  min-height: 2.625rem;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  padding: 0 0.5rem;
  text-align: center;
  white-space: nowrap;
  width: 100% !important;
}
.form__actions--top .btn:not(:last-child) {
  margin-bottom: 0;
}
.form__actions--top .btn .icon {
  flex-shrink: 0;
  height: 1rem;
  width: 1rem;
}
.form__actions--top .btn span {
  display: inline;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 1024px) {
  .form__actions--top {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    grid-auto-rows: unset;
    grid-template-columns: unset;
    justify-content: space-between;
    margin-bottom: 0.875rem;
    padding: 1.125rem 1rem 0.875rem;
    position: sticky;
    top: var(--topbar-h, 3.75rem);
  }
  .form__actions--top.stuck {
    box-shadow: 0 0.875rem 1rem -0.875rem rgba(16, 32, 63, 0.32);
  }
  .form__actions--top > div {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    margin-bottom: 0;
  }
  .form__actions--top .btn {
    font-size: 0.75rem;
    gap: 0.5625rem;
    height: auto;
    letter-spacing: 0.09em;
    line-height: normal;
    min-height: 0;
    padding: 0.75rem 1.375rem;
    width: auto !important;
  }
}
.form__actions .button,
.form__actions .btn {
  width: 100% !important;
}
.form__actions .button:not(:last-child),
.form__actions .btn:not(:last-child) {
  margin-bottom: 0.625rem;
}
@media (min-width: 768px) {
  .form__actions .button,
  .form__actions .btn {
    width: auto !important;
  }
  .form__actions .button:not(:last-child),
  .form__actions .btn:not(:last-child) {
    margin-bottom: 0;
  }
}
.form__buttons {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.form__image-upload-row {
  align-items: flex-start;
  display: flex;
  gap: 0.5rem;
}
.form__image-zone {
  position: relative;
  display: inline-block;
  height: 12.5rem;
  width: auto;
  cursor: pointer;
  border: 0.125rem dashed var(--line-2);
  overflow: hidden;
  transition: border-color 0.15s ease;
}
.form__image-zone:hover {
  border-color: var(--blue);
}
.form__image-zone-inner {
  position: absolute;
  inset: 0;
}
.form__image-zone-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.form__image-zone-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ececef;
  color: var(--muted);
  font-size: 0.8125rem;
  text-align: center;
  padding: 0.625rem;
}
.form__image-zone--fixed-size {
  height: auto;
  max-width: 100%;
}
.form__image-zone--fixed-size .form__image-zone-inner {
  align-items: center;
  display: flex;
  justify-content: center;
}
.form__image-zone--fixed-size .form__image-zone-img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}
.form__image-zone--free {
  height: auto;
  min-width: 12.5rem;
}
.form__image-zone--free .form__image-zone-inner {
  position: relative;
  inset: unset;
}
.form__image-zone--free .form__image-zone-img {
  max-height: 12.5rem;
  height: auto;
  width: auto;
  object-fit: unset;
}
.form__image-zone--free .form__image-zone-placeholder {
  position: relative;
  inset: unset;
  height: 12.5rem;
  width: 12.5rem;
}
.form__image-remove {
  align-items: center;
  background-color: rgba(0, 0, 0, 0.6);
  border: none;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  font-size: 0.875rem;
  height: 1.375rem;
  justify-content: center;
  line-height: 1;
  padding: 0;
  transition: background-color 0.15s ease;
  width: 1.375rem;
}
.form__image-remove:hover {
  background-color: #e30613;
}
.form__image-remove--aside {
  flex: none;
  margin-top: 0.25rem;
  position: static;
}
.form__image-preview--view {
  background-color: var(--panel);
  border: 0.125rem solid #d4ddec;
  display: block;
  object-fit: contain;
}
.form__file-upload {
  width: 100%;
}
.form__file-link {
  color: var(--link-color-panel);
  text-decoration: underline;
}
.form__file-link:hover, .form__file-link:focus {
  color: var(--ink-hover);
}
.form__file-zone {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.625rem;
  width: 100%;
  height: 100%;
  min-height: 2.625rem;
  padding: 0.625rem;
  background-color: var(--panel);
  border: 0.0625rem solid var(--brand);
  cursor: pointer;
  color: var(--ink);
  transition: border-color 0.15s ease;
}
.form__file-zone:hover {
  border-color: var(--line-2);
}
.form__file-zone--selected {
  background-color: var(--brand-10);
  color: var(--on-accent);
  cursor: pointer;
}
.form__file-zone--selected:hover {
  border-color: var(--brand);
}
.form__file-zone-placeholder {
  font-size: 0.875rem;
  color: #69769a;
}
.form__file-zone-icon {
  flex-shrink: 0;
  color: var(--blue);
  display: flex;
  align-items: center;
}
.form__file-zone-name {
  word-break: break-all;
  text-decoration: none;
}
.form__file-zone-name[href] {
  text-decoration: underline;
}
.form__file-zone-name[href]:hover {
  color: var(--blue);
}
.form__file-zone-remove {
  flex-shrink: 0;
  width: 1.375rem;
  height: 1.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  border: none;
  font-size: 0.875rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  transition: background-color 0.15s ease;
}
.form__file-zone-remove:hover {
  background-color: #e30613;
}
.form__file-progress {
  position: relative;
  width: 100%;
  min-height: 2.625rem;
  border: 0.0625rem solid var(--blue);
  background-color: var(--panel);
  overflow: hidden;
}
.form__file-progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background-color: var(--blue);
  transition: width 0.2s ease;
}
.form .form__display-value:not(.form__display-value--email) {
  font-size: 0.84375rem;
  font-weight: 400;
  line-height: 1.45;
}
.form .form__display-value--plain:not(.form__display-value--email) {
  padding-bottom: 0.75rem;
  padding-top: 0.75rem;
}
.form__file-progress-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: var(--ink);
  z-index: 1;
}

.form__copy-value {
  align-items: start;
  background: none;
  border: 0;
  color: inherit;
  cursor: pointer;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: minmax(0, 1fr) auto;
  max-width: 100%;
  padding: 0;
  text-align: left;
  width: 100%;
}
.form__copy-value-text {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.8125rem;
  grid-column: 1;
  line-height: 1.5;
  min-width: 0;
  word-break: break-all;
}
.form__copy-value-icon {
  grid-column: 2;
  grid-row: 1;
  line-height: 0;
}
.form__copy-value-icon .icon {
  display: block;
  height: 1.125rem;
  width: 1.125rem;
}
.form__copy-value:hover .icon, .form__copy-value:focus-visible .icon {
  color: var(--blue);
}

.tooltip-bubble {
  background-color: var(--tooltip-bg);
  border: 0.0625rem solid var(--tooltip-bg);
  border-radius: 0.5rem;
  box-shadow: var(--shadow);
  box-sizing: border-box;
  color: var(--tooltip-fg);
  font-size: 0.78125rem;
  font-weight: 400;
  line-height: 1.4;
  max-width: 17.5rem;
  opacity: 0;
  padding: 0.4375rem 0.625rem;
  pointer-events: none;
  position: fixed;
  transition: opacity 0.15s ease;
  z-index: 1000;
}
.tooltip-bubble.is-visible {
  opacity: 1;
}

.form__branding-previews {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.form__branding-preview {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.form__branding-preview-label {
  color: var(--muted);
  font-size: 0.78125rem;
  font-weight: 700;
}

.form__branding-preview-image {
  background: var(--panel);
  border: 0.0625rem solid var(--line-2);
  border-radius: 0.5rem;
  max-height: 5.3125rem;
  max-width: 21.25rem;
  object-fit: contain;
  padding: 0.5rem;
}
.form__branding-preview-image--favicon {
  height: 2rem;
  max-height: 2rem;
  max-width: 2rem;
  padding: 0.25rem;
  width: 2rem;
}

.form--frontend-settings .form__textarea {
  min-height: 3.75rem;
}
.form--frontend-settings .accordion__content > .btn {
  align-self: flex-start;
  display: inline-flex;
  width: auto !important;
}

.mail-preview {
  background-color: var(--bg);
  color: var(--ink);
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  max-width: 100%;
  width: 632px;
}
.mail-preview a {
  color: var(--brand);
  text-decoration: underline;
}
.mail-preview p, .mail-preview ul, .mail-preview ol {
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 22px 0;
}
.mail-preview p:last-child, .mail-preview ul:last-child, .mail-preview ol:last-child {
  margin-bottom: 0;
}
.mail-preview h2 {
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 16px 0;
}
.mail-preview ul, .mail-preview ol {
  padding-left: 20px;
}
.mail-preview ul {
  list-style: disc;
}
.mail-preview img {
  border: 0;
  height: auto;
  max-width: 100%;
}
.mail-preview .mail-card {
  background-color: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
}
.mail-preview .mail-logo {
  height: auto;
  max-height: 85px;
  max-width: 340px;
  width: auto;
}
.mail-preview .mail-footer {
  font-size: 14px;
  line-height: 1.7;
}
.mail-preview .mail-footer a {
  color: var(--brand);
  text-decoration: none;
}
.mail-preview .mail-copyright {
  font-size: 12px;
}
.mail-preview .button,
.mail-preview .mail-cta-button {
  background-color: var(--brand);
  border-radius: 10px;
  color: var(--on-brand);
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  padding: 14px 30px;
  text-align: center;
  text-decoration: none;
  text-transform: none;
}
.mail-preview .mail-button td {
  background-color: var(--brand);
  border-radius: 10px;
}
.mail-preview .mail-button a {
  border-radius: 10px;
  color: var(--on-brand);
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  padding: 14px 30px;
  text-decoration: none;
}

.legend div:not(:last-child) {
  margin-bottom: 0.3125rem;
}
@media (min-width: 768px) {
  .legend div:not(:last-child) {
    margin-bottom: 0;
  }
}
.legend div span:first-child {
  font-weight: 700;
}
.legend div span {
  display: block;
}
@media (min-width: 1024px) {
  .legend div span {
    display: inline-block;
  }
  .legend div span:first-child {
    font-weight: 400;
  }
}

@keyframes fadeOutMessage {
  from {
    opacity: 1;
    visibility: visible;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}
.message {
  border-radius: 0.625rem;
  box-sizing: border-box;
  font-size: 0.84375rem;
  font-weight: 400;
  line-height: 1.45;
  margin-top: 0.375rem;
  padding: 0.75rem 1rem;
  width: 100%;
}
.message--error {
  background-color: var(--red-bg);
  border: 0.0625rem solid rgba(227, 6, 19, 0.22);
  color: var(--red);
}
.message--info {
  background-color: var(--brand-10);
  border: 0.0625rem solid color-mix(in srgb, var(--brand) 25%, transparent);
  color: var(--on-accent);
}
.message--success {
  background-color: var(--green-bg);
  border: 0.0625rem solid rgba(29, 158, 110, 0.22);
  color: var(--green);
}
.message--warning {
  background-color: #fef3e2;
  border: 0.0625rem solid rgba(238, 155, 31, 0.35);
  color: #9a6408;
}
.message--spaced {
  margin-bottom: 1rem;
}
.message__style--bar {
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-name: fadeOutMessage;
  border: none;
  border-radius: 0.625rem;
  bottom: 1.5rem;
  box-shadow: var(--shadow);
  color: #ffffff;
  font-size: 0.84375rem;
  font-weight: 700;
  left: 50%;
  line-height: 1.45;
  margin-top: 0;
  max-width: min(26.25rem, 100vw - 2rem);
  padding: 0.6875rem 1.125rem;
  position: fixed;
  text-align: center;
  transform: translateX(-50%);
  width: auto;
  z-index: 100;
}
.message__style--bar a {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
}
.message__style--bar.message--error {
  animation-delay: 4s;
  background-color: var(--red);
  color: #fff;
}
.message__style--bar.message--success {
  animation-delay: 1s;
  background-color: var(--green);
  color: #fff;
}
.message__style--bar.message--info {
  animation-delay: 1s;
  background-color: var(--brand);
  color: var(--on-brand);
}
.message__style--bar.message--warning {
  animation-delay: 4s;
  background-color: var(--amber);
  color: var(--ink);
}

.modal {
  align-items: center;
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  overflow: hidden;
  position: fixed;
  right: 0;
  top: 0;
  transition: opacity 300ms;
  z-index: 300;
}
.modal__overlay {
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
}
.modal__background {
  background-color: rgba(0, 0, 0, 0.5);
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.modal__content {
  background-color: var(--panel);
  position: relative;
  transition: transform 300ms;
  max-width: 90%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
@media (min-width: 768px) {
  .modal__content {
    max-width: 70%;
  }
}
@media (min-width: 1280px) {
  .modal__content {
    max-width: 50%;
  }
}
@media (min-width: 768px) {
  .modal__content--wide {
    max-width: 85%;
  }
}
@media (min-width: 1280px) {
  .modal__content--wide {
    max-width: 70%;
  }
}
.modal__header {
  border-bottom: 0.0625rem solid var(--line);
  padding: 0.625rem;
  color: var(--ink);
  font-weight: 700;
}
@media (min-width: 768px) {
  .modal__header {
    padding: 0.625rem 1.25rem;
  }
}
.modal__header--closable {
  align-items: center;
  display: flex;
  gap: 0.75rem;
  justify-content: space-between;
}
.modal__close {
  align-items: center;
  background: transparent;
  border: none;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  flex-shrink: 0;
  justify-content: center;
  padding: 0.25rem;
}
.modal__close .icon {
  height: 1.25rem;
  width: 1.25rem;
}
.modal__close:hover, .modal__close:focus {
  color: var(--brand);
}
.modal__body {
  max-height: 60vh;
  overflow-y: auto;
  padding: 0.625rem 1.25rem 1.25rem;
}
.modal__footer {
  padding: 0 1.25rem 1.25rem;
}
.modal__footer form {
  width: 100%;
}
.modal__footer .button {
  margin-top: 0 !important;
}
.modal__footer .button:not(:last-child) {
  margin-bottom: 0.625rem;
}
@media (min-width: 768px) {
  .modal__footer {
    display: flex;
    justify-content: space-between;
  }
  .modal__footer .button:not(:last-child) {
    margin-bottom: 0;
  }
}

.agreement-modal__body {
  color: var(--ink);
}
.agreement-modal__body a {
  color: var(--ink);
  text-decoration: underline;
}
.agreement-modal__body a:hover, .agreement-modal__body a:focus, .agreement-modal__body a:active {
  color: var(--ink);
  text-decoration: underline;
}
.agreement-modal__body p,
.agreement-modal__body ul,
.agreement-modal__body ol {
  margin: 0 0 1.25rem;
}
.agreement-modal__body p + p {
  margin-top: 0;
}
.agreement-modal__body ul,
.agreement-modal__body ol {
  list-style-position: outside;
  padding-left: 1.2em;
}
.agreement-modal__body ul {
  list-style-type: disc;
}
.agreement-modal__body ol {
  list-style-type: decimal;
}
.agreement-modal__body hr {
  background-color: var(--line);
  border: none;
  height: 0.0625rem;
  margin: 1.25rem 0;
  width: 100%;
}

.panel {
  background: var(--panel);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box;
  display: block;
}

.panel.table,
.table--generic,
.table {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0;
}

.vue-table {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0;
  display: block;
}

.review-slider {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  position: relative;
}
.review-slider--mt {
  margin-top: 1.25rem;
}
.review-slider input[type=range] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 12.5rem;
  height: 0.4375rem;
  background: #ffffff;
  border-radius: 0.3125rem;
  outline: none;
  background: linear-gradient(to right, var(--blue) 50%, #cccccc 50%);
  background-size: 200% 100%;
  background-position: right;
}
.review-slider input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 1.25rem;
  height: 1.25rem;
  background: var(--blue);
  border-radius: 50%;
  cursor: pointer;
}
.review-slider input[type=range]::-moz-range-thumb {
  border: none;
  width: 1.25rem;
  height: 1.25rem;
  background: var(--blue);
  border-radius: 50%;
  cursor: pointer;
}
.review-slider span {
  display: inline-block;
  width: 5.625rem;
}
.review-slider .review-notification {
  margin-left: 0.625rem;
  transition: opacity 0.5s ease;
}
.review-slider .review-notification--success {
  color: #1d9e6e;
}
.review-slider .review-notification--error {
  color: #e30613;
}

.review h2 {
  text-align: center;
  color: color-text;
  font-size: 1rem;
  line-height: 1.875rem;
  margin: 1.25rem 0 0.625rem;
  font-weight: 400;
  border: 0.0625rem solid #d4ddec;
}
.review--ger h2 {
  background-color: #ee9b1f;
}
.review--usa h2 {
  background-color: #0069b3;
}
.review .table th:nth-child(1) {
  width: 10%;
}
.review .table th:nth-child(2) {
  width: 5%;
}
.review .table th:nth-child(3) {
  width: 10%;
}
.review .table th:nth-child(4) {
  width: 15%;
}
.review .table th:nth-child(5) {
  width: 25%;
}
.review .table th:nth-child(6) {
  width: 5%;
}
.review .table th:nth-child(7) {
  width: 5%;
}
.review .table th:nth-child(8) {
  width: 5%;
}
.review .table th:nth-child(9) {
  width: 5%;
}
.review .table th:nth-child(10) {
  width: 5%;
}
.review .table th:nth-child(11) {
  width: 5%;
}
.review .table th:nth-child(12) {
  width: 5%;
}

.session-planner__sticky-head {
  background: var(--bg);
  padding-top: 0.625rem;
  position: sticky;
  top: var(--topbar-h, 3.75rem);
  z-index: 40;
}
.session-planner__toolbar {
  align-items: stretch;
  display: flex;
  gap: 0.75rem;
  justify-content: space-between;
  margin-bottom: 1.125rem;
}
.session-planner__board-head {
  align-items: stretch;
  display: flex;
  gap: 0.75rem;
  min-width: 0;
}
.session-planner__time-column-spacer {
  display: none;
  flex: 0 0 3.5rem;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .session-planner__time-column-spacer {
    display: block;
  }
}
.session-planner__day-nav {
  align-items: center;
  display: inline-flex;
  gap: 1.5rem;
}
.session-planner__day-nav-btn {
  align-items: center;
  appearance: none;
  background: transparent;
  border: 0;
  color: var(--link-color-panel);
  cursor: pointer;
  display: inline-flex;
  flex-shrink: 0;
  justify-content: center;
  padding: 0.25rem;
  transition: color 0.2s ease, opacity 0.2s ease;
}
.session-planner__day-nav-btn:hover, .session-planner__day-nav-btn:focus {
  color: var(--ink);
  opacity: 1;
}
.session-planner__day-nav-icon {
  color: currentColor;
  height: 1.125rem;
  width: 1.125rem;
}
.session-planner__day-nav-icon--prev {
  transform: rotate(90deg);
}
.session-planner__day-nav-icon--next {
  transform: rotate(-90deg);
}
.session-planner__day-nav-label {
  align-items: baseline;
  display: inline-flex;
  font-size: 1rem;
  gap: 0.5rem;
  line-height: 1.2;
}
.session-planner__day-nav-weekday {
  color: var(--muted);
  font-weight: 400;
}
.session-planner__day-nav-date {
  color: var(--ink);
  font-weight: 700;
}
.session-planner__board {
  align-items: flex-start;
  display: flex;
  gap: 0.75rem;
  min-width: 0;
  overflow: hidden;
  padding-bottom: 0.5rem;
}
.session-planner__time-column {
  display: none;
  flex: 0 0 3.5rem;
  flex-direction: column;
}
@media (min-width: 768px) {
  .session-planner__time-column {
    display: flex;
  }
}
.session-planner__time-axis {
  flex-shrink: 0;
  position: relative;
}
.session-planner__time-label {
  color: var(--muted);
  font-size: 0.75rem;
  left: 0;
  line-height: 1;
  padding-right: 0.5rem;
  pointer-events: none;
  position: absolute;
  right: 0;
  text-align: right;
  transform: translateY(-50%);
  white-space: nowrap;
}
.session-planner__time-label--start {
  transform: translateY(0);
}
.session-planner__time-label--end {
  transform: translateY(-100%);
}
.session-planner__column-nav {
  display: inline-flex;
  flex-shrink: 0;
  gap: 0.25rem;
}
.session-planner__column-nav-btn {
  align-items: center;
  appearance: none;
  background: var(--button-primary-bg);
  border: 0.0625rem solid var(--button-primary-bg);
  border-radius: 0.5rem;
  color: var(--button-primary-fg);
  cursor: pointer;
  display: inline-flex;
  flex-shrink: 0;
  justify-content: center;
  padding: 0.4375rem 0.625rem;
  transition: background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
  width: 2.5rem;
}
.session-planner__column-nav-btn:hover:not(:disabled), .session-planner__column-nav-btn:focus:not(:disabled) {
  background-color: var(--button-primary-bg-hover);
  border-color: var(--button-primary-bg-hover);
  color: var(--button-primary-fg);
}
.session-planner__column-nav-btn:disabled, .session-planner__column-nav-btn.is-disabled {
  background: var(--cell-b);
  border-color: var(--line-2);
  color: var(--muted-2);
  cursor: default;
  opacity: 1;
}
.session-planner__column-nav-icon {
  color: currentColor;
  height: 1.125rem;
  width: 1.125rem;
}
.session-planner__column-nav-icon--prev {
  transform: rotate(90deg);
}
.session-planner__column-nav-icon--next {
  transform: rotate(-90deg);
}
.session-planner__columns {
  display: flex;
  flex: 1;
  gap: 0.625rem;
  min-width: 0;
  overflow: hidden;
}
.session-planner__column {
  flex: 1 1 0;
  min-width: 0;
}
.session-planner__column-head {
  background: var(--panel);
  border: 0.0625rem solid var(--line-2);
  border-top: 0.1875rem solid var(--blue);
  margin-bottom: 0.5rem;
  padding: 0.625rem 0.75rem;
}
.session-planner__column-title {
  color: var(--ink);
  display: block;
  font-weight: 700;
}
.session-planner__column-subtitle {
  color: var(--muted);
  display: block;
  font-size: 0.75rem;
  margin-top: 0.125rem;
}
.session-planner__column-body {
  background-color: color-mix(in srgb, var(--panel) 88%, transparent);
  background-image: repeating-linear-gradient(to bottom, transparent, transparent calc(var(--session-planner-slot-height) - 0.0625rem), var(--line) calc(var(--session-planner-slot-height) - 0.0625rem), var(--line) var(--session-planner-slot-height));
  border: 0.0625rem solid var(--line-2);
  overflow: hidden;
  position: relative;
  touch-action: none;
  user-select: none;
}
.session-planner__block {
  border: 0.125rem dashed var(--session-planner-block-border, rgba(0, 0, 0, 0.15));
  border-radius: 0.25rem;
  box-shadow: 0 0.0625rem 0.1875rem rgba(16, 32, 63, 0.12);
  cursor: grab;
  display: flex;
  flex-direction: column;
  font-size: 0.75rem;
  font-weight: 600;
  left: 0.25rem;
  line-height: 1.3;
  min-height: var(--session-planner-snap-height, 1.875rem);
  overflow: visible;
  padding: 0.25rem 0.375rem;
  position: absolute;
  right: 0.25rem;
  z-index: 2;
}
.session-planner__block.is-released {
  border: 0.0625rem solid var(--session-planner-block-border, rgba(0, 0, 0, 0.15));
  cursor: default;
}
.session-planner__block.is-dragging {
  opacity: 0;
  pointer-events: none;
}
.session-planner__block.is-resizing {
  opacity: 0.35;
  pointer-events: none;
}
.session-planner__block.is-naming {
  cursor: default;
  user-select: text;
}
.session-planner__block--preview {
  border: 0.125rem dashed var(--session-planner-block-fg-muted, rgba(255, 255, 255, 0.6));
  pointer-events: none;
  z-index: 3;
}
.session-planner__block-head {
  align-items: stretch;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  min-height: 1.375rem;
  min-width: 0;
}
@media (min-width: 768px) {
  .session-planner__block-head {
    align-items: center;
    flex-direction: row;
    gap: 0.25rem;
  }
}
.session-planner__block-actions {
  align-self: flex-end;
  display: flex;
  flex-shrink: 0;
  gap: 0.0625rem;
  order: -1;
}
@media (min-width: 768px) {
  .session-planner__block-actions {
    align-self: auto;
    order: 0;
  }
}
.session-planner__block-actions .ibtn {
  border: 0;
  border-radius: 0.25rem;
  color: currentColor;
  cursor: pointer;
  height: 1.375rem;
  width: 1.375rem;
}
.session-planner__block-actions .ibtn .icon {
  height: 0.875rem;
  width: 0.875rem;
}
.session-planner__block-actions .ibtn:hover {
  background: var(--session-planner-block-hover-bg, rgba(255, 255, 255, 0.2));
  color: currentColor;
}
.session-planner__block-actions .ibtn--readonly {
  cursor: help;
  opacity: 0.55;
}
.session-planner__block-actions .ibtn--readonly:hover {
  background: none;
  color: currentColor;
}
.session-planner__block-actions .ibtn--red, .session-planner__block-actions .ibtn--release, .session-planner__block-actions .ibtn--unrelease {
  color: currentColor;
}
.session-planner__block-actions .ibtn--red:hover, .session-planner__block-actions .ibtn--release:hover, .session-planner__block-actions .ibtn--unrelease:hover {
  background: var(--session-planner-block-hover-bg, rgba(255, 255, 255, 0.2));
  color: currentColor;
}
.session-planner__block-action-slot {
  display: inline-flex;
  flex-shrink: 0;
  height: 1.375rem;
  position: relative;
  width: 1.375rem;
}
.session-planner__block-action-slot .ibtn {
  left: 0;
  position: absolute;
  top: 0;
}
.session-planner__block--ghost {
  box-shadow: 0 0.25rem 0.75rem rgba(16, 32, 63, 0.28);
  cursor: grabbing;
  left: 0;
  margin: 0;
  opacity: 0.35;
  pointer-events: none;
  position: fixed;
  right: auto;
  top: 0;
  transform: translate(0, 0);
  transition: background-color 0.12s ease, border-color 0.12s ease;
  will-change: transform;
  z-index: 1000;
}
.session-planner__block--ghost.is-invalid {
  border-color: var(--red, #dc2626);
  box-shadow: 0 0 0 0.125rem rgba(220, 38, 38, 0.35);
  opacity: 0.35;
}
.session-planner__block-title {
  flex: none;
  line-height: 1.375rem;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}
@media (min-width: 768px) {
  .session-planner__block-title {
    flex: 1;
    width: auto;
  }
}
.session-planner__block-title--editable {
  cursor: text;
}
.session-planner__block-title-input {
  appearance: none;
  background: transparent;
  border: 0;
  box-shadow: none;
  color: inherit;
  cursor: text;
  font: inherit;
  font-weight: inherit;
  margin: 0;
  outline: none;
  padding: 0;
  user-select: text;
}
.session-planner__block-title-input:focus, .session-planner__block-title-input:focus-visible {
  border: 0;
  box-shadow: none;
  outline: none;
}
.session-planner__block-title-input::placeholder {
  color: inherit;
  opacity: 0.55;
}
.session-planner__block-people {
  display: none;
}
@media (min-width: 768px) {
  .session-planner__block-people {
    bottom: 0.375rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.125rem;
    left: 0.375rem;
    max-width: calc(100% - 4.5rem);
    position: absolute;
    z-index: 2;
  }
}
.session-planner__person-chip {
  align-items: center;
  border: 0.0625rem solid var(--session-planner-block-fg, currentColor);
  border-radius: 50%;
  display: inline-flex;
  flex-shrink: 0;
  font-size: 0.625rem;
  font-weight: 700;
  height: 1.5625rem;
  justify-content: center;
  line-height: 1;
  text-decoration: none;
  width: 1.5625rem;
}
.session-planner__person-chip--confirmed {
  background: var(--green);
  color: #ffffff;
}
.session-planner__person-chip--pending {
  background: var(--red);
  color: #ffffff;
}
.session-planner__person-chip:hover, .session-planner__person-chip:focus, .session-planner__person-chip:focus-visible {
  opacity: 0.88;
  text-decoration: none;
}
.session-planner__block-time {
  display: none;
}
@media (min-width: 768px) {
  .session-planner__block-time {
    bottom: 0.375rem;
    display: block;
    font-size: 0.625rem;
    font-weight: 600;
    line-height: 1;
    pointer-events: none;
    position: absolute;
    right: 0.375rem;
    white-space: nowrap;
    z-index: 2;
  }
}
.session-planner__resize {
  cursor: ns-resize;
  height: 0.625rem;
  left: 0;
  position: absolute;
  right: 0;
  z-index: 3;
}
.session-planner__resize--n {
  top: -0.125rem;
}
.session-planner__resize--s {
  bottom: -0.125rem;
}

body.session-planner-dragging {
  cursor: grabbing;
  user-select: none;
}

body.session-planner-resizing {
  cursor: ns-resize;
  user-select: none;
}

.setup-onboarding {
  --setup-locked-surface: var(--line);
  --setup-locked-ink: var(--ink);
  --setup-locked-border: var(--border-strong, var(--line-2));
  --setup-done-surface: var(--brand-10);
  --setup-done-ink: var(--brand);
  --setup-done-border: color-mix(in srgb, var(--brand) 25%, transparent);
  --setup-active-surface: var(--brand-10);
  --setup-active-ink: var(--brand);
  --setup-active-border: color-mix(in srgb, var(--brand) 35%, transparent);
  --setup-link: var(--brand);
  --setup-link-hover: var(--brand-dark);
  --setup-detail-ink: var(--muted);
  background: var(--panel);
  border: 0.0625rem solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 1.125rem;
}
.setup-onboarding__head {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.125rem 1.25rem;
  border-bottom: 0.0625rem solid var(--line);
}
.setup-onboarding--collapsed .setup-onboarding__head {
  border-bottom-color: transparent;
}
.setup-onboarding__head-main {
  flex: 1;
  min-width: 0;
}
.setup-onboarding__title {
  margin: 0 0 0.1875rem;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.01em;
}
.setup-onboarding__subtitle {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--muted);
}
.setup-onboarding__progress {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
}
.setup-onboarding__count {
  font-size: 0.78125rem;
  font-weight: 700;
  color: var(--muted);
  white-space: nowrap;
}
.setup-onboarding__ring {
  position: relative;
  width: 2.875rem;
  height: 2.875rem;
  flex-shrink: 0;
}
.setup-onboarding__ring svg {
  transform: rotate(-90deg);
  display: block;
}
.setup-onboarding__ring-track {
  stroke: var(--line-2);
  fill: none;
}
.setup-onboarding__ring-fill {
  stroke: var(--brand);
  fill: none;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.4s ease;
}
.setup-onboarding__ring-pct {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  font-weight: 900;
  color: var(--ink);
}
.setup-onboarding__toggle, .setup-onboarding__dismiss {
  border: none;
  background: transparent;
  color: var(--muted-2);
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
  border-radius: var(--radius-s);
  flex-shrink: 0;
}
.setup-onboarding__toggle:hover, .setup-onboarding__dismiss:hover {
  color: var(--ink);
  background: var(--line-soft, var(--line-2));
}
.setup-onboarding__toggle .icon, .setup-onboarding__dismiss .icon {
  width: 1.125rem;
  height: 1.125rem;
  display: block;
}
.setup-onboarding__toggle .icon {
  transition: transform 0.18s ease;
}
.setup-onboarding--collapsed .setup-onboarding__toggle .icon {
  transform: rotate(-180deg);
}
.setup-onboarding__steps-body {
  display: grid;
  grid-template-rows: 1fr;
  transition: grid-template-rows 0.3s ease;
}
.setup-onboarding__steps-body > * {
  overflow: hidden;
}
.setup-onboarding--collapsed .setup-onboarding__steps-body {
  grid-template-rows: 0fr;
}
.setup-onboarding__steps {
  list-style: none;
  margin: 0;
  padding: 0.25rem 0;
}
.setup-onboarding__step {
  border-bottom: 0.0625rem solid var(--line-soft, var(--line));
}
.setup-onboarding__step:last-child {
  border-bottom: none;
}
.setup-onboarding__step--locked .setup-onboarding__step-row {
  cursor: default;
}
.setup-onboarding__step--locked .setup-onboarding__step-title {
  color: var(--muted);
  font-weight: 600;
}
.setup-onboarding__step--locked .setup-onboarding__step-sub {
  color: var(--muted-2);
}
.setup-onboarding__step--locked .setup-onboarding__marker {
  background: var(--setup-locked-surface);
  border-color: var(--setup-locked-border);
  color: var(--setup-locked-ink);
}
.setup-onboarding__step--locked .setup-onboarding__tag--locked {
  background: var(--setup-locked-surface);
  border: 0.0625rem solid var(--setup-locked-border);
  color: var(--setup-locked-ink);
}
.setup-onboarding__step--done .setup-onboarding__step-title {
  color: var(--muted);
}
.setup-onboarding__step--done .setup-onboarding__step-sub {
  color: var(--muted);
  opacity: 0.85;
}
.setup-onboarding__step--open .setup-onboarding__step-caret .icon {
  transform: rotate(180deg);
}
.setup-onboarding__step--open:not(.setup-onboarding__step--done):not(.setup-onboarding__step--locked) .setup-onboarding__step-title {
  color: var(--ink);
}
.setup-onboarding__step--open:not(.setup-onboarding__step--done):not(.setup-onboarding__step--locked) .setup-onboarding__step-sub {
  color: var(--setup-detail-ink);
}
.setup-onboarding__step--open:not(.setup-onboarding__step--done):not(.setup-onboarding__step--locked) .setup-onboarding__step-caret {
  color: var(--setup-active-ink);
}
.setup-onboarding__step:not(.setup-onboarding__step--done):not(.setup-onboarding__step--locked) .setup-onboarding__marker {
  background: var(--setup-active-surface);
  border-color: var(--setup-active-border);
  color: var(--setup-active-ink);
}
.setup-onboarding__step-row {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  width: 100%;
  padding: 0.875rem 1.25rem;
  text-align: left;
  background: none;
  border: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
}
.setup-onboarding__marker {
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 900;
  border: 0.0625rem solid var(--setup-active-border);
  background: var(--setup-active-surface);
  color: var(--setup-active-ink);
}
.setup-onboarding__step--done .setup-onboarding__marker {
  background: var(--brand);
  border-color: transparent;
  color: var(--on-brand);
}
.setup-onboarding__step-body {
  flex: 1;
  min-width: 0;
}
.setup-onboarding__step-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ink);
}
.setup-onboarding__step-sub {
  display: block;
  margin-top: 0.125rem;
  font-size: 0.78125rem;
  color: var(--muted);
}
.setup-onboarding__tag {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.125rem 0.5rem;
  border-radius: var(--pill);
}
.setup-onboarding__tag--done {
  background: var(--setup-done-surface);
  border: 0.0625rem solid var(--setup-done-border);
  color: var(--setup-done-ink);
}
.setup-onboarding__tag--locked {
  background: var(--setup-locked-surface);
  border: 0.0625rem solid var(--setup-locked-border);
  color: var(--setup-locked-ink);
}
.setup-onboarding__step-caret {
  color: var(--muted-2);
  flex-shrink: 0;
}
.setup-onboarding__step-caret .icon {
  width: 0.875rem;
  height: 0.875rem;
  transition: transform 0.18s ease;
}
.setup-onboarding__step--locked .setup-onboarding__step-caret, .setup-onboarding__step--done .setup-onboarding__step-caret {
  visibility: hidden;
}
.setup-onboarding__detail {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.setup-onboarding__detail > * {
  overflow: hidden;
}
.setup-onboarding__step--open .setup-onboarding__detail {
  grid-template-rows: 1fr;
}
.setup-onboarding__detail-pad {
  padding: 0 1.25rem 1.125rem 4rem;
}
.setup-onboarding__detail-pad p {
  margin: 0 0 0.875rem;
  font-size: 0.8125rem;
  color: var(--setup-detail-ink);
  line-height: 1.55;
}
.setup-onboarding__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}
.setup-onboarding__substeps {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.setup-onboarding__substeps > p {
  margin: 0 0 0.25rem;
  font-size: 0.8125rem;
  color: var(--setup-detail-ink);
  line-height: 1.55;
}
.setup-onboarding__substep--locked .setup-onboarding__substep-title,
.setup-onboarding__substep--locked .setup-onboarding__substep-detail {
  color: var(--muted);
}
.setup-onboarding__substep--locked .setup-onboarding__substep-marker {
  background: var(--setup-locked-surface);
  border-color: var(--setup-locked-border);
  color: var(--setup-locked-ink);
}
.setup-onboarding__substep--done .setup-onboarding__substep-title {
  color: var(--muted);
}
.setup-onboarding__substep-head {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.setup-onboarding__substep-marker {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  font-weight: 900;
  border: 0.0625rem solid var(--setup-active-border);
  background: var(--setup-active-surface);
  color: var(--setup-active-ink);
}
.setup-onboarding__substep--done .setup-onboarding__substep-marker {
  background: var(--brand);
  border-color: transparent;
  color: var(--on-brand);
}
.setup-onboarding__substep-body {
  flex: 1;
  min-width: 0;
}
.setup-onboarding__substep-title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--ink);
}
.setup-onboarding__substep-count {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted);
}
.setup-onboarding__link {
  color: var(--setup-link);
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.125rem;
}
.setup-onboarding__link:hover {
  color: var(--setup-link-hover);
  text-decoration: underline;
}
.setup-onboarding__detail-line {
  margin: 0 0 0.875rem;
  font-size: 0.8125rem;
  color: var(--setup-detail-ink);
  line-height: 1.55;
}
.setup-onboarding__detail-line--optional {
  margin-top: -0.5rem;
  font-size: 0.78125rem;
}
.setup-onboarding__substep-detail {
  display: block;
  margin-top: 0.1875rem;
  font-size: 0.78125rem;
  color: var(--setup-detail-ink);
  line-height: 1.5;
}
.setup-onboarding__restore {
  margin-bottom: 1.125rem;
}
.setup-onboarding__done-banner {
  background: var(--setup-done-surface);
  border: 0.0625rem solid var(--setup-done-border);
  color: var(--setup-done-ink);
  border-radius: var(--radius);
  padding: 0.875rem 1.125rem;
  margin-bottom: 1.125rem;
  font-size: 0.875rem;
  font-weight: 700;
}

@media (prefers-reduced-motion: reduce) {
  .setup-onboarding__ring-fill,
  .setup-onboarding__detail,
  .setup-onboarding__steps-body,
  .setup-onboarding__step-caret .icon,
  .setup-onboarding__toggle .icon {
    transition: none;
  }
}
html[data-theme=dark] .setup-onboarding {
  --setup-locked-surface: var(--brand-10);
  --setup-locked-border: var(--border-strong, var(--line-2));
  --setup-done-surface: var(--brand-20);
  --setup-done-ink: var(--brand-dark);
  --setup-done-border: var(--border-strong, var(--line-2));
  --setup-active-surface: var(--brand-20);
  --setup-active-ink: var(--brand-dark);
  --setup-active-border: var(--border-strong, var(--line-2));
  --setup-link: var(--brand-dark);
  --setup-link-hover: color-mix(in srgb, var(--brand-dark) 82%, #fff);
  --setup-detail-ink: color-mix(in srgb, var(--ink) 88%, var(--muted));
}

.table-wrap {
  padding: 1rem;
  max-width: 100%;
  min-width: 0;
}
@media (min-width: 1280px) {
  .table-wrap {
    padding: 0 1.125rem 0.625rem;
  }
}

.table--no-toolbar .table-wrap {
  padding-top: 1.125rem;
}

.table {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  display: block;
}
.table:not(:last-child) {
  margin-bottom: 0.625rem;
}
.table__content {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
.table .button {
  margin-top: 1.25rem;
}
.table__buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 1.25rem;
}
.table__buttons .button {
  margin-top: 0;
}
@media (max-width: 1279px) {
  .table table,
  .table thead,
  .table tbody,
  .table tr,
  .table td {
    display: block;
  }
  .table thead {
    display: none;
  }
  .table tbody {
    display: grid;
    gap: 0.875rem;
    grid-template-columns: repeat(auto-fill, minmax(min(22.5rem, 100%), 1fr));
  }
  .table tbody tr {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    padding: 1rem;
    border: 0.0625rem solid var(--line);
    border-radius: 0.75rem;
    background: var(--panel);
  }
  .table tbody tr:hover {
    background: var(--panel);
  }
  .table tbody tr.empty {
    grid-column: 1/-1;
    display: block;
    border-style: dashed;
  }
  .table tbody tr.empty td {
    text-align: center !important;
  }
  .table tbody tr.empty td::before {
    display: none;
  }
  .table tbody td {
    padding: 0;
    border: 0;
    width: auto !important;
    text-align: left;
  }
  .table tbody td.c-sort {
    display: none;
  }
  .table tbody td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 0.125rem;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .table tbody td:not([data-label])::before, .table tbody td[data-label=""]::before {
    display: none;
  }
  .table tbody td.center, .table tbody td.right {
    text-align: left;
  }
  .table tbody td.center > div, .table tbody td.right > div {
    text-align: left;
  }
  .table tbody td.c-actions {
    border-top: 0.0625rem solid var(--line);
    padding-top: 0.625rem;
    margin-top: 0.25rem;
  }
  .table tbody td.c-actions::before {
    display: none;
  }
  .table tbody td.has-status {
    padding-left: 0 !important;
  }
  .table tbody td.has-status .status {
    position: static;
    width: 0.25rem;
    height: 1.5rem;
    border-radius: 0.125rem;
    margin-bottom: 0.25rem;
  }
}
@media (min-width: 1280px) {
  .table .table__content {
    max-width: 100%;
    min-width: 0;
    overflow-x: auto;
    scrollbar-color: var(--muted-2) transparent;
    scrollbar-width: thin;
  }
  .table .table__content::-webkit-scrollbar {
    height: 0.625rem;
  }
  .table .table__content::-webkit-scrollbar-track {
    background: transparent;
  }
  .table .table__content::-webkit-scrollbar-thumb {
    background: var(--muted-2);
    border-radius: 62.4375rem;
  }
  .table .table__content--fixed-hscroll {
    scrollbar-width: none;
  }
  .table .table__content--fixed-hscroll::-webkit-scrollbar {
    height: 0;
  }
  .table table {
    display: table;
    width: max-content;
    min-width: 100%;
    table-layout: auto;
    border-collapse: collapse;
  }
  .table thead th {
    padding: 0.875rem 0.75rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--muted);
    text-align: left;
    border-bottom: 0.125rem solid var(--line);
    white-space: nowrap;
    cursor: pointer;
    user-select: none;
  }
  .table thead th.col-actions, .table thead th.right {
    text-align: right;
  }
  .table thead th.no-sort {
    cursor: default;
  }
  .table thead th.col-schedule {
    min-width: 7.625rem;
  }
  .table thead th.center {
    text-align: center;
  }
  .table thead th.width-5 {
    width: 5%;
  }
  .table thead th.width-10 {
    width: 10%;
  }
  .table thead th.width-15 {
    width: 15%;
  }
  .table thead th.width-20 {
    width: 20%;
  }
  .table thead th.width-25 {
    width: 25%;
  }
  .table thead th.width-30 {
    width: 30%;
  }
  .table thead th.width-35 {
    width: 35%;
  }
  .table thead th.width-40 {
    width: 40%;
  }
  .table thead th.width-45 {
    width: 45%;
  }
  .table thead th.width-50 {
    width: 50%;
  }
  .table thead th.width-55 {
    width: 55%;
  }
  .table thead th.width-60 {
    width: 60%;
  }
  .table thead th.width-65 {
    width: 65%;
  }
  .table thead th.width-70 {
    width: 70%;
  }
  .table thead th.width-75 {
    width: 75%;
  }
  .table thead th.width-80 {
    width: 80%;
  }
  .table thead th.width-85 {
    width: 85%;
  }
  .table thead th.width-90 {
    width: 90%;
  }
  .table thead th.width-95 {
    width: 95%;
  }
  .table thead th.width-100 {
    width: 100%;
  }
  .table tbody td {
    padding: 1.125rem 0.75rem;
    vertical-align: top;
    border-bottom: 0.125rem solid var(--line);
    position: relative;
  }
  .table tbody td.c-schedule {
    min-width: 7.625rem;
  }
  .table tbody td.right {
    text-align: right !important;
  }
  .table tbody td.right > div {
    text-align: right !important;
  }
  .table tbody td.center {
    text-align: center !important;
  }
  .table tbody td.center > div {
    text-align: center !important;
  }
  .table tbody td.width-5 {
    width: 5%;
  }
  .table tbody td.width-10 {
    width: 10%;
  }
  .table tbody td.width-15 {
    width: 15%;
  }
  .table tbody td.width-20 {
    width: 20%;
  }
  .table tbody td.width-25 {
    width: 25%;
  }
  .table tbody td.width-30 {
    width: 30%;
  }
  .table tbody td.width-35 {
    width: 35%;
  }
  .table tbody td.width-40 {
    width: 40%;
  }
  .table tbody td.width-45 {
    width: 45%;
  }
  .table tbody td.width-50 {
    width: 50%;
  }
  .table tbody td.width-55 {
    width: 55%;
  }
  .table tbody td.width-60 {
    width: 60%;
  }
  .table tbody td.width-65 {
    width: 65%;
  }
  .table tbody td.width-70 {
    width: 70%;
  }
  .table tbody td.width-75 {
    width: 75%;
  }
  .table tbody td.width-80 {
    width: 80%;
  }
  .table tbody td.width-85 {
    width: 85%;
  }
  .table tbody td.width-90 {
    width: 90%;
  }
  .table tbody td.width-95 {
    width: 95%;
  }
  .table tbody td.width-100 {
    width: 100%;
  }
  .table tbody td.has-status {
    padding-left: 1.25rem !important;
  }
  .table tbody td.is-empty {
    text-align: center;
    color: var(--muted);
    padding: 3.5rem 1.25rem;
  }
  .table tbody td.is-calculated {
    background-color: var(--brand-10);
    color: var(--on-accent);
  }
  .table tbody td .status {
    bottom: 0;
    left: 0;
    position: absolute;
    top: 0;
    width: 0.625rem;
  }
  .table tbody td .status--0 {
    background-color: var(--red);
  }
  .table tbody td .status--1 {
    background-color: var(--green);
  }
  .table tbody td .status--2 {
    background-color: var(--amber);
  }
  .table tbody td .status--3 {
    background-color: var(--blue);
  }
  .table tbody td .status--null {
    background-color: var(--muted);
  }
  .table tbody tr {
    transition: background 0.12s ease;
  }
  .table tbody tr:hover {
    background: var(--table-stripe-hover);
  }
  .table tbody tr.is-locked {
    background: var(--table-stripe-locked);
  }
  .table tbody tr:last-child td {
    border-bottom: 0;
  }
  .table tbody tr.is-drag-over {
    outline: 0.125rem solid var(--blue);
    outline-offset: -0.125rem;
  }
  .table thead {
    display: table-header-group;
  }
  .table tbody {
    display: table-row-group;
    gap: 0;
    grid-template-columns: none;
  }
  .table tr {
    display: table-row;
  }
  .table td,
  .table th {
    display: table-cell;
  }
  .table tbody tr {
    display: table-row;
    flex-direction: row;
    gap: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }
  .table tbody tr:hover {
    background: var(--table-stripe-hover);
  }
  .table tbody tr.is-locked {
    background: var(--table-stripe-locked);
  }
  .table tbody tr.empty {
    display: table-row;
    grid-column: auto;
    border: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
  }
  .table tbody tr.empty:hover {
    background: transparent;
  }
  .table tbody tr.empty td {
    text-align: center !important;
    border-bottom: 0;
  }
  .table tbody td::before {
    display: none;
  }
  .table tbody td.c-sort {
    display: table-cell;
  }
  .table tbody td.c-actions {
    border-top: 0;
    padding-top: 1.125rem;
    margin-top: 0;
  }
  .table tbody td.has-status {
    padding-left: 1.25rem !important;
  }
  .table tbody td.has-status .status {
    bottom: 0;
    left: 0;
    position: absolute;
    top: 0;
    width: 0.625rem;
    height: auto;
    border-radius: 0;
    margin-bottom: 0;
  }
}
.table--generic {
  width: 100%;
  max-width: none;
}
.table__image {
  display: inline-block;
  max-height: 6.25rem;
  max-width: 6.25rem;
}
.table__text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}
.table__text-link-icon {
  color: var(--link-color);
  display: block;
  flex-shrink: 0;
  height: 1rem;
  width: 1rem;
  text-decoration: none;
}
.table__select {
  border: 0.0625rem solid var(--line-2);
  border-radius: var(--radius-s);
  padding: 0.25rem 0.5rem;
  color: var(--ink);
  background: var(--panel);
}
.table__file-icons {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  flex-wrap: wrap;
}
.table__file-icons--name-inline {
  flex-shrink: 0;
}
.table__name-file-list {
  display: flex;
  flex-direction: column;
}
.table__name-file-entry:not(:last-child) {
  padding-bottom: 0.4375rem;
  margin-bottom: 0.4375rem;
  border-bottom: 0.0625rem solid var(--line);
}
.table__name-file-row {
  align-items: flex-start;
  display: flex;
  gap: 0.5rem;
  min-width: 0;
}
.table__name-file-row .assets {
  flex-shrink: 0;
  margin-top: 0.0625rem;
}
.table__name-file-row .srelease {
  width: 1.1875rem;
  height: 1.1875rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1875rem;
  line-height: 0;
  background-color: var(--green);
  color: #ffffff;
}
.table__name-file-row .srelease .icon {
  display: block;
  width: 0.6875rem;
  height: 0.6875rem;
  transform: translateY(-0.03125rem);
}
.table__name-file-row .srelease.pending {
  background-color: var(--red);
}
.table__name-file-link {
  color: inherit;
  text-decoration: none;
  flex: 1;
  min-width: 0;
}
.table__name-file-link:hover {
  text-decoration: underline;
}
.table__name-file-text {
  flex: 1;
  min-width: 0;
}
.table__name-file-divider {
  display: none;
}
.table__file-icon,
.table .asset {
  width: 1.375rem;
  height: 1.375rem;
  display: grid;
  place-items: center;
  border-radius: 0.375rem;
}
.table__file-icon svg,
.table .asset svg {
  width: 0.9375rem;
  height: 0.9375rem;
}
.table__file-icon--missing, .table__file-icon.issue,
.table .asset--missing,
.table .asset.issue {
  color: var(--red);
}
.table__file-icon--uploaded, .table__file-icon.pending,
.table .asset--uploaded,
.table .asset.pending {
  color: var(--amber);
}
.table__file-icon.off,
.table .asset.off {
  color: var(--muted-2);
}
.table__file-icon--checked, .table__file-icon.ok,
.table .asset--checked,
.table .asset.ok {
  color: var(--green);
}
.table__drag-handle {
  align-items: center;
  color: var(--muted);
  cursor: grab;
  display: flex;
  justify-content: center;
  opacity: 0.5;
  padding: 0.125rem;
  transition: opacity 0.15s ease;
  user-select: none;
}
.table__drag-handle svg {
  height: 1rem;
  width: 0.625rem;
}
.table__drag-handle:active {
  cursor: grabbing;
  opacity: 1;
}
.table__drag-handle:hover {
  opacity: 1;
}
.table__checkbox-button {
  background: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  padding: 0;
}
.table__checkbox-button:hover, .table__checkbox-button:focus {
  opacity: 0.85;
}
.table__checkbox {
  border-radius: 0.125rem;
  display: inline-block;
  height: 1rem;
  position: relative;
  width: 1rem;
}
.table__checkbox--checked {
  background-color: var(--green);
}
.table__checkbox--checked::after {
  border-bottom: 0.125rem solid #ffffff;
  border-right: 0.125rem solid #ffffff;
  content: "";
  height: 0.5625rem;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -60%) rotate(45deg);
  width: 0.3125rem;
}
.table__checkbox--unchecked {
  background-color: var(--red);
}
.table__checkbox--unchecked::before, .table__checkbox--unchecked::after {
  background-color: #ffffff;
  content: "";
  height: 0.125rem;
  left: 50%;
  position: absolute;
  top: 50%;
  width: 0.625rem;
}
.table__checkbox--unchecked::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.table__checkbox--unchecked::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.table__checkbox--neutral {
  background-color: var(--muted);
}
.table__checkbox--neutral::before {
  background-color: #ffffff;
  content: "";
  height: 0.125rem;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0.625rem;
}

.sched strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
}
.sched span {
  display: block;
  font-size: 0.78125rem;
  color: var(--muted);
  margin-top: 0.125rem;
  white-space: nowrap;
}

.loc strong {
  display: block;
  font-size: 0.84375rem;
  font-weight: 700;
}
.loc span {
  display: block;
  font-size: 0.78125rem;
  color: var(--muted);
  margin-top: 0.1875rem;
  line-height: 1.45;
}

.fmt {
  font-size: 0.84375rem;
  color: var(--ink-2);
}

.person {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  min-width: 0;
}
.person:not(:last-child) {
  padding-bottom: 0.4375rem;
  margin-bottom: 0.4375rem;
  border-bottom: 0.0625rem solid var(--line);
}

.pcheck {
  width: 1.0625rem;
  height: 1.0625rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
  color: var(--green);
}
.pcheck.pending {
  color: var(--red);
}

.person__id {
  flex: 1;
  min-width: 0;
  font-size: 0.84375rem;
  overflow-wrap: anywhere;
}
.person__id strong {
  font-weight: 700;
}
.person__id span {
  color: var(--muted);
  font-size: 0.75rem;
}

.person__link {
  color: inherit;
  text-decoration: none;
}
.person__link:hover {
  color: var(--link-color);
  text-decoration: underline;
}

.assets {
  display: flex;
  gap: 0.125rem;
  flex: none;
}
.assets--3-slots {
  min-width: calc(1.375rem * 3 + 0.125rem * 2);
}

.person > .assets {
  margin-top: 0.0625rem;
}

.owner {
  font-size: 0.8125rem;
  color: var(--ink-2);
  white-space: nowrap;
}

tbody td.c-owner {
  white-space: nowrap;
}

@media (max-width: 1535px) {
  tbody td.c-email {
    white-space: nowrap;
  }
}
@media (min-width: 1536px) {
  tbody td.c-email {
    white-space: normal;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }
  tbody td.c-email > div {
    white-space: normal;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }
}
tbody td.c-email.nowrap {
  white-space: nowrap;
}
tbody td.c-email.nowrap > div {
  white-space: nowrap;
}

.rowactions {
  display: flex;
  gap: 0.25rem;
  justify-content: flex-end;
}

.ibtn {
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 0.5rem;
  display: grid;
  place-items: center;
  color: var(--muted);
  transition: background 0.12s ease, color 0.12s ease;
  text-decoration: none;
  padding: 0;
}
.ibtn:hover {
  background: var(--brand-10);
  color: var(--link-color-panel);
}
.ibtn--red {
  color: var(--red);
}
.ibtn--red:hover {
  background: var(--red-bg);
  color: var(--red);
}
.ibtn--release {
  color: var(--red);
}
.ibtn--release:hover {
  background: var(--red-bg);
  color: var(--red);
}
.ibtn--unrelease {
  color: var(--green);
}
.ibtn--unrelease:hover {
  background: var(--green-bg);
  color: var(--green);
}
.ibtn--deactivate {
  color: var(--red);
}
.ibtn--deactivate:hover {
  background: var(--red-bg);
  color: var(--red);
}
.ibtn--activate {
  color: var(--green);
}
.ibtn--activate:hover {
  background: var(--green-bg);
  color: var(--green);
}
.ibtn--lock.on {
  color: var(--amber);
}
.ibtn--eye.off {
  color: var(--amber);
}
.ibtn--readonly {
  color: var(--muted);
  opacity: 0.45;
  cursor: help;
}
.ibtn--readonly:hover {
  background: none;
  color: var(--muted);
}
.ibtn:disabled, .ibtn--disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}
.ibtn:disabled:hover, .ibtn--disabled:hover {
  background: none;
}
.ibtn.confirming {
  background: var(--red);
  color: #ffffff;
  animation: pulse 0.9s ease infinite;
}

@keyframes pulse {
  50% {
    box-shadow: 0 0 0 0.25rem rgba(227, 6, 19, 0.22);
  }
}
.table-foot {
  padding: 0.875rem 0.25rem 0.25rem;
  font-size: 0.78125rem;
  color: var(--muted);
}
@media (min-width: 1280px) {
  .table-foot {
    padding: 0.875rem 0.75rem 1.125rem;
  }
}
.table-foot b {
  color: var(--ink-2);
  font-weight: 700;
}

.empty__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1.25rem;
  text-align: center;
  color: var(--muted);
}
.empty__box strong {
  display: block;
  color: var(--ink-2);
  font-size: 0.9375rem;
  margin-bottom: 0.25rem;
}

.linklike {
  color: var(--link-color);
  font-weight: 700;
  text-decoration: underline;
  padding: 0;
}

.table:has(.c-schedule) tbody tr {
  display: grid;
  gap: 0.75rem 0.875rem;
  grid-template-columns: 1fr auto;
  grid-template-areas: "schedule format" "details  details" "loc      loc" "persons  persons" "owner    owner" "actions  actions";
}
.table:has(.c-schedule) tbody td.c-schedule {
  grid-area: schedule;
}
.table:has(.c-schedule) tbody td.c-schedule::before {
  display: none;
}
.table:has(.c-schedule) tbody td.c-details {
  grid-area: details;
}
.table:has(.c-schedule) tbody td.c-details::before {
  display: none;
}
.table:has(.c-schedule) tbody td.c-loc {
  grid-area: loc;
}
.table:has(.c-schedule) tbody td.c-format {
  grid-area: format;
  justify-self: end;
}
.table:has(.c-schedule) tbody td.c-format::before {
  display: none;
}
.table:has(.c-schedule) tbody td.c-format .fmt {
  display: inline-block;
  padding: 0.25rem 0.6875rem;
  border-radius: 62.4375rem;
  background: var(--brand-10);
  color: var(--on-accent);
  font-size: 0.75rem;
  font-weight: 700;
}
.table:has(.c-schedule) tbody td.c-persons {
  grid-area: persons;
  padding-top: 0.625rem;
}
.table:has(.c-schedule) tbody td.c-owner {
  grid-area: owner;
}
.table:has(.c-schedule) tbody td.c-owner::before {
  content: "Session owner";
}
.table:has(.c-schedule) tbody td.c-actions {
  grid-area: actions;
}
@media (min-width: 1280px) {
  .table:has(.c-schedule) tbody tr {
    display: table-row;
    grid-template-areas: none;
    grid-template-columns: none;
  }
  .table:has(.c-schedule) tbody td.c-schedule, .table:has(.c-schedule) tbody td.c-details, .table:has(.c-schedule) tbody td.c-format, .table:has(.c-schedule) tbody td.c-loc, .table:has(.c-schedule) tbody td.c-persons, .table:has(.c-schedule) tbody td.c-owner, .table:has(.c-schedule) tbody td.c-actions {
    grid-area: auto;
  }
  .table:has(.c-schedule) tbody td.c-owner::before {
    content: attr(data-label);
  }
  .table:has(.c-schedule) tbody td.c-format .fmt {
    display: inline;
    padding: 0;
    border-radius: 0;
    background: none;
    color: var(--ink-2);
    font-size: 0.84375rem;
    font-weight: 400;
  }
  .table:has(.c-schedule) tbody td.c-persons {
    padding-top: 1.125rem;
  }
}

@media (min-width: 1280px) {
  .table__hscroll-fixed {
    position: fixed;
    bottom: 0;
    z-index: 80;
    overflow-x: scroll;
    overflow-y: hidden;
    height: 1.125rem;
    background: var(--panel);
    border-top: 0.0625rem solid var(--line);
    box-shadow: 0 -0.25rem 1rem rgba(0, 0, 0, 0.12);
    scrollbar-color: var(--muted-2) transparent;
    scrollbar-width: thin;
  }
  .table__hscroll-fixed::-webkit-scrollbar {
    height: 0.625rem;
  }
  .table__hscroll-fixed::-webkit-scrollbar-track {
    background: transparent;
  }
  .table__hscroll-fixed::-webkit-scrollbar-thumb {
    background: var(--muted-2);
    border-radius: 62.4375rem;
  }
  .table__hscroll-fixed-inner {
    height: 0.0625rem;
    pointer-events: none;
  }
}
.table__color {
  align-items: center;
  display: inline-flex;
  gap: 0.5rem;
}
.table__color-swatch {
  border: 0.0625rem solid var(--line-2);
  border-radius: 0.25rem;
  flex: none;
  height: 1.125rem;
  width: 1.125rem;
}

.tag {
  padding: 0.25rem 0.6875rem;
  border-radius: var(--pill);
  font-size: 0.65625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.tag--gray {
  background: var(--tag-gray-bg);
  color: var(--on-accent);
}
.tag--green {
  background: var(--green);
  color: #ffffff;
}
.tag--red {
  background: var(--red);
  color: #ffffff;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-top: 0.5625rem;
}

.chip--cancel {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.125rem 0.5625rem;
  border: 0.0625rem solid var(--red);
  border-radius: 62.4375rem;
  color: var(--red);
  font-size: 0.65625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.stitle {
  font-size: 0.90625rem;
  font-weight: 700;
  line-height: 1.5;
  max-width: 46ch;
}

.tabs {
  border: 0.0625rem solid var(--brand);
  display: flex;
  margin-bottom: 0.625rem;
}
.tabs a {
  background-color: var(--panel);
  color: var(--ink);
  display: inline-block;
  flex: 1;
  font-weight: 600;
  padding: 0.4375rem 0.625rem;
  text-align: center;
  transition: background-color 0.25s ease, color 0.25s ease;
  user-select: none;
  text-decoration: none;
}
.tabs a:hover, .tabs a:focus, .tabs a:active {
  background-color: var(--brand-dark);
  color: var(--on-brand);
}
.tabs a:not(:last-child) {
  border-right: 0.0625rem solid var(--brand);
}
.tabs a.is-active {
  background-color: var(--brand);
  color: var(--on-brand);
}

.topbar__actions {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex: none;
}

.theme-switch {
  --theme-switch-track: 3rem;
  --theme-switch-thumb: 1.3125rem;
  --theme-switch-pad: 0.09375rem;
  --theme-switch-travel: calc(var(--theme-switch-track) - var(--theme-switch-thumb) - var(--theme-switch-pad) * 2);
  width: var(--theme-switch-track);
  height: 1.6875rem;
  padding: var(--theme-switch-pad);
  border: 0.09375rem solid var(--line-2);
  border-radius: 0.9375rem;
  background: transparent;
  cursor: pointer;
  position: relative;
  flex: none;
  transition: border-color 0.2s ease;
}
.theme-switch:hover {
  border-color: var(--border-hover);
}
.theme-switch:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}
.theme-switch__thumb {
  position: absolute;
  top: 50%;
  left: var(--theme-switch-pad);
  width: var(--theme-switch-thumb);
  height: var(--theme-switch-thumb);
  border-radius: 50%;
  background: var(--brand);
  color: var(--on-brand);
  transform: translateY(-50%);
  transition: transform 0.3s ease, background-color 0.2s ease, color 0.2s ease;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  line-height: 1;
  pointer-events: none;
}
.theme-switch__thumb::before {
  content: "☼";
}
html[data-theme=dark] .theme-switch__thumb {
  background: var(--panel);
  color: var(--ink);
  box-shadow: inset 0 0 0 0.0625rem var(--line-2);
  transform: translateY(-50%) translateX(var(--theme-switch-travel));
}
html[data-theme=dark] .theme-switch__thumb::before {
  content: "☾";
}

.toolbar {
  position: sticky;
  top: var(--topbar-h, 3.75rem);
  z-index: 40;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.625rem;
  width: 100%;
  box-sizing: border-box;
  padding: 0.875rem;
  border-bottom: 0.0625rem solid var(--line);
  background: var(--panel);
  border-radius: var(--radius) var(--radius) 0 0;
  transition: box-shadow 0.15s ease;
}
@media (min-width: 1024px) {
  .toolbar {
    padding: 1.125rem 1.125rem 1rem;
  }
}
.toolbar.stuck {
  border-radius: 0;
  box-shadow: 0 0.75rem 1.125rem -0.875rem rgba(16, 32, 63, 0.3);
}

.search {
  position: relative;
  order: 1;
  flex: 1 1 100%;
  min-width: 13.125rem;
  max-width: none;
}
@media (min-width: 1024px) {
  .search {
    order: 0;
    flex: 1 1 16.25rem;
    max-width: 30rem;
  }
}
.search .icon {
  position: absolute;
  left: 0.8125rem;
  top: 50%;
  translate: 0 -50%;
  color: var(--muted);
  pointer-events: none;
}
.search input {
  width: 100%;
  padding: 0.625rem 0.875rem 0.625rem 2.5rem;
  border: 0.0625rem solid var(--line-2);
  border-radius: var(--radius-s);
  background: var(--panel);
  color: var(--ink);
}
.search input::placeholder {
  color: var(--muted);
}
.search input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: var(--focus);
}

.filters {
  display: none;
  order: 4;
  flex-basis: 100%;
  flex-wrap: wrap;
  gap: 0.625rem;
  min-width: 0;
  padding-top: 0.125rem;
}
.filters.open {
  display: flex;
}
@media (min-width: 1024px) {
  .filters {
    display: flex;
    order: 0;
    flex-basis: auto;
    padding-top: 0;
  }
}

.toolbar__end {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  order: 3;
  flex-wrap: wrap;
  margin-left: auto;
}
@media (min-width: 1024px) {
  .toolbar__end {
    order: 0;
    flex-wrap: nowrap;
  }
}

.app-shell {
  box-sizing: border-box;
  width: 100%;
  padding-left: 0;
}
@media (min-width: 1536px) {
  html.nav-drawer-transitions .app-shell {
    transition: padding-left var(--nav-drawer-duration) var(--nav-drawer-ease);
  }
  html.nav-drawer-open .app-shell {
    padding-left: var(--nav-drawer-width);
  }
}

.auth {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 100%;
  min-height: calc(100vh - var(--topbar-h, 3.75rem) - var(--bottombar-h, 2.375rem));
}
@media (min-width: 768px) {
  .auth {
    max-width: 28.75rem;
  }
}
.auth .button {
  background-color: var(--blue);
  color: var(--brand-on-primary);
  border-color: var(--blue);
}
.auth .button:hover, .auth .button:focus, .auth .button:active {
  background-color: var(--blue-600);
  color: var(--brand-on-primary);
}
.auth a {
  color: var(--link-color);
  font-size: 1rem;
}
.auth__form {
  background: var(--panel);
  color: var(--ink);
  width: 100%;
  padding: 1.875rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
@media (min-width: 1280px) {
  .auth__form {
    padding: 3.125rem;
  }
}
.auth__block:not(:last-child) {
  margin-bottom: 0.625rem;
}
@media (min-width: 1024px) {
  .auth__block:not(:last-child) {
    margin-bottom: 1.25rem;
  }
}
.auth__block > .message {
  margin-top: 0.375rem;
}
.auth__label {
  display: block;
  font-weight: 400;
  margin-bottom: 0.3125rem;
}
.auth__checkbox {
  align-items: center;
  display: flex;
  cursor: pointer;
  accent-color: var(--blue);
}
.auth__checkbox input {
  margin-right: 0.3125rem;
}
.auth__input {
  width: 100%;
  padding: 0.625rem 0.875rem;
  border: 0.0625rem solid var(--line-2);
  border-radius: var(--radius-s);
  background: var(--panel);
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.5;
  outline: none;
}
.auth__input::placeholder {
  color: var(--muted);
}
.auth__input:focus {
  border-color: var(--blue);
  box-shadow: var(--focus);
}
.auth__login {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.625rem;
}
.auth__login a {
  color: var(--brand-primary);
}
.auth__heading {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.auth__intro {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.auth__role-heading {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.auth__role-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.auth__role-button {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-align: left;
  padding: 1rem 1.25rem;
  text-transform: none;
  font-size: 0.8125rem;
  font-weight: 400;
}
.auth__role-button strong {
  display: block;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
}
.auth__role-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}
.auth__role-desc {
  display: block;
  font-size: 0.75rem;
  opacity: 0.8;
}
.auth__role-logout {
  margin-top: 1.5rem;
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.3);
  padding-top: 1rem;
}
.auth__role-logout-btn {
  background-color: #ffffff;
  border: 0.0625rem solid #ffffff;
  color: var(--blue);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.auth__role-logout-btn svg {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
}
.auth__role-logout-btn:hover {
  background-color: var(--blue);
  color: var(--brand-on-primary);
  border-color: var(--blue);
}
.auth__actions {
  width: 100%;
}
@media (min-width: 768px) {
  .auth__actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.auth__actions .button {
  font-size: 0.875rem !important;
  width: 100% !important;
}
@media (min-width: 768px) {
  .auth__actions .button {
    width: auto !important;
  }
}

.backend__section {
  background: var(--panel);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: block;
  margin-top: 1.125rem;
  max-width: 100%;
  overflow: hidden;
  padding: 0.875rem 1rem 1rem;
  width: 100%;
}
.backend__section:has(> .vue-table), .backend__section:has(> .backend__section-title:only-child), .backend__section:has(> h2:only-child) {
  background: transparent;
  box-shadow: none;
  overflow: visible;
  padding: 0;
}
.backend__section:has(> .vue-table) .backend__section-title,
.backend__section:has(> .vue-table) > h2, .backend__section:has(> .backend__section-title:only-child) .backend__section-title,
.backend__section:has(> .backend__section-title:only-child) > h2, .backend__section:has(> h2:only-child) .backend__section-title,
.backend__section:has(> h2:only-child) > h2 {
  margin-bottom: 0.875rem;
  padding: 0 1rem;
}
.backend__section h2 {
  color: var(--brand);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.backend__section-title {
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--brand);
}
.backend__role-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.backend__role-switcher form {
  display: inline;
}
.backend__hint {
  color: var(--muted);
  font-style: italic;
}
.backend__session-schedule-export {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.875rem;
}
.backend__consent-box {
  background-color: var(--panel);
  border: 0.1875rem solid var(--brand);
  padding: 1.25rem 1.5rem;
}
@media (min-width: 768px) {
  .backend__consent-box {
    margin: 1.25rem auto 0;
    width: 50%;
  }
}
.backend__consent-box .backend__section-title {
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.backend__consent-box .backend__hint {
  margin-bottom: 1.25rem;
}
.backend__consent-box .form {
  margin-top: 1.25rem;
}
.backend__consent-box .form__block p {
  margin-bottom: 0.3125rem;
}
.backend__consent-box .form__checkbox-label {
  margin-top: 0.28125rem;
}
@media (min-width: 768px) {
  .backend__consent-box .form__actions {
    margin-top: 1.875rem;
  }
}
.backend__consent-box .form__actions .btn {
  width: 100% !important;
}
.backend__consent-box .backend__consent-link {
  background: none;
  border: none;
  color: var(--link-color-panel);
  cursor: pointer;
  font: inherit;
  padding: 0;
  text-decoration: underline;
}
.backend__consent-box .backend__consent-link:hover, .backend__consent-box .backend__consent-link:focus {
  color: var(--ink-hover);
  text-decoration: underline;
}

.content-form {
  padding: 0.625rem;
}
@media (min-width: 768px) {
  .content-form {
    padding: 1.875rem;
  }
}
@media (min-width: 1280px) {
  .content-form {
    padding: 3.125rem;
  }
}
.content-form__content {
  display: flex;
  justify-content: space-between;
}
.content-form__content form {
  width: 100%;
}
.content-form__wrap {
  width: 59.375rem;
  margin: 0 auto;
}
.content-form__sidebar {
  width: 12.5rem;
  display: none;
}
@media (min-width: 1280px) {
  .content-form__sidebar {
    display: block;
  }
}
.content-form__sidebar .button {
  width: 100%;
  margin-top: 1.25rem;
}
@media (min-width: 1280px) {
  .content-form__sidebar .button {
    margin-top: 1.875rem;
  }
}
.content-form__main {
  width: 100%;
}
@media (min-width: 1280px) {
  .content-form__main {
    width: calc(100% - 14.375rem);
  }
}
.content-form__headline {
  margin-bottom: 0.625rem;
}
@media (min-width: 768px) {
  .content-form__headline {
    margin-bottom: 1.25rem;
  }
}
.content-form__subheadline {
  margin-bottom: 0.625rem;
}
@media (min-width: 768px) {
  .content-form__subheadline {
    margin-bottom: 1.25rem;
  }
}
.content-form__section:not(:last-child) {
  margin-bottom: 1.875rem;
}
.content-form__section--post {
  width: 100%;
}
.content-form__post {
  background-color: var(--panel);
}
.content-form__post .form__buttons {
  margin-top: 0.625rem;
  padding: 0 0.625rem;
}
@media (min-width: 768px) {
  .content-form__post .form__buttons {
    margin-top: 1.875rem;
    padding: 0 1.875rem;
  }
}
@media (min-width: 1280px) {
  .content-form__post .form__buttons {
    padding: 0 3.125rem;
  }
}
.content-form__container {
  padding: 0 0.625rem 0.625rem;
}
@media (min-width: 768px) {
  .content-form__container {
    padding: 0 1.875rem 1.875rem;
  }
}
@media (min-width: 1280px) {
  .content-form__container {
    padding: 0 3.125rem 3.125rem;
  }
}

.error-page {
  display: flex;
  justify-content: center;
  padding: 1.25rem 0 2.5rem;
}
.error-page__panel {
  background-color: #f1f5fb;
  border-left: 0.1875rem solid var(--blue);
  box-shadow: 0 0 0 0.0625rem rgba(212, 221, 236, 0.15);
  max-width: 40rem;
  padding: 1.25rem 1.5rem;
  width: 100%;
}
@media (min-width: 768px) {
  .error-page__panel {
    padding: 1.5rem 1.75rem;
  }
}
.error-page__code {
  color: var(--blue);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}
.error-page__title {
  color: #10203f;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
  .error-page__title {
    font-size: 1.375rem;
  }
}
.error-page__text {
  color: #10203f;
  font-size: 0.875rem;
  line-height: 1.5rem;
  margin-bottom: 0.75rem;
}
.error-page__detail {
  background-color: #ffffff;
  border-left: 0.1875rem solid var(--blue);
  color: #3a4a6b;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  padding: 0.75rem 0.875rem 0.75rem 1rem;
}
.error-page__continue {
  margin: 0;
}
.error-page__link {
  color: #10203f;
  font-size: 0.875rem;
  line-height: 1.875rem;
  text-decoration: underline;
}
.error-page__link:hover, .error-page__link:focus {
  color: var(--blue);
}

.info {
  background-color: #69769a;
  padding: 0.625rem;
  font-size: 1rem;
  line-height: 1.875rem;
  margin-bottom: 0.625rem;
}
@media (min-width: 1280px) {
  .info--small {
    margin: 0 auto 1.25rem;
    width: 75%;
  }
}
@media (min-width: 768px) {
  .info {
    padding: 1.25rem;
    margin-bottom: 1.25rem;
  }
}
.info h2 {
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 1.5;
  margin: 1.875rem 0 0.625rem;
}
.info ul {
  list-style-type: disc;
  margin-left: 0.9375rem;
}
.info p a {
  text-decoration: underline;
  color: #10203f;
}
.info__top {
  margin-bottom: 1.25rem;
}
.info__top p {
  font-size: 0.875rem;
}
@media (min-width: 1024px) {
  .info__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
  }
}
.info__comment {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.625rem;
  margin-top: 0.625rem;
}
.info__comment-input {
  width: 75%;
}
.info__comment-button {
  width: 25%;
}
.info__comment-button .button {
  margin-top: 0 !important;
}
.info__placeholder {
  display: inline-block;
  cursor: pointer;
}
.info__placeholder:not(:last-child) {
  margin-right: 0.3125rem;
}
.info__list:not(:last-child) {
  margin-bottom: 1.25rem;
}
@media (min-width: 1024px) {
  .info__buttons {
    display: flex;
    justify-content: space-between;
  }
}
.info__buttons .button {
  width: 100%;
  max-width: none !important;
}
@media (min-width: 1024px) {
  .info__buttons .button {
    width: auto;
  }
}
.info__buttons .button:not(:last-child) {
  margin-right: 0.625rem;
}
.info__review {
  margin-top: 1.25rem;
}
.info__review .button {
  max-width: none !important;
  width: 100%;
}
.info__review .info__buttons {
  margin-top: 1.25rem;
}
@media (min-width: 1024px) {
  .info__review .info__buttons {
    margin-top: 0;
  }
}
.info__review .info__buttons .button {
  margin-top: 0 !important;
}
@media (min-width: 1024px) {
  .info__review {
    align-items: center;
    display: flex;
    justify-content: space-between;
  }
  .info__review .button {
    width: auto !important;
    max-width: 21.875rem !important;
  }
}
.info .button {
  margin-top: 1.25rem;
  max-width: 25rem;
  width: 100%;
}

:root {
  --nav-drawer-width: min(13.75rem, 100vw - 3rem);
  --nav-drawer-duration: 0.35s;
  --nav-drawer-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --nav-content-inline-padding: 1.25rem;
}

.nav-drawer__overlay {
  position: fixed;
  inset: 0;
  z-index: 65;
  background: color-mix(in srgb, var(--ink) 38%, transparent);
  opacity: 0;
  pointer-events: none;
}
html.nav-drawer-transitions .nav-drawer__overlay {
  transition: opacity var(--nav-drawer-duration) var(--nav-drawer-ease);
}
.nav-drawer__overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}
@media (min-width: 1536px) {
  .nav-drawer__overlay {
    display: none;
  }
}

.nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 70;
  width: min(20rem, 100vw - 3rem);
  height: 100vh;
  height: 100dvh;
  overflow-x: hidden;
  overflow-y: auto;
  background: var(--panel);
  box-shadow: var(--shadow);
  padding: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  transform: translateX(-100%);
  pointer-events: none;
}
html.nav-drawer-transitions .nav-drawer {
  transition: transform var(--nav-drawer-duration) var(--nav-drawer-ease);
}
html.nav-drawer-open .nav-drawer {
  transform: translateX(0);
  pointer-events: auto;
}
@media (min-width: 1536px) {
  .nav-drawer {
    top: var(--topbar-h, 3.375rem);
    height: calc(100vh - var(--topbar-h, 3.375rem) - var(--bottombar-h, 2.375rem));
    z-index: 50;
    width: var(--nav-drawer-width);
    box-shadow: none;
    border-right: 0.0625rem solid var(--line);
    padding: 1rem 0.75rem 1.5rem;
  }
}
.nav-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: var(--topbar-h, 3.375rem);
  padding: 0 1rem;
  border-bottom: 0.0625rem solid var(--line);
  flex: none;
  position: sticky;
  top: 0;
  background: var(--panel);
  z-index: 1;
}
@media (min-width: 1536px) {
  .nav-drawer__head {
    display: none;
  }
}
.nav-drawer__brand {
  font-size: 1.1875rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .nav-drawer__brand {
    font-size: 1.375rem;
  }
}
.nav-drawer__close {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  display: grid;
  place-items: center;
  color: var(--ink-2);
  transition: background 0.12s ease, color 0.12s ease;
}
.nav-drawer__close:hover {
  background: var(--brand-10);
  color: var(--brand);
}
.nav-drawer__nav {
  padding: 0.75rem 1rem 0;
  flex: 1;
  min-height: 0;
}
@media (min-width: 1536px) {
  .nav-drawer__nav {
    padding: 0;
  }
}
.nav-drawer__role-switcher {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--brand-10);
  border-radius: var(--radius-s);
  padding: 0.625rem 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.8125rem;
  color: var(--on-accent);
}
.nav-drawer__role-switch-link {
  color: var(--link-color);
  font-weight: 700;
  text-decoration: none;
}
.nav-drawer__role-switch-link:hover {
  text-decoration: underline;
}
.nav-drawer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-drawer__list > li {
  margin: 0;
}
.nav-drawer__list > li > a,
.nav-drawer__list > li > .nav-submenu-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.625rem 0.75rem;
  border-radius: 0.5rem;
  color: var(--ink-2);
  font-size: 0.875rem;
  text-decoration: none;
  transition: background 0.12s ease, color 0.12s ease;
}
.nav-drawer__list > li > a .icon,
.nav-drawer__list > li > .nav-submenu-toggle .icon {
  width: 0.875rem;
  height: 0.875rem;
  color: var(--muted);
  transition: transform 0.15s ease;
}
.nav-drawer__list > li > a:hover,
.nav-drawer__list > li > .nav-submenu-toggle:hover {
  background: var(--brand-05);
  color: var(--ink);
}
.nav-drawer__list > li.is-active > a {
  color: var(--link-color-panel);
  font-weight: 900;
}
.nav-drawer__list > li.has-submenu.is-open > .nav-submenu-toggle .icon {
  transform: rotate(180deg);
}

.nav-submenu-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.2s ease;
}
.nav-submenu-panel__inner {
  overflow: hidden;
}

.has-submenu.is-open > .nav-submenu-panel {
  grid-template-rows: 1fr;
}

.nav-submenu {
  list-style: none;
  margin: 0;
  padding: 0.25rem 0 0.5rem 0.75rem;
}
.nav-submenu li {
  margin: 0;
}
.nav-submenu li a,
.nav-submenu li > span,
.nav-submenu li > .nav-submenu-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.4375rem 0.75rem;
  border-radius: 0.5rem;
  color: var(--muted);
  font-size: 0.8125rem;
  text-decoration: none;
  transition: background 0.12s ease, color 0.12s ease;
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
  text-align: left;
}
.nav-submenu li a .icon,
.nav-submenu li > span .icon,
.nav-submenu li > .nav-submenu-toggle .icon {
  width: 0.75rem;
  height: 0.75rem;
  color: var(--muted);
  transition: transform 0.15s ease;
}
.nav-submenu li a:hover,
.nav-submenu li > span:hover,
.nav-submenu li > .nav-submenu-toggle:hover {
  background: var(--brand-05);
  color: var(--ink-2);
}
.nav-submenu li.is-active > a {
  color: var(--link-color-panel);
  font-weight: 900;
}
.nav-submenu li.is-disabled > a,
.nav-submenu li.is-disabled > span {
  opacity: 0.48;
  color: color-mix(in srgb, var(--muted-2) 78%, var(--line-2));
  cursor: not-allowed;
  font-weight: 400;
}
.nav-submenu li.is-disabled > a:hover,
.nav-submenu li.is-disabled > span:hover {
  background: transparent;
  color: color-mix(in srgb, var(--muted-2) 78%, var(--line-2));
  opacity: 0.48;
}
.nav-submenu li.has-submenu.is-open > .nav-submenu-toggle .icon {
  transform: rotate(180deg);
}
.nav-submenu li .nav-submenu {
  padding-left: 0.5rem;
}

.page {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 1.375rem var(--nav-content-inline-padding) calc(var(--bottombar-h, 2.375rem) + 1rem);
  box-sizing: border-box;
}
.page > .backend__section,
.page > .vue-table,
.page .vue-table {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
.page > .vue-table + .form__actions {
  margin-top: 1.125rem;
}
.page__head {
  align-items: flex-end;
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  justify-content: space-between;
  margin: 0.375rem 0 0.75rem;
}
.page__head-main {
  min-width: 0;
}
.page__head h1 {
  margin: 0;
  color: var(--ink);
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.01em;
}
.page__head-subtitle {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.78125rem;
}
@media (min-width: 768px) {
  .page__head {
    margin-bottom: 1.125rem;
  }
  .page__head h1 {
    font-size: clamp(1.375rem, 2.3vw, 1.75rem);
  }
  .page__head-subtitle {
    font-size: 0.8125rem;
  }
}

.bottombar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 60;
  display: flex;
  align-items: stretch;
  background: var(--panel);
  border-top: 0.0625rem solid var(--line);
}
.bottombar__inner {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0.625rem 0.875rem;
}
@media (min-width: 768px) {
  .bottombar__inner {
    padding: 0.625rem 1.25rem;
  }
}
.bottombar__links {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  line-height: 1.2;
}
.bottombar__link {
  color: var(--ink-2);
  text-decoration: none;
  transition: color 0.12s ease;
}
.bottombar__link:hover {
  color: var(--link-color-panel);
}
.bottombar__sep {
  color: var(--muted);
}

html[data-topbar-logo-invert=true] .event__logo[data-logo-dark=true] {
  filter: brightness(0) invert(1);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: stretch;
  min-height: 3.375rem;
  background: var(--panel);
  border-bottom: 0.0625rem solid var(--line);
  isolation: isolate;
}
@media (min-width: 768px) {
  .topbar {
    min-height: 3.75rem;
  }
}
.topbar__sq {
  position: relative;
  z-index: 1;
  width: 3rem;
  min-height: 3.375rem;
  display: grid;
  place-items: center;
  background: var(--brand);
  color: var(--on-brand);
  transition: background 0.15s ease;
}
@media (min-width: 768px) {
  .topbar__sq {
    width: 3.5rem;
    min-height: 3.75rem;
  }
}
.topbar__sq:hover {
  background: var(--brand-dark);
}
.topbar__sq .icon--menu-close {
  display: none;
}
html.nav-drawer-open .topbar__sq#btnMenu .icon--menu-open {
  display: none;
}
html.nav-drawer-open .topbar__sq#btnMenu .icon--menu-close {
  display: block;
}
.topbar__inner {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  padding: 0 0.875rem;
}
@media (min-width: 768px) {
  .topbar__inner {
    padding: 0 1.25rem;
  }
}
.topbar__actions {
  position: relative;
  z-index: 1;
}
.topbar__logout-form {
  display: contents;
}
.topbar__actions:not(:has(.topbar__logout-form)) {
  padding-right: 0.875rem;
}
@media (min-width: 768px) {
  .topbar__actions:not(:has(.topbar__logout-form)) {
    padding-right: 1.25rem;
  }
}

.topbar-setup {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.625rem;
  border-radius: var(--pill);
  background: var(--brand-10);
  color: var(--brand-dark);
  text-decoration: none;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  margin-right: 0.25rem;
}
@media (min-width: 768px) {
  .topbar-setup {
    padding: 0.4375rem 0.75rem;
    margin-right: 0.5rem;
  }
}
.topbar-setup:hover {
  background: var(--brand-20);
  color: var(--brand-dark);
  text-decoration: none;
}
.topbar-setup__ring {
  position: relative;
  width: 1.75rem;
  height: 1.75rem;
  flex: none;
}
.topbar-setup__ring svg {
  transform: rotate(-90deg);
  display: block;
}
.topbar-setup__ring-track {
  stroke: color-mix(in srgb, var(--brand) 18%, var(--line-2));
  fill: none;
}
.topbar-setup__ring-fill {
  stroke: var(--brand);
  fill: none;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.4s ease;
}
.topbar-setup__ring-pct {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.5rem;
  font-weight: 900;
  color: var(--brand-dark);
  letter-spacing: 0;
}
.topbar-setup__label {
  display: none;
}
@media (min-width: 768px) {
  .topbar-setup__label {
    display: inline;
  }
}
.topbar-setup__step {
  color: var(--brand);
}

.brand {
  font-size: 1.1875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .brand {
    font-size: 1.375rem;
  }
}

.event {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 0;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 0.625rem;
  min-width: 0;
  max-width: calc(100% - 7.5rem);
  pointer-events: none;
}
.topbar:has(.topbar-setup) .event {
  max-width: calc(100% - 17.5rem);
}
@media (max-width: 1279px) {
  .topbar:has(.topbar-setup) .event {
    max-width: calc(100% - 13.75rem);
  }
}
.event__logo {
  height: 1.75rem;
  width: auto;
  max-width: min(100%, 12.5rem);
  display: block;
  flex: none;
  object-fit: contain;
}
@media (min-width: 768px) {
  .event__logo {
    height: 2.125rem;
    max-width: min(100%, 15rem);
  }
}
.event__title {
  display: none;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}
@media (min-width: 1024px) {
  .event__title {
    display: block;
    font-size: 1.125rem;
  }
}
@media (max-width: 1279px) {
  .event__title {
    max-width: 11.25rem;
  }
}

html.is-drawer-open,
body.frontend.is-drawer-open {
  overflow: hidden;
  overscroll-behavior: none;
}

html:has(body.frontend) {
  scroll-behavior: smooth;
  min-height: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html:has(body.frontend) {
    scroll-behavior: auto;
  }
}

body.frontend {
  --frontend-ink: #16161F;
  --frontend-paper: #f5f4f0;
  --frontend-text-on-ink: #f5f4f0;
  --frontend-text-on-ink-dim: #9c9cab;
  --frontend-text-dim: #5a5a66;
  --frontend-line: #dedcd3;
  --frontend-ink-2: #1f1f2b;
  --frontend-wrap: 73.75rem;
  --frontend-stage-bar-height: 0px;
  --frontend-header-height: 4.25rem;
  --frontend-chrome-height: calc(var(--frontend-stage-bar-height) + var(--frontend-header-height));
}
body.frontend.has-stage-bars {
  --frontend-stage-bar-height: 0.3125rem;
}
body.frontend {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
  font-family: "DM Sans", sans-serif;
  background: var(--frontend-paper);
  color: var(--frontend-ink);
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  body.frontend {
    scroll-behavior: auto;
  }
}
body.frontend .page {
  display: flex;
  flex: 1 0 auto;
  flex-direction: column;
  padding: 0;
  max-width: none;
}

.frontend-logo--on-dark {
  filter: brightness(0) invert(1);
}

.frontend-convention-name {
  font-family: "DM Sans", sans-serif;
  font-weight: 800;
  color: var(--frontend-header-font, var(--frontend-text-on-ink));
  line-height: 1;
}
.frontend-convention-name--header {
  display: block;
  letter-spacing: 0.02em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.frontend-convention-name--hero {
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.86;
  max-width: 100%;
  word-break: break-word;
}
.frontend-convention-name__dot {
  color: var(--brand-primary);
}

.frontend-hero .frontend-convention-name {
  color: var(--frontend-section-fg, var(--frontend-text-on-ink));
}

.frontend-about,
.frontend-stages,
.frontend-program,
.frontend-speakers,
.frontend-sponsors {
  scroll-margin-top: var(--frontend-chrome-height);
}

.frontend-header {
  position: fixed;
  top: var(--frontend-stage-bar-height);
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--frontend-header-height);
  background: var(--frontend-header-bg, rgba(22, 22, 31, 0.92));
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--frontend-header-border, rgba(255, 255, 255, 0.08));
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.frontend-header__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--frontend-wrap);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.frontend-header__brand {
  display: block;
  flex-shrink: 1;
  min-width: 0;
  max-width: min(17.5rem, 45vw);
  text-decoration: none;
}
.frontend-header__brand .frontend-logo {
  display: block;
  height: var(--frontend-header-height);
  width: auto;
  max-width: min(100%, 17.5rem);
  object-fit: contain;
}
.frontend-header__brand:hover, .frontend-header__brand:focus, .frontend-header__brand:active {
  text-decoration: none;
}
.frontend-header__nav {
  align-items: center;
  display: flex;
  gap: 0.25rem;
}
.frontend-header__link {
  border-radius: 62.4375rem;
  color: var(--frontend-header-font-dim, var(--frontend-text-on-ink-dim));
  font-size: 0.90625rem;
  font-weight: 500;
  padding: 0.5625rem 0.9375rem;
  transition: background 0.2s ease, color 0.2s ease;
}
.frontend-header__link:hover {
  background: var(--frontend-header-link-hover-bg, rgba(255, 255, 255, 0.08));
  color: var(--frontend-header-font, var(--frontend-text-on-ink));
}
.frontend-header__toggle {
  appearance: none;
  background: none;
  border: 0;
  color: var(--frontend-header-font, var(--frontend-text-on-ink));
  cursor: pointer;
  display: none;
  font-size: 1.375rem;
  line-height: 1;
  padding: 0.25rem;
}

.frontend-stage-bars {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  height: var(--frontend-stage-bar-height);
  display: flex;
}
.frontend-stage-bars i {
  flex: 1;
}

.frontend-hero {
  position: relative;
  padding: 9.375rem 0 5.625rem;
  overflow: hidden;
}
.frontend-hero__spot {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: min(68.75rem, 120vw);
  height: 45rem;
  background: radial-gradient(ellipse at center, color-mix(in srgb, var(--brand-primary) 35%, transparent), color-mix(in srgb, var(--brand-primary) 6%, transparent) 45%, transparent 70%);
  pointer-events: none;
  filter: blur(0.25rem);
}
.frontend-hero__wrap {
  position: relative;
  z-index: 2;
  max-width: var(--frontend-wrap);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.frontend-hero__eyebrow {
  margin: 0 0 1.125rem;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--frontend-section-accent, #e9a6ab);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}
.frontend-hero__eyebrow-sep {
  opacity: 0.6;
}
.frontend-hero__wordmark-wrap {
  margin: 1.125rem 0 0.375rem;
}
.frontend-hero__wordmark-wrap .frontend-logo {
  display: block;
  width: auto;
  height: auto;
  max-width: min(100%, 37.5rem);
  max-height: 12.5rem;
  object-fit: contain;
}
.frontend-hero__subline {
  font-weight: 500;
  font-size: clamp(1.25rem, 3vw, 1.875rem);
  line-height: 1.15;
  max-width: 16ch;
  letter-spacing: -0.01em;
  margin-top: 1.125rem;
}
.frontend-hero__subline p {
  margin: 0;
}
.frontend-hero__text {
  margin-top: 1.25rem;
  max-width: 52ch;
  color: var(--frontend-section-fg-soft, var(--frontend-text-on-ink-dim));
  font-size: 1.0625rem;
  line-height: 1.55;
}
.frontend-hero__text p {
  margin: 0;
}
.frontend-hero__text p + p {
  margin-top: 1rem;
}
.frontend-hero__text ul,
.frontend-hero__text ol {
  margin: 0.75rem 0 0;
  padding-left: 1.2em;
}
.frontend-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin: 1.875rem 0 2.125rem;
}
.frontend-hero__chip {
  font-size: 0.78125rem;
  letter-spacing: 0.04em;
  padding: 0.5rem 0.875rem;
  border: 1px solid var(--frontend-section-chip-border, rgba(255, 255, 255, 0.16));
  border-radius: 62.4375rem;
  color: var(--frontend-section-fg, var(--frontend-text-on-ink));
}
.frontend-hero__chip b {
  color: var(--frontend-section-accent, var(--brand-primary));
  font-weight: 500;
}
.frontend-hero__cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.frontend-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.8125rem 1.375rem;
  border-radius: 62.4375rem;
  border: 1.5px solid transparent;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.frontend-hero__btn:hover, .frontend-hero__btn:focus, .frontend-hero__btn:active {
  text-decoration: none;
}
.frontend-hero__btn:active {
  transform: translateY(1px);
}
.frontend-hero__btn--ghost {
  background: transparent;
  border-color: currentColor;
  color: var(--frontend-section-fg, var(--frontend-text-on-ink));
}
.frontend-hero__btn--ghost:hover {
  background: var(--frontend-section-ghost-hover-bg, rgba(255, 255, 255, 0.08));
}

.frontend-about {
  padding: 6rem 0;
}
.frontend-about__wrap {
  max-width: var(--frontend-wrap);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.frontend-about__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: start;
}
.frontend-about__grid--single {
  grid-template-columns: 1fr;
}
.frontend-about__lead {
  font-weight: 500;
  font-size: clamp(1.375rem, 2.6vw, 1.875rem);
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.frontend-about__lead p {
  margin: 0;
}
.frontend-about__eyebrow {
  display: block;
  margin-bottom: 1.125rem;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--frontend-section-fg-muted, var(--frontend-text-dim));
}
.frontend-about__body {
  margin-top: 1.375rem;
  color: var(--frontend-section-fg-soft, var(--frontend-text-dim));
  font-size: 1.0625rem;
  line-height: 1.55;
}
.frontend-about__body p {
  margin: 0;
}
.frontend-about__body p + p {
  margin-top: 1rem;
}
.frontend-about__body ul,
.frontend-about__body ol {
  margin: 0.75rem 0 0;
  padding-left: 1.2em;
}
.frontend-about__facts {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  border-top: 1px solid var(--frontend-section-border, var(--frontend-line));
}
.frontend-about__fact {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--frontend-section-border, var(--frontend-line));
}
.frontend-about__fact-n {
  font-weight: 700;
  font-size: 2.125rem;
  min-width: 4.875rem;
  line-height: 1;
}
.frontend-about__fact-l {
  color: var(--frontend-section-fg-soft, var(--frontend-text-dim));
  font-size: 0.96875rem;
  line-height: 1.45;
}
.frontend-about__fact-l p {
  margin: 0;
}

.frontend-stages {
  padding: 6rem 0;
}
.frontend-stages__wrap {
  max-width: var(--frontend-wrap);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.frontend-stages__head {
  max-width: 52.5rem;
  margin-bottom: 2.75rem;
}
.frontend-stages__eyebrow {
  display: block;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--frontend-section-fg-muted, var(--frontend-text-on-ink-dim));
}
.frontend-stages__headline {
  font-weight: 700;
  font-size: clamp(1.875rem, 4.6vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.frontend-stages__headline p {
  margin: 0;
}
.frontend-stages__text {
  margin-top: 1rem;
  max-width: 56ch;
  color: var(--frontend-section-fg-soft, var(--frontend-text-on-ink-dim));
  font-size: 1.125rem;
  line-height: 1.55;
}
.frontend-stages__text p {
  margin: 0;
}
.frontend-stages__text p + p {
  margin-top: 1rem;
}
.frontend-stages__text ul,
.frontend-stages__text ol {
  margin: 0.75rem 0 0;
  padding-left: 1.2em;
}
.frontend-stages__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.125rem;
}
.frontend-stages__card {
  position: relative;
  background: var(--frontend-section-surface, var(--frontend-ink-2));
  border: 1px solid var(--frontend-section-surface-border, rgba(255, 255, 255, 0.07));
  border-radius: 1.125rem;
  padding: 1.875rem 1.875rem 1.875rem 2.125rem;
  overflow: hidden;
  color: var(--frontend-section-surface-fg, var(--frontend-text-on-ink));
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.frontend-stages__card:hover {
  transform: translateY(-0.1875rem);
  border-color: var(--frontend-section-chip-border, rgba(255, 255, 255, 0.16));
}
.frontend-stages__bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0.375rem;
}
.frontend-stages__idx {
  font-size: 0.75rem;
  color: var(--frontend-section-surface-fg-muted, var(--frontend-text-on-ink-dim));
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.frontend-stages__name {
  margin: 0.625rem 0 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.frontend-stages__description {
  margin: 0;
  color: var(--frontend-section-surface-fg-muted, var(--frontend-text-on-ink-dim));
  font-size: 0.96875rem;
  line-height: 1.55;
  white-space: pre-line;
}

.frontend-speakers {
  padding: 6rem 0;
}
.frontend-speakers__wrap {
  max-width: var(--frontend-wrap);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.frontend-speakers__head {
  max-width: 52.5rem;
  margin-bottom: 2.75rem;
}
.frontend-speakers__eyebrow {
  display: block;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--frontend-section-fg-muted, var(--frontend-text-dim));
}
.frontend-speakers__headline {
  font-weight: 700;
  font-size: clamp(1.875rem, 4.6vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.frontend-speakers__headline p {
  margin: 0;
}
.frontend-speakers__text {
  margin-top: 1rem;
  max-width: 56ch;
  color: var(--frontend-section-fg-soft, var(--frontend-text-dim));
  font-size: 1.125rem;
  line-height: 1.55;
}
.frontend-speakers__text p {
  margin: 0;
}
.frontend-speakers__text p + p {
  margin-top: 1rem;
}
.frontend-speakers__text ul,
.frontend-speakers__text ol {
  margin: 0.75rem 0 0;
  padding-left: 1.2em;
}
.frontend-speakers__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(13.5rem, 1fr));
  gap: 0.875rem;
}
.frontend-speakers__card {
  background: var(--frontend-section-surface, #fff);
  border: 1px solid var(--frontend-section-surface-border, var(--frontend-line));
  border-radius: 1rem;
  padding: 1.375rem;
  color: var(--frontend-section-surface-fg, var(--frontend-ink));
  transition: transform 0.18s ease, box-shadow 0.2s ease;
}
.frontend-speakers__card:hover {
  transform: translateY(-0.1875rem);
  box-shadow: 0 0.75rem 1.875rem rgba(22, 22, 31, 0.09);
}
.frontend-speakers__avatar {
  align-items: center;
  border-radius: 50%;
  color: #fff;
  display: flex;
  flex: none;
  font-size: 1.1875rem;
  font-weight: 700;
  height: 3.25rem;
  justify-content: center;
  margin-bottom: 1rem;
  width: 3.25rem;
}
.frontend-speakers__avatar--photo {
  display: block;
  object-fit: cover;
}
.frontend-speakers__name {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0;
}
.frontend-speakers__function {
  color: var(--frontend-section-surface-fg, var(--frontend-ink));
  font-size: 0.875rem;
  margin: 0.375rem 0 0;
}
.frontend-speakers__company {
  color: var(--frontend-section-surface-fg-muted, var(--frontend-text-dim));
  font-size: 0.84375rem;
  margin: 0.125rem 0 0;
}
.frontend-speakers__role {
  align-items: center;
  color: var(--frontend-section-surface-fg-muted, var(--frontend-text-dim));
  display: inline-flex;
  font-size: 0.6875rem;
  gap: 0.4375rem;
  letter-spacing: 0.03em;
  margin-top: 0.875rem;
}
.frontend-speakers__role-swatch {
  border-radius: 50%;
  flex: none;
  height: 0.5rem;
  width: 0.5rem;
}

.frontend-sponsors {
  padding: 6rem 0;
}
.frontend-sponsors__wrap {
  max-width: var(--frontend-wrap);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.frontend-sponsors__head {
  max-width: 52.5rem;
  margin-bottom: 2.75rem;
}
.frontend-sponsors__eyebrow {
  display: block;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--frontend-section-fg-muted, var(--frontend-text-dim));
}
.frontend-sponsors__headline {
  font-weight: 700;
  font-size: clamp(1.875rem, 4.6vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.frontend-sponsors__headline p {
  margin: 0;
}
.frontend-sponsors__text {
  margin-top: 1rem;
  max-width: 56ch;
  color: var(--frontend-section-fg-soft, var(--frontend-text-dim));
  font-size: 1.125rem;
  line-height: 1.55;
}
.frontend-sponsors__text p {
  margin: 0;
}
.frontend-sponsors__text p + p {
  margin-top: 1rem;
}
.frontend-sponsors__tier {
  margin-bottom: 2.125rem;
}
.frontend-sponsors__tier:last-child {
  margin-bottom: 0;
}
.frontend-sponsors__tier-label {
  color: var(--frontend-section-fg-muted, var(--frontend-text-dim));
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  margin-bottom: 0.875rem;
  text-transform: uppercase;
}
.frontend-sponsors__logos {
  display: grid;
  gap: 0.75rem;
}
.frontend-sponsors__logos--presenting {
  grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
}
.frontend-sponsors__logos--partner {
  grid-template-columns: repeat(auto-fill, minmax(11.25rem, 1fr));
}
.frontend-sponsors__logos--media {
  grid-template-columns: repeat(auto-fill, minmax(9.375rem, 1fr));
}
.frontend-sponsors__logo {
  align-items: center;
  background: var(--frontend-section-surface, #fff);
  border: 1px dashed var(--frontend-section-surface-border, var(--frontend-line));
  border-radius: 0.875rem;
  color: var(--frontend-section-surface-fg-muted, #b7b4a9);
  display: flex;
  font-size: 0.75rem;
  justify-content: center;
  letter-spacing: 0.04em;
  padding: 0.75rem;
  text-align: center;
  text-decoration: none;
  transition: box-shadow 0.2s ease, transform 0.18s ease;
}
.frontend-sponsors__logo:hover, .frontend-sponsors__logo:focus, .frontend-sponsors__logo:active {
  box-shadow: 0 0.5rem 1.5rem rgba(22, 22, 31, 0.08);
  text-decoration: none;
  transform: translateY(-0.125rem);
}
.frontend-sponsors__logo img {
  display: block;
  height: auto;
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  width: auto;
}
.frontend-sponsors__logo span {
  line-height: 1.35;
}
.frontend-sponsors__logos--presenting .frontend-sponsors__logo {
  min-height: 6rem;
}
.frontend-sponsors__logos--partner .frontend-sponsors__logo {
  min-height: 4.875rem;
}
.frontend-sponsors__logos--media .frontend-sponsors__logo {
  min-height: 4rem;
}

.frontend-footer {
  background: var(--frontend-footer-bg, var(--frontend-ink));
  border-top: 1px solid var(--frontend-footer-border, rgba(255, 255, 255, 0.08));
  color: var(--frontend-footer-font-dim, var(--frontend-text-on-ink-dim));
  padding: 3.5rem 0 2.5rem;
}
.frontend-footer__wrap {
  max-width: var(--frontend-wrap);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.frontend-footer__main {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  gap: 1.875rem;
  justify-content: space-between;
}
.frontend-footer__logo {
  display: inline-block;
  margin-bottom: 0.625rem;
  text-decoration: none;
}
.frontend-footer__logo .frontend-logo {
  display: block;
  height: 1.75rem;
  width: auto;
}
.frontend-footer__logo:hover, .frontend-footer__logo:focus, .frontend-footer__logo:active {
  text-decoration: none;
}
.frontend-footer__tagline {
  font-size: 0.84375rem;
  line-height: 1.55;
  margin: 0;
  max-width: 34ch;
}
.frontend-footer__tagline strong {
  color: var(--frontend-footer-font, var(--frontend-text-on-ink));
  font-weight: 600;
}
.frontend-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.625rem;
}
.frontend-footer__link {
  color: inherit;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s ease;
}
.frontend-footer__link:hover, .frontend-footer__link:focus, .frontend-footer__link:active {
  color: var(--frontend-footer-font, #fff);
  text-decoration: none;
}
.frontend-footer__bottom {
  align-items: center;
  border-top: 1px solid var(--frontend-footer-border, rgba(255, 255, 255, 0.08));
  display: flex;
  flex-wrap: wrap;
  font-size: 0.78125rem;
  gap: 0.625rem;
  justify-content: space-between;
  letter-spacing: 0.03em;
  margin-top: 2.5rem;
  padding-top: 1.375rem;
}
.frontend-footer__legal {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.frontend-legal-page {
  background: var(--frontend-paper);
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: calc(var(--frontend-chrome-height) + 2rem) 0 2rem;
}
.frontend-legal-page__wrap {
  flex: 1;
  max-width: var(--frontend-wrap);
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}
.frontend-legal-page__title {
  font-size: clamp(2.125rem, 5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 1.75rem;
}
.frontend-legal-page__content {
  color: var(--frontend-ink);
  font-size: 1rem;
  line-height: 1.65;
}
.frontend-legal-page__content p {
  margin: 0;
}
.frontend-legal-page__content p + p {
  margin-top: 1rem;
}
.frontend-legal-page__content a {
  color: var(--brand-primary);
  text-decoration: underline;
  text-underline-offset: 0.12em;
}
.frontend-legal-page__content a:hover, .frontend-legal-page__content a:focus, .frontend-legal-page__content a:active {
  color: var(--brand-primary);
}
.frontend-legal-page__content ul,
.frontend-legal-page__content ol {
  margin: 1rem 0 0;
  padding-left: 1.2em;
}
.frontend-legal-page__content h1 + ul,
.frontend-legal-page__content h2 + ul,
.frontend-legal-page__content h3 + ul,
.frontend-legal-page__content h4 + ul,
.frontend-legal-page__content h1 + ol,
.frontend-legal-page__content h2 + ol,
.frontend-legal-page__content h3 + ol,
.frontend-legal-page__content h4 + ol,
.frontend-legal-page__content h1 + p,
.frontend-legal-page__content h2 + p,
.frontend-legal-page__content h3 + p,
.frontend-legal-page__content h4 + p {
  margin-top: 0.375rem;
}
.frontend-legal-page__content li + li {
  margin-top: 0.5rem;
}
.frontend-legal-page__content hr {
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  margin: 2.5rem 0;
}
.frontend-legal-page__content h1,
.frontend-legal-page__content h2,
.frontend-legal-page__content h3,
.frontend-legal-page__content h4 {
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 1.25rem 0 0;
}
.frontend-legal-page__content h1:first-child,
.frontend-legal-page__content h2:first-child,
.frontend-legal-page__content h3:first-child,
.frontend-legal-page__content h4:first-child {
  margin-top: 0;
}
.frontend-legal-page__content h1,
.frontend-legal-page__content h2 {
  font-size: 1.5rem;
}
.frontend-legal-page__content h3 {
  font-size: 1.25rem;
}

@media (max-width: 767px) {
  .frontend-header__toggle {
    display: block;
  }
  .frontend-header__nav {
    background: var(--frontend-header-nav-bg, var(--frontend-ink));
    border-bottom: 1px solid var(--frontend-header-border, rgba(255, 255, 255, 0.1));
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    left: 0;
    padding: 1.125rem 1.5rem;
    position: absolute;
    right: 0;
    top: 100%;
  }
  .frontend-header__nav.is-open {
    display: flex;
  }
  .frontend-header__link {
    padding: 0.25rem 0;
  }
  .frontend-hero {
    padding-top: 7.5rem;
    padding-bottom: 4.125rem;
  }
  .frontend-about {
    padding: 4.5rem 0;
  }
  .frontend-about__grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }
  .frontend-stages {
    padding: 4.5rem 0;
  }
  .frontend-stages__grid {
    grid-template-columns: 1fr;
  }
  .frontend-speakers {
    padding: 4.5rem 0;
  }
  .frontend-sponsors {
    padding: 4.5rem 0;
  }
  .frontend-footer {
    padding: 2.75rem 0 2rem;
  }
  .frontend-footer__main {
    flex-direction: column;
  }
  .frontend-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
  .frontend-legal-page {
    padding-top: calc(var(--frontend-chrome-height) + 1.5rem);
    padding-bottom: 1.5rem;
  }
}
[x-cloak] {
  display: none !important;
}