:root {
    --ink: #15211d;
    --muted: #64746d;
    --paper: #f5f7f2;
    --panel: #ffffff;
    --panel-strong: #ffffff;
    --surface: #eef2ee;
    --surface-strong: #e4ece5;
    --line: rgba(21, 33, 29, 0.12);
    --brand: #0b6f44;
    --brand-strong: #095235;
    --brand-soft: #e6f2eb;
    --graphite: #1c2a25;
    --success: #1f7a4d;
    --warning: #8b6d2c;
    --danger: #97392c;
    --shadow: 0 10px 28px rgba(11, 28, 20, 0.07);
    --radius: 24px;
    --radius-soft: 18px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--ink);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    background: #f3f5f1;
}

h1,
h2,
h3,
h4 {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

p {
    margin: 0;
}

a {
    color: inherit;
}

.hidden {
    display: none !important;
}

.login-shell {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 32px 20px;
}

.login-card {
    width: min(100%, 460px);
    padding: 36px;
    border: 1px solid rgba(11, 111, 68, 0.12);
    border-radius: 30px;
    background: #ffffff;
    box-shadow: var(--shadow);
    display: grid;
    gap: 20px;
}

.login-card__eyebrow,
.page-head__eyebrow,
.panel-head__eyebrow,
.app-rail__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--brand);
}

.brand-lockup {
    display: flex;
    align-items: center;
}

.brand-lockup__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 76px;
    padding: 18px 20px;
    border-radius: 22px;
    background: #f2f6f2;
    border: 1px solid rgba(11, 111, 68, 0.14);
}

.brand-lockup__badge--login {
    justify-content: flex-start;
}

.brand-lockup__logo {
    width: 100%;
    max-width: 220px;
    height: auto;
    display: block;
}

.brand-lockup__badge--topbar {
    width: 240px;
    min-height: 68px;
    padding: 14px 18px;
}

.login-card__copy,
.app-rail__copy,
.panel-head__copy,
.selector-summary__label,
.page-head__copy,
.panel-copy {
    color: var(--muted);
}

.app-shell {
    display: grid;
    gap: 18px;
    min-height: 100vh;
    padding: 24px;
}

.app-topbar,
.app-tabs,
.app-main {
    width: min(100%, 1480px);
    margin: 0 auto;
}

.app-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 22px;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: #ffffff;
    box-shadow: var(--shadow);
}

.app-topbar__brand {
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 0;
}

.app-topbar__copy {
    display: grid;
    gap: 4px;
}

.app-topbar__copy strong {
    font-size: 1.02rem;
}

.app-topbar__copy p:last-child {
    color: var(--muted);
}

.app-topbar__meta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

.app-user {
    display: grid;
    gap: 2px;
    padding-right: 14px;
    margin-right: 2px;
    border-right: 1px solid var(--line);
}

.app-user strong {
    font-size: 1rem;
}

.app-tabs {
    display: flex;
    align-items: center;
    gap: 10px;
}

.app-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 11px 18px;
    border-radius: 16px;
    border: 1px solid rgba(21, 33, 29, 0.1);
    background: #edf3ee;
    color: var(--ink);
    font-size: 0.96rem;
    font-weight: 700;
    text-decoration: none;
    transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.app-tab:hover {
    background: #f7faf7;
    border-color: rgba(11, 111, 68, 0.18);
}

.app-tab--active {
    background: #ffffff;
    border-color: rgba(11, 111, 68, 0.24);
    color: var(--brand-strong);
}

.app-rail {
    border-radius: 30px;
    padding: 26px;
    background: #fff;
    color: var(--ink);
    box-shadow: var(--shadow);
    display: grid;
    gap: 22px;
    align-content: start;
    border: 1px solid rgba(11, 111, 68, 0.12);
}

.app-nav {
    display: grid;
    gap: 12px;
}

.app-nav__item {
    text-decoration: none;
    padding: 14px 16px;
    border-radius: 16px;
    background: #f7faf7;
    border: 1px solid rgba(21, 33, 29, 0.1);
    color: var(--ink);
    font-size: 0.98rem;
    font-weight: 700;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.app-nav__item:hover {
    background: #ffffff;
    border-color: rgba(11, 111, 68, 0.18);
}

.app-nav__item--active {
    background: var(--brand);
    border-color: rgba(11, 111, 68, 0.9);
    color: #ffffff;
    transform: translateX(4px);
}

.rail-card,
.panel {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
    box-shadow: var(--shadow);
}

.rail-card {
    padding: 22px;
    color: var(--ink);
    display: grid;
    gap: 12px;
    background: #ffffff;
}

.app-main {
    display: grid;
    gap: 18px;
    align-content: start;
}

.page-head {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 16px;
    padding: 8px 4px 0;
}

.page-head--page {
    padding-top: 2px;
}

.page-head__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.page-head__title {
    font-size: clamp(1.8rem, 2.7vw, 2.35rem);
    line-height: 1;
}

.page-head__copy {
    max-width: 72ch;
}

.pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 13px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: #ffffff;
    font-size: 0.84rem;
    font-weight: 700;
}

.pill--success {
    color: var(--success);
}

.pill--warning {
    color: var(--warning);
}

.panel {
    padding: 26px;
    background: #ffffff;
}

.panel--access-editor,
.panel--hotel-editor {
    position: relative;
    overflow: hidden;
}

.panel--access-editor::before,
.panel--hotel-editor::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
}

.panel--access-editor {
    border-color: rgba(11, 111, 68, 0.18);
}

.panel--access-editor::before {
    background: linear-gradient(90deg, rgba(11, 111, 68, 0.95) 0%, rgba(73, 170, 125, 0.55) 100%);
}

.panel--hotel-editor {
    border-color: rgba(139, 109, 44, 0.22);
}

.panel--hotel-editor::before {
    background: linear-gradient(90deg, rgba(139, 109, 44, 0.92) 0%, rgba(218, 185, 106, 0.55) 100%);
}

.panel--selector {
    display: grid;
    gap: 18px;
}

.panel--compact {
    padding: 22px;
}

.panel-head {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: start;
    margin-bottom: 18px;
}

.panel-head--compact {
    margin-bottom: 14px;
}

.panel-copy {
    margin-bottom: 16px;
}

.selector-form,
.selector-summary,
.form,
.stack-form {
    display: grid;
    gap: 16px;
}

.selector-summary {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    padding: 16px 18px;
    border-radius: var(--radius-soft);
    background: #f3f7f3;
    border: 1px solid rgba(11, 111, 68, 0.09);
}

.form {
    gap: 18px;
}

.form--login {
    gap: 16px;
}

.field {
    display: grid;
    gap: 8px;
}

.field label,
.field__label {
    font-size: 0.92rem;
    font-weight: 700;
}

.field--inline {
    display: flex;
    align-items: center;
}

.input {
    width: 100%;
    padding: 13px 14px;
    border-radius: 14px;
    border: 1px solid rgba(21, 33, 29, 0.12);
    background: rgba(255, 255, 255, 0.96);
    color: var(--ink);
    font-size: 0.96rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.input:focus {
    outline: none;
    border-color: rgba(11, 111, 68, 0.55);
    box-shadow: 0 0 0 4px rgba(11, 111, 68, 0.1);
}

select.input {
    cursor: pointer;
}

.password-field {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
}

.password-field .input {
    grid-column: 1 / -1;
    grid-row: 1;
    padding-right: 58px;
}

.password-toggle {
    grid-column: 2;
    grid-row: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-right: 6px;
    border: 1px solid transparent;
    border-radius: 12px;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.password-toggle:hover {
    background: var(--brand-soft);
    border-color: rgba(11, 111, 68, 0.16);
    color: var(--brand-strong);
}

.password-toggle:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(11, 111, 68, 0.12);
}

.password-toggle__icon {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.password-toggle__icon--hide,
.password-toggle--shown .password-toggle__icon--show {
    display: none;
}

.password-toggle--shown .password-toggle__icon--hide {
    display: block;
}

.grid {
    display: grid;
    gap: 16px;
}

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

.grid--two {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.grid--three {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.content-grid {
    display: grid;
    gap: 18px;
}

.content-stack {
    display: grid;
    gap: 18px;
    align-content: start;
}

.option-card {
    padding: 20px;
    border-radius: 22px;
    border: 1px solid rgba(11, 111, 68, 0.12);
    background: #fafcf9;
    display: grid;
    gap: 14px;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.option-card-stack {
    display: grid;
    gap: 18px;
}

.option-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.option-card__copy {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.option-card__meta {
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 700;
    text-align: right;
}

.option-card--primary {
    border-color: rgba(11, 111, 68, 0.24);
    background: #f7fcf8;
    box-shadow: 0 0 0 4px rgba(11, 111, 68, 0.06);
}

.advanced-block {
    border-radius: 20px;
    border: 1px solid rgba(11, 111, 68, 0.12);
    padding: 16px 18px;
    background: #f7faf7;
}

.advanced-block__summary {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
    list-style: none;
    font-weight: 700;
}

.advanced-block__summary::-webkit-details-marker {
    display: none;
}

.advanced-block__hint {
    color: var(--muted);
    font-size: 0.85rem;
}

.checkbox-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    color: var(--muted);
}

.checkbox-row label,
.field--inline label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.checkbox-row input,
.field--inline input {
    accent-color: var(--brand);
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 18px;
    border-radius: 15px;
    border: 1px solid rgba(11, 111, 68, 0.18);
    background: #ffffff;
    text-decoration: none;
    cursor: pointer;
    color: var(--ink);
    font-size: 0.96rem;
    font-weight: 700;
    box-shadow: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.button:hover {
    transform: translateY(-1px);
    border-color: rgba(11, 111, 68, 0.34);
}

.button--primary {
    background: var(--brand);
    border-color: rgba(9, 82, 53, 0.9);
    color: #fff;
}

.app-logout {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 8px 10px;
    border-radius: 12px;
    color: var(--graphite);
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.18s ease, color 0.18s ease;
}

.app-logout:hover {
    background: #f3f7f3;
    color: var(--brand-strong);
}

.app-logout__icon {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.notice {
    padding: 13px 15px;
    border-radius: 16px;
    border: 1px solid transparent;
}

.notice--success {
    background: rgba(35, 99, 65, 0.1);
    border-color: rgba(35, 99, 65, 0.18);
    color: var(--success);
}

.notice--warning {
    background: rgba(139, 109, 44, 0.1);
    border-color: rgba(139, 109, 44, 0.16);
    color: var(--warning);
}

.notice--error {
    background: rgba(159, 51, 37, 0.08);
    border-color: rgba(159, 51, 37, 0.18);
    color: var(--danger);
}

.result-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

.result-card-shell {
    position: relative;
    min-width: 0;
}

.result-card {
    display: grid;
    gap: 6px;
    min-height: 96px;
    padding: 18px 58px 18px 18px;
    border-radius: 18px;
    text-decoration: none;
    border: 1px solid rgba(11, 111, 68, 0.12);
    background: #f7faf7;
    transition: transform 0.18s ease, border-color 0.18s ease;
}

.result-card:hover,
.result-card:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(11, 111, 68, 0.28);
}

.result-card:focus-visible,
.result-copy:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(11, 111, 68, 0.12);
}

.result-card span {
    color: var(--muted);
    font-size: 0.84rem;
    font-weight: 700;
}

.result-card strong {
    word-break: break-all;
}

.result-copy {
    position: absolute;
    top: 14px;
    right: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease;
}

.result-copy:hover:not(:disabled) {
    background: var(--brand-soft);
    color: var(--brand-strong);
}

.result-copy:disabled {
    cursor: not-allowed;
    opacity: 0.45;
}

.result-copy__icon {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.result-copy__icon--check,
.result-copy--copied .result-copy__icon--copy {
    display: none;
}

.result-copy--copied {
    background: var(--brand);
    color: #ffffff;
}

.result-copy--copied .result-copy__icon--check {
    display: block;
}

.result-copy--failed {
    color: var(--danger);
}

code {
    font-family: "Courier New", monospace;
    font-size: 0.92rem;
}

.app-rail h1 {
    max-width: 8ch;
    line-height: 0.98;
    font-size: 30px;
    color: var(--ink);
}

.login-card h1 {
    font-size: clamp(1.85rem, 3vw, 2.35rem);
}

.page-head h2 {
    font-size: 20px;
}

.rail-card h2 {
    font-size: 1.55rem;
}

.panel-head h3 {
    font-size: 1.3rem;
}

.selector-summary strong,
.result-card strong {
    font-weight: 800;
}

.selector-form--search {
    gap: 12px;
}

.selector-form--picker {
    gap: 12px;
}

.hotel-picker {
    display: grid;
    gap: 12px;
    position: relative;
}

.hotel-picker__combobox {
    margin-bottom: 2px;
}

.hotel-picker__results {
    display: grid;
    gap: 12px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 20px 50px rgba(21, 37, 24, 0.08);
}

.hotel-picker__list {
    display: grid;
    gap: 8px;
    max-height: 280px;
    overflow-y: auto;
}

.hotel-picker__option {
    display: grid;
    gap: 4px;
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    color: inherit;
    text-align: left;
    cursor: pointer;
    transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.hotel-picker__option:hover,
.hotel-picker__option--active {
    border-color: rgba(28, 130, 93, 0.48);
    box-shadow: 0 0 0 3px rgba(28, 130, 93, 0.12);
    background: rgba(244, 251, 248, 0.96);
}

.hotel-picker__option[aria-selected="true"] {
    border-color: rgba(28, 130, 93, 0.7);
    background: rgba(244, 251, 248, 1);
}

.hotel-picker__option-title {
    font-weight: 700;
}

.hotel-picker__option-meta {
    font-size: 0.9rem;
    color: var(--muted);
}

.hotel-picker__empty {
    margin: 0;
    padding: 14px 16px;
    border: 1px dashed var(--line);
    border-radius: 16px;
    color: var(--muted);
}

.hotel-picker__pager {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.hotel-picker__status {
    min-height: 1.2em;
}

.hotel-picker__page-status {
    flex: 1 1 180px;
    text-align: center;
}

.notice-stack {
    display: grid;
    gap: 12px;
    margin-bottom: 18px;
}

.panel-placeholder {
    display: grid;
    gap: 16px;
    padding: 22px;
    border-radius: 22px;
    border: 1px dashed rgba(11, 111, 68, 0.18);
    background: #f8fbf8;
}

.grid--search {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
}

.grid--logo {
    grid-template-columns: minmax(0, 1fr) 280px;
    align-items: start;
}

.selector-actions,
.pager,
.actions--tight {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

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

.panel-sub {
    display: grid;
    gap: 16px;
    padding: 20px;
    border-radius: 20px;
    background: #f8faf8;
    border: 1px solid rgba(11, 111, 68, 0.08);
}

.panel-sub--compact {
    gap: 12px;
}

.upgrade-panel {
    gap: 12px;
    padding: 18px 20px;
    background: #f8faf8;
}

.upgrade-panel__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.upgrade-panel__title {
    display: grid;
    gap: 4px;
}

.upgrade-panel__title h3 {
    font-size: 1.15rem;
}

.upgrade-panel__toggleline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--ink);
    font-size: 0.94rem;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
}

.upgrade-switch {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.upgrade-switch input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.upgrade-switch__track {
    position: relative;
    display: inline-flex;
    align-items: center;
    width: 54px;
    height: 32px;
    padding: 3px;
    border-radius: 999px;
    background: #dce5df;
    border: 1px solid rgba(21, 33, 29, 0.1);
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.upgrade-switch__thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 5px 14px rgba(21, 33, 29, 0.14);
    transition: transform 0.2s ease;
}

.upgrade-switch input:checked + .upgrade-switch__track {
    background: linear-gradient(135deg, var(--brand) 0%, #2b9467 100%);
    border-color: rgba(11, 111, 68, 0.18);
}

.upgrade-switch input:checked + .upgrade-switch__track .upgrade-switch__thumb {
    transform: translateX(22px);
}

.upgrade-switch input:focus-visible + .upgrade-switch__track {
    box-shadow: 0 0 0 4px rgba(11, 111, 68, 0.12);
}

.upgrade-panel__reveal {
    padding-top: 4px;
}

.checkbox-row--wrap {
    row-gap: 10px;
}

.checkbox-line {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.field-help {
    margin: 0;
    font-size: 0.86rem;
    color: var(--muted);
}

.logo-preview {
    display: grid;
    gap: 10px;
    min-height: 180px;
    padding: 18px;
    border-radius: 18px;
    border: 1px dashed rgba(11, 111, 68, 0.2);
    background: #ffffff;
    align-content: center;
    justify-items: center;
}

.logo-preview img {
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
}

.logo-preview__empty {
    text-align: center;
    color: var(--muted);
}

.ssid-list {
    display: grid;
    gap: 12px;
}

.ssid-row {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr) auto;
    gap: 14px;
    align-items: end;
    padding: 16px;
    border-radius: 18px;
    border: 1px solid rgba(11, 111, 68, 0.08);
    background: #ffffff;
}

.ssid-row__usages {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    min-height: 48px;
    align-items: center;
    color: var(--muted);
}

.ssid-row__hint {
    width: 100%;
    margin: 0;
    font-size: 0.8rem;
    color: var(--muted);
}

.ssid-row__actions {
    display: flex;
    justify-content: flex-end;
}

.ssid-row--exhausted {
    border-style: dashed;
}

.ssid-row [data-ssid-usage]:disabled {
    cursor: not-allowed;
}

.button--ghost {
    border-style: dashed;
    color: var(--muted);
}

@media (max-width: 960px) {
    .app-shell {
        padding: 16px;
    }

    .app-topbar {
        flex-direction: column;
        align-items: stretch;
    }

    .app-topbar__brand {
        flex-direction: column;
        align-items: flex-start;
    }

    .app-topbar__meta {
        justify-content: flex-start;
    }

    .app-user {
        padding-right: 0;
        margin-right: 0;
        border-right: 0;
    }

    .app-tabs {
        flex-wrap: wrap;
    }

    .app-tab {
        flex: 1 1 220px;
    }

    .page-head,
    .panel-head {
        flex-direction: column;
    }

    .content-grid--aside {
        grid-template-columns: 1fr;
    }

    .grid--search,
    .grid--logo,
    .ssid-row {
        grid-template-columns: 1fr;
    }

    .pager {
        justify-content: flex-start;
    }

    .brand-lockup__badge--topbar {
        width: min(100%, 240px);
    }

    .app-rail h1 {
        max-width: none;
        font-size: 2rem;
    }

    .upgrade-panel__header,
    .upgrade-panel__toggleline,
    .option-card__head,
    .option-card__copy {
        flex-direction: column;
        align-items: flex-start;
    }

    .option-card__meta {
        text-align: left;
    }
}
