:root {
    --paper: #f5efe2;
    --paper-strong: #fffaf0;
    --ink: #18202f;
    --muted: #647083;
    --line: rgba(24, 32, 47, 0.14);
    --teal: #0f9f8f;
    --teal-deep: #087568;
    --coral: #f35f45;
    --blue: #2d6cdf;
    --gold: #d99b18;
    --plum: #56385f;
    --shadow: 0 24px 70px rgba(24, 32, 47, 0.16);
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    background: var(--paper);
}

body {
    min-height: 100vh;
    margin: 0;
    color: var(--ink);
    font-family: "Avenir Next", "Gill Sans", "Trebuchet MS", sans-serif;
    letter-spacing: 0;
    background:
        linear-gradient(135deg, rgba(15, 159, 143, 0.12), transparent 28%),
        linear-gradient(315deg, rgba(243, 95, 69, 0.12), transparent 30%),
        repeating-linear-gradient(90deg, rgba(24, 32, 47, 0.04) 0 1px, transparent 1px 86px),
        repeating-linear-gradient(0deg, rgba(24, 32, 47, 0.035) 0 1px, transparent 1px 86px),
        var(--paper);
    overflow-x: hidden;
}

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

button:disabled,
input:disabled,
select:disabled {
    cursor: not-allowed;
    opacity: 0.55;
}

.flow-canvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
}

.shell {
    position: relative;
    z-index: 1;
    width: min(1480px, calc(100% - 32px));
    margin: 0 auto;
    padding: 10px 0 24px;
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 54px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 1px;
    color: var(--ink);
    text-decoration: none;
    font-family: "Avenir Next", "Gill Sans", "Trebuchet MS", sans-serif;
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    font-weight: 800;
    transition: color 160ms ease;
}

.brand:hover,
.brand:hover .brand-mark,
.brand:hover .brand-dot {
    color: var(--coral);
}

.brand-mark {
    display: inline-flex;
    width: 1.56em;
    height: 1.28em;
    align-items: center;
    justify-content: center;
    color: var(--teal-deep);
}

.brand-mark svg {
    width: 1.56em;
    height: 1.28em;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.85;
}

.brand-dot {
    color: var(--teal-deep);
    transition: color 160ms ease;
}

.session-strip {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 0;
}

.session-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    min-width: 0;
    border: 0;
    padding: 0;
    color: var(--teal-deep);
    background: transparent;
    font-weight: 800;
    text-decoration: none;
    transition: color 160ms ease;
}

.session-link:hover {
    color: var(--coral);
}

.session-icon {
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.session-link.signed-in {
    max-width: min(42vw, 360px);
    overflow: hidden;
    color: var(--ink);
}

.session-link.signed-in:hover {
    color: var(--coral);
}

.session-link.signed-in #sessionActionLabel {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dashboard {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    margin-top: 4px;
    margin-bottom: 4px;
}

.command-panel,
.modal-dialog {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 250, 240, 0.84);
    box-shadow: var(--shadow);
}

.command-panel {
    min-height: 0;
    padding: clamp(18px, 2.4vw, 30px);
    overflow: hidden;
    backdrop-filter: blur(18px);
}

.modal-dialog {
    width: min(580px, calc(100% - 32px));
    max-height: 90vh;
    margin: auto;
    padding: 0;
    color: var(--ink);
    background: var(--paper-strong);
    text-align: left;
    overflow: auto;
}

#authDialog {
    max-height: auto;
}

.domain-dialog {
    width: min(520px, calc(100% - 32px));
}

.emails-dialog {
    width: min(1040px, calc(100% - 32px));
}

.dns-dialog {
    width: min(760px, calc(100% - 32px));
    height: 100dvh;
    max-height: 100dvh;
}

.plans-dialog {
    width: min(1120px, calc(100% - 32px));
}

.plan-preview-dialog {
    width: min(560px, calc(100% - 32px));
}

.btc-dialog {
    width: min(760px, calc(100% - 32px));
}

.legal-dialog {
    width: min(900px, calc(100% - 32px));
}

.modal-dialog::backdrop {
    background: transparent;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(24, 32, 47, 0.52);
}

.modal-overlay[hidden] {
    display: none;
}

.modal-section {
    position: relative;
    padding: 22px;
}

.auth-panel {
    padding-bottom: 12px;
}

.panel-heading,
.section-heading,
.table-tools,
.form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.table-tools {
    margin-bottom: 8px;
}

.panel-heading {
    margin-bottom: 0;
}

.panel-title-block {
    width: 100%;
    text-align: left;
}

.plan-promo-banner {
    margin: 12px 0 28px;
    padding: 14px;
    border: 1px solid rgba(24, 32, 47, 0.1);
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(15, 159, 143, 0.12), rgba(45, 108, 223, 0.1) 48%, rgba(243, 95, 69, 0.1));
    box-shadow: 0 18px 48px rgba(24, 32, 47, 0.12);
}

.plan-promo-rail {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.plan-promo-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 16px;
    padding: 16px 16px 18px;
    background: rgba(255, 250, 240, 0.94);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
    text-align: center;
}

.plan-promo-card[data-plan-preview] {
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.plan-promo-card[data-plan-preview]:hover,
.plan-promo-card[data-plan-preview]:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(15, 159, 143, 0.42);
    box-shadow: 0 12px 26px rgba(24, 32, 47, 0.16);
    outline: none;
}

.plan-promo-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 159, 143, 0.1), transparent 60%);
    pointer-events: none;
}

.plan-promo-card-free {
    background: linear-gradient(135deg, rgba(255, 250, 240, 0.98), rgba(226, 248, 244, 0.95));
}

.plan-promo-card-shared {
    background: linear-gradient(135deg, rgba(255, 250, 240, 0.98), rgba(232, 241, 255, 0.95));
}

.plan-promo-card-dedicated {
    background: linear-gradient(135deg, rgba(255, 250, 240, 0.98), rgba(255, 239, 236, 0.95));
}

.plan-promo-tier {
    position: relative;
    z-index: 1;
    margin: 0 0 6px;
    color: var(--teal-deep);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.plan-promo-price {
    position: relative;
    z-index: 1;
    margin: 0 0 8px;
    color: var(--ink);
    font-size: 1.04rem;
    font-weight: 760;
}

.plan-promo-copy {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.45;
}

.comparison-matrix {
    margin: -10px 0 18px;
    padding: 10px 12px 12px;
    border: 1px solid rgba(24, 32, 47, 0.16);
    border-radius: 14px;
    background:
        linear-gradient(120deg, rgba(15, 159, 143, 0.11), rgba(45, 108, 223, 0.08) 48%, rgba(243, 95, 69, 0.08)),
        rgba(255, 250, 240, 0.9);
    box-shadow: 0 12px 28px rgba(24, 32, 47, 0.14);
}

.comparison-header {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
    margin-bottom: 8px;
}

.comparison-eyebrow {
    margin: 0;
    color: var(--ink);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
}

.comparison-note {
    margin: 0;
    color: #556072;
    font-size: 0.75rem;
    line-height: 1.3;
    text-align: right;
}

.comparison-scroll {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
    table-layout: auto;
}

.comparison-table th,
.comparison-table td {
    border-bottom: 1px solid rgba(24, 32, 47, 0.1);
    padding: 7px clamp(3px, 0.9vw, 8px);
    font-size: 0.79rem;
    line-height: 1.28;
    text-align: center;
    white-space: nowrap;
}

.comparison-table thead th {
    color: var(--ink);
    font-weight: 700;
    background: rgba(255, 255, 255, 0.64);
}

.comparison-table thead th:not(:first-child) {
    border-radius: 999px;
}

.comparison-table thead th:first-child {
    text-align: center;
    white-space: normal;
}

.comparison-table tbody th:first-child,
.comparison-table tbody td:first-child {
    text-align: center;
    white-space: normal;
}

.comparison-table tbody th[scope="row"] {
    color: #334055;
    font-weight: 650;
}

.comparison-table tbody tr:nth-child(even) th,
.comparison-table tbody tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.38);
}

.comparison-col-needemail {
    color: #0a5e55 !important;
    background: linear-gradient(135deg, rgba(15, 159, 143, 0.2), rgba(15, 159, 143, 0.05)) !important;
}

.comparison-col-mailchimp {
    color: #7a4d00 !important;
    background: linear-gradient(135deg, rgba(255, 191, 0, 0.18), rgba(255, 191, 0, 0.05)) !important;
}

.comparison-col-mailgun {
    color: #5a2f8f !important;
    background: linear-gradient(135deg, rgba(123, 80, 179, 0.2), rgba(123, 80, 179, 0.05)) !important;
}

.comparison-col-sendgrid {
    color: #0e4d9a !important;
    background: linear-gradient(135deg, rgba(45, 108, 223, 0.2), rgba(45, 108, 223, 0.05)) !important;
}

.comparison-col-postmark {
    color: #7d2c23 !important;
    background: linear-gradient(135deg, rgba(243, 95, 69, 0.2), rgba(243, 95, 69, 0.05)) !important;
}

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

.comparison-brand {
    color: var(--teal-deep);
    font-weight: 800;
}

.comparison-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 2px 8px;
    font-size: 0.72rem;
    font-weight: 650;
    letter-spacing: 0;
}

.comparison-pill-best {
    border-color: rgba(15, 159, 143, 0.4);
    color: #0a5e55;
    background: rgba(15, 159, 143, 0.14);
}

.comparison-pill-none {
    border-color: rgba(176, 38, 38, 0.34);
    color: #8f2020;
    background: rgba(176, 38, 38, 0.1);
}

.comparison-pill-partial {
    border-color: rgba(217, 155, 24, 0.4);
    color: #855e12;
    background: rgba(217, 155, 24, 0.13);
}

.comparison-pill-alt {
    border-color: rgba(86, 56, 95, 0.34);
    color: #56385f;
    background: rgba(86, 56, 95, 0.1);
}

.comparison-pill-price {
    border-color: rgba(45, 108, 223, 0.34);
    color: #1f4ea3;
    background: rgba(45, 108, 223, 0.1);
}

.eyebrow {
    margin: 0 0 8px;
    color: var(--teal-deep);
    font-family: "Avenir Next", "Gill Sans", sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0;
    text-align: center;
    text-transform: uppercase;
}

.modal-dialog .eyebrow {
    text-align: left;
}

h1,
h2 {
    margin: 0;
    font-family: "Avenir Next", "Gill Sans", "Trebuchet MS", sans-serif;
    font-weight: 760;
    line-height: 1;
    letter-spacing: 0;
}

h1 {
    max-width: none;
    width: 100%;
    font-size: clamp(2rem, 4.8vw, 5.2rem);
    white-space: nowrap;
    text-align: center;
}

h2 {
    font-size: clamp(1.35rem, 2vw, 2rem);
}

.dns-title-domain {
    color: #0f9f8f;
}

.plans-title-domain {
    color: #1f4ea3;
}

.primary-button,
.quiet-button,
.danger-button,
.copy-button {
    min-height: 42px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    padding: 0 16px;
    font-size: 0.95rem;
    font-weight: 650;
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.primary-button {
    color: var(--paper-strong);
    background: linear-gradient(135deg, var(--ink), var(--teal-deep));
    box-shadow: 0 14px 32px rgba(8, 117, 104, 0.24);
}

.primary-button.is-loading {
    background: linear-gradient(115deg, var(--ink), var(--teal-deep), #169d8f, var(--teal-deep));
    background-size: 240% 100%;
    animation: button-loading-sheen 1s linear infinite;
}

@keyframes button-loading-sheen {
    from {
        background-position: 0% 50%;
    }

    to {
        background-position: 100% 50%;
    }
}

.primary-button:hover:not(:disabled),
.quiet-button:hover:not(:disabled),
.danger-button:hover:not(:disabled),
.copy-button:hover:not(:disabled) {
    transform: translateY(-1px);
}

.primary-button.full,
.quiet-button.full {
    width: 100%;
}

.quiet-button,
.copy-button {
    color: var(--ink);
    background: rgba(255, 250, 240, 0.72);
    border-color: var(--line);
}

.copy-button.is-copied {
    color: #1f6a31;
    border-color: rgba(34, 128, 57, 0.35);
    background: rgba(52, 168, 83, 0.2);
    box-shadow: 0 0 0 3px rgba(52, 168, 83, 0.16);
}

.danger-button {
    color: #7b2418;
    background: rgba(243, 95, 69, 0.12);
    border-color: rgba(243, 95, 69, 0.24);
}

.search-box {
    display: grid;
    grid-template-columns: auto minmax(170px, 320px);
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-weight: 650;
}

.search-box input,
.stacked-form input,
.stacked-form select {
    width: 100%;
    min-height: 44px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 0 12px;
    color: var(--ink);
    background: rgba(255, 250, 240, 0.88);
    outline: none;
    text-align: center;
}

.search-box input:focus,
.stacked-form input:focus,
.stacked-form select:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 4px rgba(15, 159, 143, 0.12);
}

.table-frame {
    margin-top: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow-x: auto;
    background: rgba(255, 250, 240, 0.66);
}

.domain-table,
.email-users-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.domain-table {
    min-width: 980px;
}

.email-users-table {
    min-width: 780px;
}

.domain-table th,
.domain-table td,
.email-users-table th,
.email-users-table td {
    padding: 16px;
    border-bottom: 1px solid var(--line);
    text-align: center;
    vertical-align: middle;
}

.domain-table th,
.email-users-table th {
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 650;
    text-transform: uppercase;
}

.email-users-table th {
    white-space: nowrap;
}

.domain-table th:nth-child(1),
.domain-table td:nth-child(1) {
    width: 29%;
}

.domain-table th:nth-child(2),
.domain-table td:nth-child(2) {
    width: 27%;
}

.domain-table th:nth-child(3),
.domain-table td:nth-child(3) {
    width: 14%;
}

.domain-table th:nth-child(4),
.domain-table td:nth-child(4) {
    width: 14%;
}

.domain-table th:nth-child(5),
.domain-table td:nth-child(5) {
    width: 23%;
}

.email-users-table th:nth-child(1),
.email-users-table td:nth-child(1) {
    width: 29%;
}

.email-users-table th:nth-child(2),
.email-users-table td:nth-child(2) {
    width: 28%;
}

.email-users-table th:nth-child(3),
.email-users-table td:nth-child(3) {
    width: 25%;
}

.email-users-table th:nth-child(4),
.email-users-table td:nth-child(4) {
    width: 9%;
}

.email-users-table th:nth-child(5),
.email-users-table td:nth-child(5) {
    width: 9%;
}

.email-users-table .row-actions {
    justify-content: center;
    flex-wrap: nowrap;
}

.email-users-table .email-field-display,
.email-users-table .inline-email-field,
.domain-table .email-field-display,
.domain-table .inline-email-field {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.email-password-value,
.email-forward-value {
    display: inline-block;
    flex: 0 1 auto;
    max-width: 18ch;
    color: var(--muted);
    font-family: "SFMono-Regular", "Cascadia Code", "Menlo", monospace;
    font-size: 0.82rem;
    vertical-align: middle;
    white-space: normal;
    overflow-wrap: anywhere;
    text-align: center;
}

.email-forward-value {
    font-family: "Avenir Next", "Gill Sans", sans-serif;
}

.email-field-display {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    width: fit-content;
    max-width: 100%;
}

.email-field-display [data-action="copy-email-password"] {
    margin-left: 0;
}

.email-users-table [data-action="delete-email"] {
    margin-left: 0;
}

.inline-email-field {
    display: inline-flex;
    gap: 0;
    align-items: center;
    width: min(100%, 360px);
}

.inline-email-field .icon-button {
    width: 18px;
}

.inline-email-field [data-action="save-email-inline"] {
    margin-left: 5px;
}

.inline-email-field [data-action="cancel-email-inline"] {
    margin-left: 0;
}

.inline-domain-field {
    width: min(100%, 420px);
}

[data-action="save-domain-inline"] {
    margin-left: 4px;
}

.email-table-tools .search-box {
    grid-template-columns: auto minmax(120px, 180px);
}

.inline-email-input {
    flex: 1 1 120px;
    min-width: 0;
    min-height: 38px;
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 0 10px;
    color: var(--ink);
    background: rgba(255, 250, 240, 0.88);
    text-align: center;
}

.email-domain-suffix {
    color: var(--muted);
    font-size: 0.82rem;
}

.icon-button {
    display: inline-grid;
    width: 24px;
    height: 24px;
    place-items: center;
    border: 1px solid transparent;
    border-radius: var(--radius);
    padding: 0;
    color: var(--teal-deep);
    background: transparent;
}

.icon-button:hover {
    color: var(--coral);
}

.icon-button svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.email-users-table [data-action="delete-email"] svg {
    width: 17px;
    height: 17px;
}

.catch-all-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 34px;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0 10px;
    color: var(--muted);
    background: rgba(255, 250, 240, 0.64);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.catch-all-toggle.selected {
    border-color: rgba(15, 159, 143, 0.35);
    color: var(--teal-deep);
    background: rgba(15, 159, 143, 0.12);
}

.catch-all-toggle input {
    width: 16px;
    height: 16px;
    accent-color: var(--teal-deep);
}

.catch-all-toggle.checkbox-only {
    min-height: 0;
    padding: 0;
    border-color: transparent;
    background: transparent;
}

.domain-table tr,
.email-users-table tr {
    animation: rowIn 260ms ease both;
}

.domain-table tbody tr:hover,
.email-users-table tbody tr:hover {
    background: rgba(15, 159, 143, 0.06);
}

.email-domain-label {
    margin: 14px 0 8px;
    color: var(--muted);
    font-weight: 700;
    text-align: center;
}

.email-table-tools {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 10px;
}

.email-users-table-frame {
    margin-top: 0;
    max-height: min(34vh, 340px);
    overflow: auto;
}

.domain-name {
    display: block;
    font-size: 1rem;
}

.mail-server-host,
.muted {
    color: var(--muted);
    font-size: 0.86rem;
}

.mail-server-field {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    max-width: 100%;
}

.mail-server-host {
    display: inline-block;
    font-family: "SFMono-Regular", "Cascadia Code", "Menlo", monospace;
    white-space: nowrap;
}

.status-stack {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.status-link {
    display: inline-flex;
    min-height: 32px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(15, 159, 143, 0.28);
    border-radius: 999px;
    padding: 0 12px;
    color: var(--teal-deep);
    background: rgba(15, 159, 143, 0.1);
    font-weight: 800;
    text-decoration: none;
}

.status-meta {
    color: var(--muted);
    font-size: 0.8rem;
    line-height: 1.25;
    text-align: center;
}

.status-meta-expired {
    color: #c0392b;
    font-weight: 700;
}

.status-meta-active {
    color: #2e7d32;
    font-weight: 700;
}

.status-link:hover {
    color: var(--coral);
    border-color: rgba(243, 95, 69, 0.32);
    background: rgba(243, 95, 69, 0.1);
}

.status-link-dedicated-pending {
    border-color: rgba(217, 155, 24, 0.4);
    background: rgba(255, 205, 86, 0.22);
    color: #8a5a00;
}

.status-link-dns-complete {
    border-color: rgba(34, 128, 57, 0.35);
    background: rgba(52, 168, 83, 0.18);
    color: #1f6a31;
}

.status-link-dns-partial {
    border-color: rgba(217, 155, 24, 0.45);
    background: rgba(255, 205, 86, 0.26);
    color: #8a5a00;
}

.status-link-dns-fail {
    border-color: rgba(192, 57, 43, 0.38);
    background: rgba(192, 57, 43, 0.16);
    color: #8f1d13;
}

.status-link-expired {
    border-color: rgba(192, 57, 43, 0.38);
    background: rgba(192, 57, 43, 0.16);
    color: #8f1d13;
}

.status-link-plan-free {
    border-color: rgba(15, 159, 143, 0.28);
    background: rgba(15, 159, 143, 0.1);
    color: var(--teal-deep);
}

.status-link-plan-shared {
    border-color: rgba(45, 108, 223, 0.36);
    background: rgba(45, 108, 223, 0.12);
    color: #1f4ea3;
}

.status-link-plan-dedicated {
    border-color: rgba(86, 56, 95, 0.34);
    background: rgba(86, 56, 95, 0.12);
    color: var(--plum);
}

.plans-panel .section-heading {
    margin-bottom: 18px;
}

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

.plan-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 16px;
    background: rgba(255, 250, 240, 0.74);
}

.plan-card.featured {
    border-color: rgba(15, 159, 143, 0.34);
    background: linear-gradient(180deg, rgba(15, 159, 143, 0.12), rgba(255, 250, 240, 0.84));
}

.plan-card.current {
    border-color: rgba(217, 155, 24, 0.44);
}

.plan-badge[data-current-plan-badge] {
    display: none;
}

.plan-badge.is-current {
    display: inline-flex;
    background: #ffffff;
}

.plan-badge.is-current.plan-badge-multiline {
    flex-direction: column;
    align-items: center;
    text-align: center;
    line-height: 1.2;
    white-space: pre-line;
    text-transform: none;
}

.plan-badge.is-current.plan-badge-active {
    border-color: rgba(22, 131, 58, 0.45);
    color: #16833a;
}

.plan-badge.is-current.plan-badge-expired {
    border-color: rgba(176, 38, 38, 0.45);
    color: #b02626;
}

.plan-card-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.plan-card h3 {
    margin: 0;
    font-size: 1.04rem;
    line-height: 1.15;
}

.plan-card p {
    margin: 5px 0 0;
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.35;
}

.plan-preview-slot {
    display: grid;
}

.plan-preview-panel .section-heading {
    margin-bottom: 14px;
}

.plan-preview-panel #planPreviewTitle {
    text-align: center;
}

.plan-preview-slot .plan-card {
    margin: 0;
    align-items: center;
    text-align: center;
}

.plan-preview-slot .plan-card-heading {
    justify-content: center;
}

.plan-preview-slot .plan-card p,
.plan-preview-slot .plan-select-label,
.plan-preview-slot .plan-savings {
    text-align: center;
}

.plan-preview-slot .plan-list {
    justify-items: center;
    padding-left: 0;
    text-align: center;
    list-style-position: inside;
}

.plan-badge {
    flex: 0 0 auto;
    border: 1px solid rgba(15, 159, 143, 0.28);
    border-radius: 999px;
    padding: 4px 8px;
    color: var(--teal-deep);
    background: rgba(15, 159, 143, 0.1);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.plan-badge.premium {
    border-color: rgba(86, 56, 95, 0.28);
    color: var(--plum);
    background: rgba(86, 56, 95, 0.1);
}

.plan-price {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2px;
    margin: 0 !important;
    color: var(--ink) !important;
    font-size: 2rem !important;
    font-weight: 850;
    line-height: 1;
}

.billing-period-select {
    min-height: 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 0 8px;
    color: var(--teal-deep);
    background: rgba(255, 250, 240, 0.9);
    font: inherit;
    font-size: 0.95rem;
    font-weight: 800;
}

.plan-savings {
    margin: -8px 0 -4px !important;
    color: #16833a !important;
    font-size: 0.86rem !important;
    font-weight: 800;
    line-height: 1.15;
}

.plan-list {
    display: grid;
    gap: 7px;
    margin: 0 0 auto;
    padding-left: 18px;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.35;
}

.plan-select-label {
    display: grid;
    gap: 7px;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
}

.plan-select-label select {
    width: 100%;
    min-height: 42px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 0 10px;
    color: var(--ink);
    background: rgba(255, 250, 240, 0.9);
    font: inherit;
    text-align: center;
}

.plan-inclusions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.plan-inclusions span {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 7px 10px;
    color: var(--muted);
    background: rgba(255, 250, 240, 0.72);
    font-size: 0.78rem;
    line-height: 1.2;
}

.btc-panel .section-heading {
    display: grid;
    grid-template-columns: minmax(72px, 1fr) auto minmax(72px, 1fr);
    align-items: center;
}

.btc-panel .section-heading::before {
    content: "";
}

.btc-panel .section-heading>div {
    grid-column: 2;
    min-width: 0;
    text-align: center;
}

.btc-panel .section-heading .quiet-button {
    grid-column: 3;
    justify-self: end;
}

.btc-panel .section-heading .eyebrow,
.btc-panel #btcPaymentTitle {
    text-align: center;
}

.btc-payment-layout {
    display: grid;
    grid-template-columns: minmax(190px, 220px) minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    margin-top: 10px;
}

.btc-qr-box {
    display: grid;
    width: min(100%, 220px);
    aspect-ratio: 1;
    align-self: center;
    place-items: center;
    border: 1px solid rgba(15, 159, 143, 0.22);
    border-radius: var(--radius);
    padding: 10px;
    background:
        linear-gradient(180deg, rgba(15, 159, 143, 0.1), rgba(255, 250, 240, 0.84)),
        rgba(255, 250, 240, 0.74);
}

.btc-qr-box a {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: calc(var(--radius) - 2px);
}

.btc-qr-box a.disabled {
    pointer-events: none;
}

.btc-qr-box img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 180ms ease;
}

.btc-qr-box img.loaded {
    opacity: 1;
}

.btc-payment-details {
    display: grid;
    gap: 12px;
    align-content: start;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 16px;
    background: rgba(255, 250, 240, 0.66);
    text-align: left;
}

.btc-payment-summary,
.btc-payment-status,
.btc-payment-note {
    margin: 0;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.4;
}

.btc-payment-summary {
    color: #1f8a43;
    font-weight: 820;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    animation: btc-summary-pulse 1.25s ease-in-out infinite;
}

@keyframes btc-summary-pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.035);
    }

    100% {
        transform: scale(1);
    }
}

.btc-payment-note {
    color: var(--muted);
}

.btc-payment-status {
    display: inline-flex;
    width: fit-content;
    justify-self: center;
    min-height: 34px;
    align-items: center;
    border: 1px solid rgba(217, 124, 24, 0.38);
    border-radius: 999px;
    padding: 0 12px;
    color: #a85a00;
    background: rgba(255, 180, 80, 0.2);
}

#btcPaymentTitle {
    color: #000;
}

.btc-address-label {
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 800;
    text-align: left;
    text-transform: uppercase;
}

.btc-address-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
}

.btc-address-row code {
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 11px 12px;
    color: var(--ink);
    background: rgba(255, 250, 240, 0.78);
    font-family: "SFMono-Regular", "Cascadia Code", "Menlo", monospace;
    font-size: 0.82rem;
    text-align: center;
    overflow-wrap: anywhere;
    text-transform: none;
}

.btc-address-row .icon-button {
    width: 38px;
    height: 38px;
    border-color: var(--line);
    background: rgba(255, 250, 240, 0.74);
}

.btc-status-link {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    justify-content: center;
    justify-self: center;
    min-height: 38px;
    text-decoration: none;
}

.btc-status-link.disabled {
    pointer-events: none;
    opacity: 0.55;
}

.row-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.empty-row td {
    height: 120px;
    color: var(--muted);
    text-align: center;
}

.stacked-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 18px;
    align-items: stretch;
}

.stacked-form label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: var(--muted);
    font-weight: 650;
    text-align: left;
}

.form-note {
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.45;
    text-align: left;
}

.form-note:not(:empty) {
    animation: formNotePulse 1.6s ease-in-out infinite;
}

.form-note.success {
    color: var(--teal-deep);
}

.form-note.error {
    color: #b43625;
}

.form-note.throttle {
    color: #b43625;
}

.form-note.pending {
    color: var(--muted);
}

.form-note.dns-summary-complete {
    color: #1f6a31;
    font-weight: 800;
}

.form-note.dns-summary-partial {
    color: #b36200;
    font-weight: 800;
}

.form-note.dns-summary-fail {
    color: #c0392b;
    font-weight: 800;
}

#dnsStatusSummary {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 12px;
    animation: dns-summary-pulse 1.5s ease-in-out infinite;
}

@keyframes dns-summary-pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }

    100% {
        transform: scale(1);
    }
}

.form-note:empty {
    min-height: 0;
    margin: 0;
}

.dns-verification-panel {
    display: grid;
    gap: 14px;
    border: 1px solid rgba(15, 159, 143, 0.22);
    border-radius: var(--radius);
    padding: 14px;
    background: rgba(15, 159, 143, 0.08);
    color: var(--muted);
}

.dns-record-sections {
    display: grid;
    gap: 14px;
}

.dns-section {
    display: grid;
    gap: 0;
    border: 1px solid rgba(24, 32, 47, 0.1);
    border-radius: 14px;
    background: rgba(255, 250, 240, 0.78);
}

.dns-section-toggle {
    width: 100%;
    min-height: 52px;
    border: 0;
    border-radius: 14px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: var(--ink);
    background: transparent;
    font-size: 0.96rem;
    font-weight: 800;
    text-align: left;
    cursor: pointer;
}

.dns-section-toggle-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.dns-section-toggle-indicator {
    display: inline-flex;
    width: 24px;
    height: 24px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(24, 32, 47, 0.2);
    border-radius: 999px;
    color: var(--teal-deep);
    background: rgba(15, 159, 143, 0.1);
    font-size: 1rem;
    line-height: 1;
}

.dns-section-content {
    display: grid;
    gap: 12px;
    padding: 0 14px 14px;
}

.dns-section-content[hidden] {
    display: none;
}

.dns-section.is-open {
    border-color: rgba(15, 159, 143, 0.3);
    background: rgba(255, 250, 240, 0.9);
}

.dns-section-heading {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.dns-section h3,
.dns-record-card h4 {
    margin: 0;
    color: var(--ink);
}

.dns-section h3 {
    font-size: 1rem;
}

.dns-section p,
.dns-record-description,
.dns-section-empty {
    margin: 0;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.45;
}

.dns-record-found {
    margin: 0;
    border-left: 4px solid transparent;
    border-radius: 8px;
    padding: 8px 10px;
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
}

.dns-record-found-ok {
    border-left-color: #34a853;
    background: rgba(52, 168, 83, 0.12);
    color: #1f6a31;
}

.dns-record-found-incorrect {
    border-left-color: #c0392b;
    background: rgba(192, 57, 43, 0.12);
    color: #8f1d13;
}

.dns-record-stack {
    display: grid;
    gap: 12px;
}

.dns-record-card {
    display: grid;
    gap: 8px;
    border: 1px solid rgba(24, 32, 47, 0.12);
    border-radius: 12px;
    padding: 10px;
    background: rgba(255, 250, 240, 0.92);
}

.dns-record-card-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.dns-record-title {
    display: inline-flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 6px;
}

.dns-record-actions {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.dns-record-actions>* {
    align-self: center;
}

.dns-record-check-button {
    display: inline-flex;
    height: 24px;
    min-height: 24px;
    align-items: center;
    justify-content: center;
    padding: 0 9px;
    font-size: 0.78rem;
    line-height: 24px;
    font-weight: 700;
    color: var(--paper-strong);
    border-color: rgba(8, 117, 104, 0.34);
    background: linear-gradient(135deg, var(--ink), var(--teal-deep));
}

.dns-record-category {
    margin: 0;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.dns-record-category-required {
    color: #b15a4a;
}

.dns-record-category-optional {
    color: var(--teal-deep);
}

.dns-record-state {
    display: inline-flex;
    min-height: 24px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0 9px;
    font-size: 0.74rem;
    font-weight: 800;
    white-space: nowrap;
}

.dns-record-card h4 {
    font-size: 0.96rem;
    line-height: 1.2;
}

.dns-record-state-ok {
    border-color: rgba(34, 128, 57, 0.35);
    background: rgba(52, 168, 83, 0.18);
    color: #1f6a31;
}

.dns-record-state-incorrect {
    border-color: rgba(192, 57, 43, 0.38);
    background: rgba(192, 57, 43, 0.16);
    color: #8f1d13;
}

.dns-record-grid {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 6px 10px;
    align-items: center;
}

.dns-record-grid span {
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 800;
    text-align: right;
    text-transform: uppercase;
}

.dns-record-grid code {
    min-width: 0;
    overflow-wrap: anywhere;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 6px 8px;
    color: var(--ink);
    background: rgba(255, 250, 240, 0.72);
    font-family: "SFMono-Regular", "Cascadia Code", "Menlo", monospace;
    font-size: 0.78rem;
    text-align: center;
}

.dns-value-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    align-items: center;
}

.dns-value-row .copy-button {
    min-height: 30px;
}

.dns-panel .form-actions {
    margin-top: 8px;
    margin-bottom: 12px;
}

@media (max-width: 760px) {

    .dns-section,
    .dns-record-card {
        padding: 12px;
    }

    .dns-section-heading,
    .dns-record-card-heading {
        align-items: flex-start;
    }

    .dns-record-actions {
        width: 100%;
        justify-content: flex-start;
    }

    .dns-record-grid {
        grid-template-columns: 1fr;
    }

    .dns-record-grid span {
        text-align: left;
    }
}

.toast-region {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 2147483647;
    display: grid;
    gap: 10px;
    width: min(360px, calc(100vw - 40px));
}

.toast-region[popover] {
    margin: 0;
    inset: auto 20px 20px auto;
    border: 0;
    padding: 0;
    background: transparent;
    overflow: visible;
}

.toast {
    border: 1px solid rgba(24, 32, 47, 0.28);
    border-left: 5px solid var(--teal);
    border-radius: var(--radius);
    padding: 12px 14px;
    text-align: center;
    color: #101726;
    background: #fffaf0;
    box-shadow: 0 20px 48px rgba(24, 32, 47, 0.24);
    animation: toastIn 220ms ease both;
}

.toast.error {
    border-left-color: var(--coral);
    color: #8f1d13;
    background: #fde8e4;
}

.toast.success {
    border-left-color: var(--teal);
    color: #1f6a31;
    background: #e9f8ee;
}

.toast.warning {
    border-left-color: #d99b18;
    color: #8a5a00;
    background: #fff4dd;
}

.site-footer {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 12px;
    margin-top: 16px;
    padding: 12px clamp(18px, 2.4vw, 30px) 0;
    color: var(--muted);
    justify-items: center;
    text-align: center;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: center;
}

.footer-links a,
.legal-page a {
    color: var(--teal-deep);
    font-weight: 700;
    text-decoration: none;
}

.footer-links a:hover,
.legal-page a:hover {
    text-decoration: underline;
}

.site-footer p {
    max-width: 1120px;
    margin: 0;
    font-size: 0.84rem;
    line-height: 1.55;
}

.legal-shell {
    width: min(1040px, calc(100% - 32px));
}

.legal-page {
    position: relative;
    margin-top: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: clamp(22px, 3.2vw, 44px);
    background: rgba(255, 250, 240, 0.84);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.print-button {
    position: absolute;
    top: 18px;
    left: 18px;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--teal-deep);
    background: rgba(255, 250, 240, 0.82);
    transition: color 160ms ease, transform 160ms ease, border-color 160ms ease;
}

.print-button:hover {
    color: var(--coral);
    transform: translateY(-1px);
}

.print-button svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.legal-page h1 {
    max-width: 880px;
    margin-bottom: 18px;
    font-size: clamp(1.8rem, 3.8vw, 3.2rem);
    white-space: normal;
}

.legal-page h2 {
    margin-top: 28px;
    font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.legal-page p {
    max-width: 860px;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
}

.legal-modal-content {
    margin-top: 0;
    text-align: center;
}

.legal-dialog .section-heading>div,
.legal-modal-content .eyebrow {
    display: none;
}

.legal-dialog .section-heading {
    justify-content: flex-end;
}

.legal-modal-content h1 {
    max-width: 760px;
    margin: 0 auto 18px;
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    white-space: normal;
}

.legal-modal-content h2 {
    margin-top: 26px;
    font-size: clamp(1.15rem, 2vw, 1.55rem);
}

.legal-modal-content p {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.68;
}

.legal-date {
    margin-top: -8px;
}

.terms-page,
.privacy-page,
.contact-page {
    text-align: center;
}

.contact-form-section {
    margin-top: 1rem;
    text-align: center;
    width: min(100%, 900px);
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 0;
}

.form-info {
    background-color: #f9f6f0;
    border-left: 4px solid #e8a87c;
    padding: 1rem;
    margin-bottom: 1.5rem;
    text-align: left;
    border-radius: 4px;
}

.form-info p {
    margin: 0.5rem 0;
}

.form-hint {
    font-size: 0.95rem;
    color: #666;
}

.stacked-form textarea {
    width: 100%;
    padding: 0.75rem;
    font-family: inherit;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    resize: none;
    min-height: 120px;
    height: auto;
    max-height: 320px;
    box-sizing: border-box;
    line-height: 1.5;
    overflow: hidden;
}

.stacked-form textarea:focus {
    outline: none;
    border-color: #e8a87c;
    box-shadow: 0 0 0 2px rgba(232, 168, 124, 0.1);
}

.contact-note {
    margin: 0;
    padding: 0.5rem 0 0;
    border-radius: 4px;
    font-size: 0.95rem;
    min-height: 1.25rem;
}

.contact-note.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.terms-page h1,
.terms-page h2,
.terms-page p,
.privacy-page h1,
.privacy-page h2,
.privacy-page p,
.contact-page h1,
.contact-page h2,
.contact-page p {
    margin-left: auto;
    margin-right: auto;
}

[hidden] {
    display: none !important;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 currentColor;
    }

    70% {
        box-shadow: 0 0 0 10px rgba(15, 159, 143, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(15, 159, 143, 0);
    }
}

@keyframes rowIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes toastIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes formNotePulse {

    0%,
    100% {
        opacity: 0.72;
    }

    50% {
        opacity: 1;
    }
}

@media (max-width: 1080px) {
    .command-panel {
        min-height: auto;
    }
}

@media (max-width: 760px) {
    .shell {
        width: min(100% - 20px, 1480px);
        padding-top: 12px;
    }

    .panel-heading,
    .table-tools,
    .form-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .topbar {
        align-items: center;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 12px;
    }

    .brand {
        min-width: 0;
        white-space: nowrap;
    }

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

    .plan-promo-rail {
        grid-template-columns: 1fr;
    }

    .comparison-matrix {
        margin-top: -6px;
        padding: 10px;
    }

    .comparison-header {
        align-items: center;
        flex-direction: column;
        gap: 4px;
    }

    .comparison-note {
        text-align: left;
    }

    .btc-payment-layout {
        grid-template-columns: 1fr;
    }

    .session-strip {
        margin-left: auto;
        justify-content: flex-start;
    }

    .empty-row td {
        height: 132px;
    }

    .domain-table .empty-row td {
        text-align: left;
    }

    .search-box {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .footer-links {
        gap: 12px;
    }

}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
    }

    .flow-canvas {
        display: none;
    }
}

@media print {

    .print-button,
    .session-strip,
    .site-footer {
        display: none !important;
    }
}