/**
 * File: style.css
 * Purpose: Global visual styling and layout rules for public pages, dashboard, and admin surfaces.
 */
.shop-checkout-summary-grid {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 18px;
    margin-top: 24px;
}
.field input[disabled],
.field select[disabled] {
    pointer-events: none;
    background: #23272f;
    color: #888;
    cursor: not-allowed;
    caret-color: transparent;
}
.shop-postal-code-input {
    max-width: 110px;
}

.wide-country-select .shop-select,
.shop-select.wide-country-select {
    min-width: 180px;
    width: 100%;
}
.payment-card-half-right {
    width: 70%;
    min-width: 260px;
    max-width: 540px;
    margin-left: auto;
    align-self: start;
}
:root {
    --bg: #111419;
    --panel: #101318;
    --line: rgba(255,255,255,0.08);
    --text: #f3f4f6;
    --muted: #9aa3af;
    --soft: #c7cdd6;
    --accent: #ffffff;
    --shadow: 0 18px 60px rgba(0,0,0,0.45);
}

* { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
}

body,
body * {
    caret-color: transparent;
}

input,
textarea {
    caret-color: auto;
}

body {
    min-height: 100vh;
    line-height: 1.5;
    background:
        radial-gradient(circle at 50% 0%, rgba(255,255,255,0.04), transparent 34%),
        var(--bg);
}

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

.wrap {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main {
    flex: 1;
    display: grid;
    place-items: center;
    padding: 40px 18px 24px;
}

.card {
    width: min(760px, 100%);
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 34px 28px 26px;
}

.home-card {
    display: flex;
    flex-direction: column;
}

.card-wide {
    width: min(1120px, 100%);
}

.card-admin {
    width: min(1520px, 100%);
}

.login-card {
    width: min(560px, 100%);
}

.login-sub {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    max-width: none;
}

.brand {
    margin: 0 0 24px;
    font-size: 0.9rem;
    letter-spacing: 0.18em;
    color: var(--soft);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.brand::before {
    content: '';
    display: block;
    width: 52px;
    height: 24px;
    flex: 0 0 auto;
    background: url('/assets/logo-white.png') left center / contain no-repeat;
}

.landing-page .brand::before {
    background-image: url('/assets/logo-white.png');
}

.brand:hover {
    opacity: 0.75;
}

.counter {
    display: inline-block;
    margin-bottom: 18px;
     user-select: none;
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    color: var(--muted);
    font-size: 0.92rem;
}

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

.hero-top .brand {
    margin-bottom: 0;
}

h1 {
    margin: 0 0 12px;
    font-size: clamp(2rem, 6vw, 4rem);
    line-height: 1.02;
    font-weight: 700;
    letter-spacing: -0.04em;
}

h2 {
    font-size: 1.3rem;
    margin: 30px 0 15px;
}

.sub {
    margin: 0 0 30px;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 640px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.login-card .sub.login-sub {
    text-align: left;
    margin: 0 0 30px;
    margin-left: 0;
    margin-right: 0;
    max-width: none;
    padding-left: 0;
    text-indent: 0;
}

.home-placeholder-image {
    display: block;
    width: 100%;
    max-width: 640px;
    aspect-ratio: 8 / 5;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    object-position: center;
    margin: 0 auto 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
    background: #171c23;
}

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

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

.field label {
    font-weight: 400;
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

input[type="email"],
input[type="date"],
input[type="datetime-local"],
input[type="text"],
input[type="tel"],
input[type="url"],
textarea {
    width: 100%;
    padding: 16px 18px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: #1f262f;
    color: var(--text);
    font-size: 1rem;
    font-family: inherit;
    resize: vertical;
}

input[type="email"]:focus,
input[type="date"]:focus,
input[type="datetime-local"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
textarea:focus {
    outline: none;
    border-color: rgba(255,255,255,0.22);
}

.row {
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.row-top {
    margin-top: 24px;
}

.home-cta-form {
    gap: 14px;
    margin-bottom: auto;
    justify-items: center;
}

.cta-extra-options {
    display: grid;
    gap: 12px;
    width: min(100%, 500px);
    justify-items: center;
}

.home-cta-form .checkline + .checkline {
    margin-top: 8px;
}

.home-cta-form .checkline {
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.home-cta-form .row-top {
    width: 100%;
    justify-content: center;
}

.login-cta-form {
    gap: 14px;
}

.home-cta-email-shell {
    position: relative;
    width: min(100%, 500px);
    margin-bottom: 10px;
}

.login-cta-email-shell {
    position: relative;
    width: min(100%, 560px);
}

.home-cta-email-shell input[type="email"] {
    border-radius: 12px;
    padding-right: 18px;
}

.animated-placeholder-label {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    overflow: hidden;
    white-space: nowrap;
}

.animated-placeholder-label.is-hidden {
    opacity: 0;
}

.animated-placeholder-text {
    display: block;
    position: relative;
    color: var(--muted);
    transition: opacity 0.18s ease;
}

.animated-placeholder-text::after {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    color: transparent;
    opacity: 0;
    background-image: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.92) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    background-repeat: no-repeat;
    background-size: 18% 100%;
    background-position: -25% 0;
    -webkit-background-clip: text;
    background-clip: text;
    pointer-events: none;
}

.animated-placeholder-text.is-shimmering::after {
    opacity: 1;
    animation: placeholderShimmerSweep 1s linear;
}

.login-cta-email-shell .animated-placeholder-label,
.landing-page .cta-email-shell .animated-placeholder-label,
.landing-page-light .cta-email-shell .animated-placeholder-label {
    right: 182px;
}

@keyframes placeholderShimmerSweep {
    from {
        background-position: -25% 0;
    }
    to {
        background-position: 125% 0;
    }
}

.login-cta-email-shell input[type="email"] {
    border-radius: 12px;
    padding-right: 190px;
}

.login-card .login-cta-email-shell input[type="email"] {
    caret-color: transparent;
}

.home-cta-email-shell .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    min-width: 0;
    padding: 11px 18px;
}

.login-cta-email-shell .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    min-width: 0;
    padding: 11px 18px;
}

.login-cta-email-shell .btn:hover,
.login-cta-email-shell .btn:focus,
.login-cta-email-shell .btn:active {
    transform: translateY(-50%) !important;
}

#home-cta-start-check,
#home-cta-start-check:hover,
#home-cta-start-check:focus,
#home-cta-start-check:active {
    transform: translateY(-50%) !important;
}

#home-cta-start-check:hover {
    opacity: 0.94;
}

.home-cta-login-note {
    margin: 22px 0 2px;
    color: var(--muted);
    font-size: 0.92rem;
    text-align: center;
}

.home-cta-login-note a {
    color: inherit;
}

.home-cta-login-note strong {
    font-weight: 700;
}

.row-large {
    margin-top: 32px;
}

.row-xl {
    margin-top: 40px;
}

.checkline {
    position: relative;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    min-height: 26px;
    padding-left: 34px;
    color: var(--soft);
    font-size: 0.97rem;
    line-height: 1.5;
    cursor: pointer;
}

.checkline input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.checkline span {
    position: relative;
    display: inline-block;
}

.checkline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1px;
    width: 22px;
    height: 22px;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: #1f262f;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
    transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.checkline::after {
    content: '';
    position: absolute;
    left: 8px;
    top: 5px;
    width: 6px;
    height: 11px;
    border-right: 2px solid #07131b;
    border-bottom: 2px solid #07131b;
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.18s ease;
}

.checkline:has(input[type="checkbox"]:checked)::before {
    background: linear-gradient(135deg,#4fb4e8,#74c6ef);
    border-color: transparent;
}

.checkline:has(input[type="checkbox"]:checked)::after {
    opacity: 1;
}

.checkline:has(input[type="checkbox"]:focus-visible)::before {
    border-color: rgba(116,198,239,0.6);
    box-shadow: 0 0 0 3px rgba(116,198,239,0.14);
}

.checkline a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.optional-fields {
    display: none;
    margin-top: 12px;
    margin-bottom: 22px;
}

.optional-fields.visible {
    display: block;
}

.btn {
    appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 0;
    padding: 11px 18px;
    border-radius: 12px;
    border: 1px solid transparent;
    background: linear-gradient(135deg,#4fb4e8,#74c6ef);
    color: #07131b;
    font-size: 0.96rem;
    font-weight: 700;
    cursor: pointer;
    transition: .2s ease;
    box-shadow: 0 16px 34px rgba(79,180,232,.16);
}

.btn:hover {
    opacity: 1;
    color: #ffffff;
}

.btn,
.btn:visited {
    color: #07131b;
    text-decoration: none;
}

.btn:hover,
.btn:focus,
.btn:active {
    color: #ffffff;
    text-decoration: none;
}

.btn:disabled,
.btn[disabled] {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.08);
    color: var(--muted);
    box-shadow: none;
    cursor: not-allowed;
    opacity: 0.6;
}

.btn:disabled:hover,
.btn:disabled:focus,
.btn:disabled:active,
.btn[disabled]:hover,
.btn[disabled]:focus,
.btn[disabled]:active {
    color: var(--muted);
    text-decoration: none;
}

.landing-page .btn:hover,
.landing-page .btn:focus,
.landing-page .btn:active {
    transform: none;
}

.btn-primary {
    color: #07131b;
    background: linear-gradient(135deg,#4fb4e8,#74c6ef);
    box-shadow: 0 16px 34px rgba(79,180,232,.16);
}

.btn-secondary,
.btn-link {
    border-color: transparent;
    background: linear-gradient(135deg,#4fb4e8,#74c6ef);
    color: #07131b;
    box-shadow: 0 16px 34px rgba(79,180,232,.16);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
    color: #ffffff;
}

.btn-link {
    text-decoration: none;
}

.btn-compact {
    min-width: 0;
    width: auto;
    justify-self: start;
}

.btn-dark {
    background: #333;
    color: #fff;
}

.btn-danger-soft,
.btn-danger-soft:visited {
    background: rgba(239, 68, 68, 0.12);
    border-color: rgba(248, 113, 113, 0.32);
    color: #fecaca;
    box-shadow: none;
}

.btn-danger-soft:hover,
.btn-danger-soft:focus,
.btn-danger-soft:active {
    background: rgba(239, 68, 68, 0.18);
    color: #fff5f5;
}

.btn-soft-success,
.btn-soft-success:visited {
    background: rgba(110, 231, 183, 0.14);
    border-color: rgba(110, 231, 183, 0.24);
    color: #d1fae5;
    box-shadow: none;
}

.btn-soft-success:hover,
.btn-soft-success:focus,
.btn-soft-success:active {
    background: rgba(110, 231, 183, 0.2);
    color: #ecfdf5;
}

.note {
    margin-top: 8px;
    color: var(--muted);
    font-size: 0.92rem;
}

.admin-shell {
    display: grid;
    gap: 28px;
    width: min(1440px, 100%);
}

.admin-headerbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.admin-headerbar .brand {
    margin: 0;
}

.admin-top-actions {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
}

.admin-main {
    display: block;
    padding: 28px 18px 24px;
}

.admin-nav {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    padding: 4px 0 10px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.admin-nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8px 12px 12px;
    border: 0;
    border-radius: 10px 10px 0 0;
    background: transparent;
    color: rgba(220,227,241,0.72);
    font-weight: 600;
    transition: color 0.18s ease, background 0.18s ease;
}

.admin-nav-link::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 2px;
    height: 2px;
    border-radius: 999px;
    background: transparent;
    transition: background 0.18s ease, opacity 0.18s ease;
    opacity: 0;
}

.admin-nav-link:hover,
.admin-nav-link:focus {
    color: #f5f7fb;
    background: rgba(255,255,255,0.03);
}

.admin-nav-link.active {
    background: rgba(255,255,255,0.04);
    color: #f7fbff;
}

.admin-nav-link.active::after {
    background: linear-gradient(90deg,#4fb4e8,#74c6ef);
    opacity: 1;
}

.admin-section {
    display: grid;
    gap: 18px;
}

.admin-overview-section {
    gap: 0;
}

.admin-overview-grid {
    display: grid;
    grid-template-columns: 1.05fr 1.2fr 1.75fr;
    gap: 16px;
}

.admin-overview-card {
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255,255,255,0.03);
    padding: 16px 18px;
    display: grid;
    gap: 14px;
}

.admin-overview-title {
    color: #f5f7fb;
    font-size: 1rem;
    font-weight: 700;
}

.admin-overview-list {
    display: grid;
    gap: 10px;
}

.admin-overview-item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.admin-overview-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.admin-overview-item span {
    color: var(--muted);
    font-size: 0.88rem;
}

.admin-overview-item strong {
    color: #f5f7fb;
    font-size: 1rem;
    font-weight: 700;
    text-align: right;
}

.admin-overview-item-stack {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
}

.admin-overview-item-stack strong {
    font-size: 1.02rem;
    text-align: left;
}

.admin-overview-card-chart {
    gap: 10px;
}

.admin-overview-chart {
    display: grid;
    grid-template-columns: repeat(14, minmax(0, 1fr));
    gap: 8px;
    align-items: end;
    min-height: 188px;
}

.admin-overview-bar-group {
    display: grid;
    justify-items: center;
    gap: 8px;
    min-width: 0;
}

.admin-overview-bar-value {
    color: #dce3f1;
    font-size: 0.78rem;
    line-height: 1;
}

.admin-overview-bar-track {
    width: 100%;
    height: 136px;
    display: flex;
    align-items: end;
    justify-content: center;
    padding: 0 2px;
}

.admin-overview-bar {
    display: block;
    width: 100%;
    max-width: 22px;
    min-height: 4px;
    border-radius: 10px 10px 4px 4px;
    background: linear-gradient(180deg, rgba(116,198,239,0.98), rgba(79,180,232,0.62));
    box-shadow: 0 10px 24px rgba(79,180,232,0.18);
}

.admin-overview-bar-label {
    color: var(--muted);
    font-size: 0.72rem;
    line-height: 1;
}

.admin-stats-section {
    gap: 14px;
}

.admin-stats-head {
    margin-bottom: 2px;
}

.admin-stats-subhead {
    margin-top: 6px;
}

.admin-section-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.admin-section-head h2 {
    margin: 0;
    font-size: 1.2rem;
}

.admin-stat-grid,
.admin-readonly-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
}

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

.admin-stat-grid-compact {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
}

.admin-stat-card,
.admin-agent-card,
.admin-readonly-card,
.admin-user-card {
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255,255,255,0.03);
    padding: 18px;
}

.admin-stat-card {
    padding: 14px 16px;
    min-height: 0;
}

.admin-stat-card .admin-stat-label {
    font-size: 0.82rem;
    line-height: 1.35;
}

.admin-stat-card .admin-stat-value {
    margin-top: 4px;
    font-size: 1.28rem;
    line-height: 1.25;
}

.admin-agent-card {
    display: flex;
    flex-direction: column;
    position: relative;
}

.admin-stat-label,
.admin-readonly-label,
.admin-agent-meta {
    color: var(--muted);
    font-size: 0.9rem;
}

.admin-table-muted {
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.45;
}

.admin-shop-order-form {
    margin: 0;
}

.admin-shop-order-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-shop-order-dropdown {
    min-width: 190px;
}

.admin-shop-order-submit-form {
    margin-top: 10px;
}

.admin-support-ticket {
    display: grid;
    gap: 18px;
}

.admin-support-overview {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 18px;
}

.admin-support-stat-card {
    display: grid;
    gap: 6px;
    padding: 16px 18px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    background: rgba(255,255,255,0.03);
}

.admin-support-stat-card span {
    color: var(--muted);
    font-size: 0.84rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.admin-support-stat-card strong {
    font-size: 1.5rem;
    line-height: 1;
}

.admin-support-table-wrap {
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 22px;
    overflow: hidden;
    background: rgba(255,255,255,0.025);
}

.admin-support-ticket-top,
.admin-support-ticket-body {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
    gap: 16px;
}

.admin-support-ticket-body {
    grid-template-columns: minmax(0, 1fr);
    margin-top: 16px;
}

.admin-support-panel {
    display: grid;
    gap: 14px;
    padding: 18px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    background: rgba(255,255,255,0.03);
}

.admin-support-panel-title {
    color: var(--text);
    font-size: 0.94rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.admin-support-ticket-summary {
    display: grid;
    gap: 6px;
    color: var(--soft);
}

.admin-support-inline-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-top: 4px;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 4px;
}

.admin-support-thread {
    display: grid;
    gap: 12px;
}

.admin-support-message {
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    background: rgba(255,255,255,0.03);
}

.admin-support-message.outbound {
    background: rgba(79,180,232,0.08);
    border-color: rgba(79,180,232,0.22);
}

.admin-support-message-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 0.85rem;
}

.admin-support-message-body {
    color: var(--text);
    line-height: 1.7;
}

.admin-support-reply-form {
    display: grid;
    gap: 14px;
}

.admin-support-status-form {
    margin: 0;
}

.admin-support-title {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.admin-support-sync-icon {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.03);
    color: var(--muted);
    line-height: 1;
    font-size: 0.95rem;
}

.admin-support-sync-icon[data-state="syncing"] {
    color: #74c6ef;
    animation: adminSupportSyncRotate 1s linear infinite;
}

.admin-support-sync-icon[data-state="completed"],
.admin-support-sync-icon[data-state="idle"] {
    color: #86efac;
}

.admin-support-sync-icon[data-state="error"] {
    color: #f87171;
}

@keyframes adminSupportSyncRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 980px) {
    .admin-support-overview,
    .admin-support-ticket-top,
    .admin-support-ticket-body {
        grid-template-columns: 1fr;
    }
}

.admin-stat-value,
.admin-readonly-value {
    margin-top: 6px;
    font-size: 1.6rem;
    font-weight: 700;
}

.admin-range-form {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    align-items: end;
}

.admin-range-shell {
    padding: 16px 18px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    background: rgba(255,255,255,0.025);
}

.admin-range-result,
.admin-range-action {
    align-self: end;
}

.admin-range-value {
    min-height: 52px;
    display: flex;
    align-items: center;
    padding: 0 18px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255,255,255,0.03);
    color: var(--text);
    font-weight: 700;
}

.admin-range-info {
    margin-top: 4px;
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    background: rgba(255,255,255,0.025);
}

.admin-range-info-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.admin-range-close,
.admin-range-close:link,
.admin-range-close:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.03);
    color: var(--muted);
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1;
}

.admin-range-close:hover,
.admin-range-close:focus {
    color: var(--text);
    border-color: rgba(255,255,255,.2);
}

.admin-range-disclosure {
    margin-top: 10px;
}

.admin-range-disclosure summary {
    cursor: pointer;
    color: var(--soft);
    margin-bottom: 10px;
}

.admin-agent-head,
.admin-user-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.admin-agent-identity {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.admin-agent-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    object-fit: cover;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    flex: 0 0 auto;
}

.admin-agent-metrics {
    margin-top: 14px;
    display: grid;
    gap: 6px;
}

.admin-agent-status-row {
    margin-top: auto;
    padding-top: 14px;
}

.admin-agent-actions {
    position: absolute;
    top: 14px;
    right: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.admin-agent-action-form {
    margin: 0;
}

.admin-agent-refresh,
.admin-agent-refresh:link,
.admin-agent-refresh:visited,
.admin-agent-toggle {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.03);
    color: var(--muted);
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1;
}

.admin-agent-refresh:hover,
.admin-agent-refresh:focus,
.admin-agent-toggle:hover,
.admin-agent-toggle:focus {
    color: var(--text);
    border-color: rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.06);
}

.admin-agent-toggle {
    cursor: pointer;
    font-size: 0.82rem;
    padding: 0;
}

.admin-agent-toggle.is-enabled {
    color: #b8f7d6;
    border-color: rgba(92, 214, 141, 0.28);
}

.admin-agent-toggle.is-disabled {
    color: #f2b3bb;
    border-color: rgba(255, 120, 120, 0.22);
    background: rgba(255, 120, 120, 0.06);
}

.admin-agent-refresh-all,
.admin-agent-refresh-all:link,
.admin-agent-refresh-all:visited {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.03);
    color: var(--muted);
    text-decoration: none;
    font-size: 0.82rem;
    line-height: 1;
}

.admin-agent-refresh-all:hover,
.admin-agent-refresh-all:focus {
    color: var(--text);
    border-color: rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.06);
}

.admin-agent-refresh-all span:first-child {
    font-size: 0.95rem;
}

.admin-agent-status {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.admin-agent-status-idle {
    background: rgba(255,255,255,0.08);
    color: #dce3f1;
}

.admin-agent-status-running {
    background: rgba(110,231,255,0.14);
    color: #c7f6ff;
}

.admin-agent-status-off {
    background: rgba(255, 120, 120, 0.12);
    color: #f4bac2;
}

.admin-agent-status-ok {
    background: rgba(134, 239, 172, 0.16);
    color: #bbf7d0;
}

.admin-agent-status-down {
    background: rgba(248,113,113,0.16);
    color: #fecaca;
}

.admin-search-form {
    margin-top: 10px;
}

.admin-search-shell {
    width: min(100%, 760px);
}

.admin-users-toolbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.admin-users-toolbar .admin-search-form {
    flex: 1 1 520px;
    margin-top: 0;
}

.admin-users-toolbar .admin-search-shell {
    width: min(100%, 760px);
}

.admin-pagination-top {
    justify-content: flex-end;
    flex: 1 1 420px;
    padding-top: 0;
}

.admin-users-per-page {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    flex-wrap: nowrap;
}

.admin-users-pagination-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.admin-users-pagination-controls {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    flex-wrap: nowrap;
}

.admin-users-per-page-label {
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 600;
}

.admin-users-dropdown {
    min-width: 96px;
}

.admin-users-dropdown.open {
    z-index: 60;
}

.admin-users-dropdown-toggle {
    min-height: 42px;
    min-width: 96px;
    padding: 0 38px 0 14px;
    border-radius: 12px;
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.1);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.admin-users-dropdown-toggle::before {
    top: calc(50% - 5px);
}

.admin-users-dropdown-toggle::after {
    display: none;
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.admin-dropdown.open .admin-users-dropdown-toggle::before {
    opacity: 1;
    transform: rotate(225deg);
}

.admin-users-dropdown .admin-dropdown-menu {
    top: calc(100% + 8px);
    bottom: auto;
    z-index: 120;
}

.admin-pagination-compact {
    gap: 10px;
}

.admin-pagination-status {
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 600;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
}

.admin-users-pagination-row .note {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    margin-bottom: 0;
}

.admin-dropdown-link,
.admin-dropdown-link:link,
.admin-dropdown-link:visited {
    display: block;
    color: var(--text);
    text-decoration: none;
}

.admin-toolbar {
    display: grid;
    gap: 16px;
}

.admin-toolbar-stack {
    margin-top: 4px;
}

.admin-view-switcher {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.admin-report-filter {
    grid-template-columns: 180px 180px 140px;
    gap: 12px;
    justify-content: start;
    align-items: end;
}

.admin-report-filter .field {
    max-width: 180px;
}

.admin-report-filter .admin-range-action {
    max-width: 140px;
}

.admin-report-filter .admin-range-action .btn {
    width: 100%;
    min-height: 52px;
    height: 52px;
    padding: 0 18px;
}

.admin-user-list {
    display: grid;
    gap: 16px;
}

.admin-create-user-card {
    display: grid;
    gap: 16px;
    margin-top: 8px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255,255,255,0.03);
}

.admin-create-user-head,
.admin-user-head-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.admin-create-user-head h3 {
    margin: 0;
    font-size: 1rem;
}

.admin-create-user-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 0.8fr 0.8fr 0.8fr;
    gap: 14px;
    align-items: end;
}

.admin-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    padding-top: 6px;
}

.admin-pagination-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 42px;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255,255,255,0.03);
    color: var(--soft);
    font-weight: 700;
}

.admin-pagination-link:hover,
.admin-pagination-link:focus {
    border-color: rgba(116,198,239,0.5);
    color: var(--text);
}

.admin-pagination-link.active {
    background: linear-gradient(135deg,#4fb4e8,#74c6ef);
    border-color: transparent;
    color: #07131b;
}

.admin-pagination-link.disabled {
    opacity: 0.42;
    pointer-events: none;
}

.admin-pagination-pages {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.admin-pagination-number {
    min-width: 42px;
}

.admin-pagination-ellipsis {
    color: var(--muted);
    font-size: 0.92rem;
}

.table-wrap {
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255,255,255,0.03);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 980px;
}

.admin-table th,
.admin-table td {
    padding: 12px 14px;
    text-align: left;
    border-bottom: 1px solid var(--line);
    vertical-align: middle;
}

.admin-table th {
    color: var(--muted);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: rgba(255,255,255,0.04);
}

.admin-table tbody tr:last-child td {
    border-bottom: none;
}

.admin-user-card {
    gap: 18px;
}

.admin-user-head-compact > div:not(.admin-user-meta) {
    display: none;
}

.admin-user-head-compact > button {
    display: none;
}

.admin-user-meta {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    color: var(--soft);
}

form.admin-user-card > .admin-user-head > div:not(.admin-user-meta) {
    display: none;
}

.admin-user-meta span {
    white-space: nowrap;
}

.admin-user-meta strong {
    font-weight: 700;
}

.admin-user-head-actions-inline {
    padding-top: 2px;
}

.admin-user-head-actions-inline .btn {
    min-height: 0;
}

.admin-user-details {
    display: grid;
    gap: 14px;
    margin-top: 14px;
}

.admin-user-details[hidden] {
    display: none !important;
}

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

.admin-user-grid-overview {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-user-grid-primary {
    grid-template-columns: 1fr 1fr 120px minmax(220px, 280px);
    align-items: end;
}

.admin-user-grid-secondary {
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr 1fr;
    align-items: end;
}

.admin-users-table {
    min-width: 1020px;
}

.admin-users-table th:first-child,
.admin-users-table td:first-child {
    width: 44px;
}

.admin-users-table th:nth-child(2),
.admin-users-table td:nth-child(2) {
    width: 46px;
    text-align: center;
}

.admin-users-table th:nth-child(3),
.admin-users-table td:nth-child(3) {
    width: 46px;
    text-align: center;
}

.admin-user-verified-cell {
    text-align: center;
}

.admin-user-verified-icon {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1;
    border: 1px solid transparent;
}

.admin-user-verified-icon.is-verified {
    background: rgba(34, 197, 94, 0.16);
    color: #86efac;
    border-color: rgba(34, 197, 94, 0.26);
}

.admin-user-verified-icon.is-unverified {
    background: rgba(251, 146, 60, 0.16);
    color: #fdba74;
    border-color: rgba(251, 146, 60, 0.28);
}

.admin-user-plan-status-cell {
    text-align: center;
}

.admin-user-plan-status-icon {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 0.62rem;
    font-weight: 800;
    line-height: 1;
    border: 1px solid transparent;
    letter-spacing: 0.02em;
}

.admin-user-plan-status-icon.is-admin {
    background: rgba(34, 197, 94, 0.16);
    color: #86efac;
    border-color: rgba(34, 197, 94, 0.26);
}

.admin-user-plan-status-icon.is-quick {
    background: rgba(217, 119, 6, 0.16);
    color: #fbbf24;
    border-color: rgba(217, 119, 6, 0.28);
}

.admin-user-plan-status-icon.is-self {
    background: rgba(59, 130, 246, 0.16);
    color: #93c5fd;
    border-color: rgba(59, 130, 246, 0.3);
}

.admin-user-plan-status-icon.is-curious {
    background: rgba(139, 92, 246, 0.16);
    color: #c4b5fd;
    border-color: rgba(139, 92, 246, 0.3);
}

.admin-user-plan-status-icon.is-scale {
    background: rgba(20, 184, 166, 0.16);
    color: #99f6e4;
    border-color: rgba(20, 184, 166, 0.3);
}

.admin-user-plan-status-icon.is-alert {
    background: rgba(239, 68, 68, 0.18);
    color: #fca5a5;
    border-color: rgba(239, 68, 68, 0.3);
}

.admin-user-row {
    cursor: pointer;
    user-select: none;
    caret-color: transparent;
}

.admin-user-row[aria-expanded="true"] .admin-user-chevron {
    transform: rotate(90deg);
}

.admin-user-chevron {
    transition: transform 0.2s ease;
}

.admin-create-user-disclosure {
    margin-bottom: 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255,255,255,0.03);
}

.admin-create-user-disclosure[open] .admin-user-chevron {
    transform: rotate(90deg);
}

.admin-create-user-summary {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 18px;
    cursor: pointer;
    list-style: none;
    caret-color: transparent;
    user-select: none;
}

.admin-create-user-summary::-webkit-details-marker {
    display: none;
}

.admin-create-user-summary-copy {
    display: grid;
    gap: 2px;
}

.admin-create-user-summary-copy strong {
    color: var(--text);
    font-size: 1rem;
    font-weight: 700;
}

.admin-create-user-disclosure .admin-create-user-card {
    margin: 0;
    padding: 0 18px 18px;
    border: 0;
    background: transparent;
}

.admin-user-email-cell strong {
    color: var(--text);
    font-weight: 700;
}

.admin-user-detail-row td {
    padding: 0;
    background: rgba(255,255,255,0.02);
}

.admin-user-detail-form {
    padding: 16px;
}

.admin-user-detail-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.admin-user-detail-title {
    color: var(--text);
    font-size: 1rem;
    font-weight: 700;
}

.admin-user-detail-actions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.admin-user-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    align-items: end;
}

.admin-user-detail-checkline {
    min-height: 52px;
}

.admin-user-reports {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.admin-user-reports-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.admin-user-reports-list {
    display: grid;
    gap: 10px;
}

.admin-user-report-card {
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255,255,255,0.03);
    padding: 12px 14px;
}

.admin-user-report-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.admin-user-report-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 8px;
    color: var(--soft);
    font-size: 0.92rem;
}

.admin-user-report-actions {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.admin-user-report-card-compact {
    padding: 8px 12px;
}

.admin-user-report-row {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    color: var(--soft);
    font-size: 0.92rem;
    line-height: 1.45;
    padding: 6px 0;
}

.admin-user-report-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    text-decoration: none;
    color: var(--soft);
}

.admin-user-report-disclosure {
    transition: transform 0.18s ease;
}

.admin-user-report-toggle[aria-expanded="true"] .admin-user-report-disclosure {
    transform: rotate(90deg);
}

.admin-user-report-row-active {
    background: rgba(255, 236, 153, 0.16);
    border-radius: 10px;
    padding: 8px 10px;
}

.admin-user-report-row + .admin-user-report-row {
    border-top: 1px solid rgba(255,255,255,0.06);
}

.admin-user-report-actions-inline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.admin-user-report-status-completed {
    color: #9fe3b3;
}

.admin-user-report-status-running {
    color: #f87171;
}

.admin-action-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 0;
    background: transparent;
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
    cursor: pointer;
    padding: 0;
    font: inherit;
}

.admin-action-link:hover,
.admin-action-link:focus {
    color: var(--accent-2);
}

.admin-action-link-small {
    font-size: 0.85rem;
    font-weight: 600;
}

.admin-action-link.is-rendering {
    color: #facc15;
    text-decoration: none;
    pointer-events: none;
}

.admin-user-report-url {
    font-size: 0.78rem;
    opacity: 0.82;
    word-break: break-all;
}

.admin-user-report-inline-details {
    margin: 6px 0 12px 26px;
}

.admin-delete-confirmation {
    margin-top: 4px;
}

.admin-select {
    appearance: none;
    width: 100%;
    min-height: 52px;
    padding: 0 42px 0 18px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background:
        linear-gradient(45deg, transparent 50%, var(--muted) 50%) calc(100% - 20px) calc(50% - 2px) / 8px 8px no-repeat,
        linear-gradient(135deg, var(--muted) 50%, transparent 50%) calc(100% - 14px) calc(50% - 2px) / 8px 8px no-repeat,
        rgba(255,255,255,0.03);
    color: var(--text);
    font: inherit;
}

.admin-select:focus {
    outline: none;
    border-color: rgba(116,198,239,0.6);
    box-shadow: 0 0 0 3px rgba(116,198,239,0.14);
}

.admin-dropdown {
    position: relative;
}

.admin-dropdown-toggle {
    appearance: none;
    width: 100%;
    min-height: 52px;
    padding: 0 42px 0 18px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255,255,255,0.03);
    color: var(--text);
    font: inherit;
    text-align: left;
    cursor: pointer;
    position: relative;
}

.admin-dropdown-toggle::before,
.admin-dropdown-toggle::after {
    content: '';
    position: absolute;
    right: 18px;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--muted);
    border-bottom: 2px solid var(--muted);
    pointer-events: none;
    transition: transform 0.18s ease;
}

.admin-dropdown-toggle::before {
    top: calc(50% - 7px);
    transform: rotate(45deg);
}

.admin-dropdown-toggle::after {
    top: calc(50% - 1px);
    transform: rotate(-135deg);
    opacity: 0;
}

.admin-dropdown.open .admin-dropdown-toggle {
    border-color: rgba(116,198,239,0.6);
    box-shadow: 0 0 0 3px rgba(116,198,239,0.14);
}

.admin-dropdown.open .admin-dropdown-toggle::before {
    opacity: 0;
}

.admin-dropdown.open .admin-dropdown-toggle::after {
    opacity: 1;
}

.admin-dropdown-menu {
    position: absolute;
    z-index: 30;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: grid;
    gap: 6px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #1b2129;
    box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

.admin-dropdown-menu[hidden] {
    display: none !important;
}

.admin-dropdown-option {
    appearance: none;
    width: 100%;
    min-height: 42px;
    padding: 10px 14px;
    border: 1px solid transparent;
    border-radius: 10px;
    background: transparent;
    color: var(--soft);
    font: inherit;
    text-align: left;
    cursor: pointer;
}

.admin-dropdown-option:hover,
.admin-dropdown-option:focus {
    outline: none;
    background: rgba(255,255,255,0.05);
    color: var(--text);
}

.admin-dropdown-option.active {
    background: linear-gradient(135deg,#4fb4e8,#74c6ef);
    color: #07131b;
    font-weight: 700;
}

.admin-checkline {
    position: relative;
    min-height: 52px;
    margin: 0;
    padding: 0 18px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255,255,255,0.03);
    align-items: center;
}

.admin-checkline input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.admin-checkline span {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding-left: 34px;
}

.admin-checkline span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 22px;
    height: 22px;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: #1f262f;
    transform: translateY(-50%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.admin-checkline span::after {
    content: '';
    position: absolute;
    left: 8px;
    top: 50%;
    width: 6px;
    height: 11px;
    border-right: 2px solid #07131b;
    border-bottom: 2px solid #07131b;
    transform: translateY(-60%) rotate(45deg);
    opacity: 0;
}

.admin-checkline input[type="checkbox"]:checked + span::before {
    background: linear-gradient(135deg,#4fb4e8,#74c6ef);
    border-color: transparent;
}

.admin-checkline input[type="checkbox"]:checked + span::after {
    opacity: 1;
}

.admin-checkline input[type="checkbox"]:focus + span::before {
    border-color: rgba(116,198,239,0.6);
    box-shadow: 0 0 0 3px rgba(116,198,239,0.14);
}

.admin-checkline-compact {
    width: 100%;
    justify-content: flex-start;
}

.admin-checkline-compact span {
    width: 22px;
    min-height: 22px;
    padding-left: 0;
}

.admin-create-user-checks {
    display: grid;
    gap: 10px;
    align-self: center;
}

.admin-checkline-plain {
    min-height: auto;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
}

.admin-checkline-plain span {
    color: var(--text);
}

.admin-inline-card {
    min-height: 52px;
    padding: 12px 16px;
    border-radius: 14px;
    display: flex;
    align-items: center;
}

.admin-inline-card .admin-readonly-label {
    font-size: 0.8rem;
}

.admin-inline-card .admin-readonly-value {
    margin-top: 0;
    font-size: 1rem;
}

.admin-link-form,
.admin-link-list {
    display: grid;
    gap: 14px;
}

.admin-link-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 2fr auto;
    gap: 14px;
    align-items: end;
}

.admin-coupon-grid {
    display: grid;
    grid-template-columns: minmax(180px, 220px) minmax(180px, 220px) minmax(110px, 130px) minmax(110px, 130px) minmax(130px, 150px) max-content max-content;
    gap: 12px;
    align-items: center;
    justify-content: start;
}

.admin-link-url {
    min-width: 0;
}

.admin-link-action {
    align-self: end;
}

.admin-coupon-checkfield {
    display: flex;
    align-items: center;
    align-self: end;
    min-height: 52px;
}

.admin-coupon-action {
    min-width: 0;
}

.admin-coupon-action .btn {
    min-height: 52px;
    height: 52px;
    padding: 0 18px;
    white-space: nowrap;
}

.admin-coupon-checkline {
    width: 52px;
    min-width: 52px;
    max-width: 52px;
    padding: 0;
    align-self: center;
    min-height: 52px;
    justify-content: center;
}

.admin-coupon-checkline span {
    width: 22px;
    min-height: 22px;
    padding-left: 0;
    font-size: 0;
}

.admin-coupon-checkline span::before {
    width: 20px;
    height: 20px;
    left: 50%;
    transform: translate(-50%, -50%);
}

.admin-coupon-checkline span::after {
    left: 50%;
    transform: translate(-35%, -60%) rotate(45deg);
}

.admin-coupon-checkfield {
    align-self: end;
}

.admin-coupon-actions-cell {
    white-space: nowrap;
}

.admin-coupon-actions-cell form {
    display: inline;
}

.admin-textlink-button,
.admin-textlink-button:link,
.admin-textlink-button:visited {
    appearance: none;
    border: none;
    background: transparent;
    padding: 0;
    margin: 0 10px 0 0;
    color: var(--soft);
    font: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
    cursor: pointer;
}

.admin-textlink-button:last-child {
    margin-right: 0;
}

.admin-textlink-button:hover,
.admin-textlink-button:focus {
    color: var(--text);
}

.admin-coupon-row-inactive td {
    background: rgba(239, 68, 68, 0.08);
}

.admin-link-card {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255,255,255,0.03);
}

.admin-links-hero {
    padding-top: 6px;
}

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

.admin-link-site-card {
    display: grid;
    gap: 10px;
}

.admin-link-remove-form {
    margin-top: 6px;
}

.notice {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid var(--line);
    color: var(--soft);
    background: rgba(255,255,255,0.06);
}

.notice.success {
    border-color: rgba(110, 231, 183, 0.35);
    background: rgba(16, 185, 129, 0.12);
    color: #d1fae5;
}

.notice.error {
    border-color: rgba(248, 113, 113, 0.35);
    background: rgba(239, 68, 68, 0.12);
    color: #fecaca;
}

.notice a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 600;
}

.intro {
    margin-bottom: 24px;
    font-size: 1.08rem;
    color: var(--muted);
}

.terms-content,
.page-copy {
    margin: 30px 0;
    font-size: 0.98rem;
    line-height: 1.8;
    color: var(--soft);
}

.terms-card .brand {
    margin-bottom: 18px;
}

.terms-hero-title {
    margin: 0 0 18px;
    font-size: clamp(2.2rem, 5vw, 4.8rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.pricing-note {
    max-width: none;
}

.terms-content ul,
.plan-features {
    margin: 15px 0;
    padding-left: 30px;
}

.terms-meta {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.92rem;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.shop-card {
    width: auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.shop-card-media {
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255,255,255,0.03);
    aspect-ratio: 1;
}

.shop-card-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-card-body {
    display: grid;
    gap: 10px;
    flex: 1;
}

.shop-card-topline {
    display: block;
}

.shop-card-title {
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.25;
}

.shop-price {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
}

.shop-card-actions {
    margin-top: auto;
    padding-top: 4px;
    display: flex;
    justify-content: center;
}

.shop-card-add-form {
    width: 100%;
}

.shop-card-actions .btn {
    width: 100%;
}

.shop-card-ribbon {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(184, 45, 45, 0.72);
    border: 1px solid rgba(255, 120, 120, 0.34);
    color: #ffffff;
    font-size: 0.74rem;
    letter-spacing: 0.04em;
    backdrop-filter: blur(6px);
}

.shop-card-unavailable-note {
    width: 100%;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.5;
    text-align: center;
    text-decoration: underline;
}

.shop-card-unavailable-note,
.shop-card-unavailable-note:link,
.shop-card-unavailable-note:visited,
.shop-card-unavailable-note:hover,
.shop-card-unavailable-note:active {
    color: var(--muted);
}

.shop-top-actions {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 16px;
}

.shop-stock-alert-copy {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
}

.shop-stock-alert-layout {
    display: grid;
    grid-template-columns: 220px minmax(0, 420px);
    gap: 18px;
    align-items: start;
    max-width: 680px;
    margin: 0 auto;
    justify-content: center;
}

.shop-stock-alert-product-card,
.shop-stock-alert-form-card {
    padding: 18px;
}

.shop-stock-alert-product-card {
    display: grid;
    gap: 14px;
}

.shop-stock-alert-image {
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255,255,255,0.03);
    aspect-ratio: 1 / 1;
    max-width: 180px;
}

.shop-stock-alert-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-stock-alert-product-copy {
    display: grid;
    gap: 10px;
}

.shop-stock-alert-eyebrow {
    color: rgba(255, 132, 132, 0.92);
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.shop-stock-alert-title {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.2;
    color: var(--text);
}

.shop-stock-alert-form {
    display: grid;
    gap: 18px;
    max-width: 100%;
    height: 100%;
    align-content: center;
}

.shop-stock-alert-actions {
    display: flex;
    justify-content: flex-start;
}

@media (max-width: 900px) {
    .shop-stock-alert-layout {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .shop-stock-alert-image {
        max-width: 220px;
    }
}

.section {
    margin-bottom: 20px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255,255,255,0.03);
}

.status-line {
    color: var(--muted);
    font-size: 0.95rem;
    margin: 0;
    white-space: nowrap;
}

.dashboard-shell {
    width: min(1200px, 100%);
    display: grid;
    gap: 22px;
}

.dashboard-headerbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.dashboard-headerbar .brand {
    margin: 0;
}

.dashboard-topline {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 18px;
}

.dashboard-top-meta {
    display: grid;
    gap: 14px;
    min-width: 0;
}

.dashboard-nav-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    min-width: 0;
}

.dashboard-nav-start-form {
    flex: 0 0 auto;
    margin: 0;
}

.dashboard-top-actions {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    flex-wrap: wrap;
}

.dashboard-nav-row .admin-nav,
.dashboard-nav-actions {
    padding: 4px 0 10px;
    align-items: stretch;
}

.dashboard-nav-row .admin-nav-link {
    min-height: 0;
    padding: 8px 12px 12px;
    border-radius: 10px 10px 0 0;
}

.dashboard-top-actions .btn {
    min-height: 46px;
    padding: 0 18px;
    border-radius: 12px;
}

.dashboard-header-status {
    display: grid;
    align-items: start;
    gap: 2px;
    min-height: 46px;
    padding: 0;
}

@media (max-width: 720px) {
    .dashboard-headerbar {
        flex-wrap: wrap;
    }

    .dashboard-topline {
        grid-template-columns: 1fr;
    }

    .dashboard-top-actions {
        justify-content: flex-start;
    }

    .dashboard-nav-row {
        flex-wrap: wrap;
    }

    .dashboard-header-status {
        width: 100%;
        justify-content: center;
    }
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 18px;
}

.dashboard-panel h2 {
    margin: 0 0 16px;
}

.dashboard-form,
.dashboard-start-form {
    gap: 16px;
}

.dashboard-profile-grid,
.dashboard-meta-grid,
.dashboard-report-meta,
.dashboard-compare-grid {
    display: grid;
    gap: 14px;
}

.dashboard-profile-grid {
    grid-template-columns: 1fr 1fr;
    position: relative;
    z-index: 2;
    margin-bottom: 8px;
}

.dashboard-profile-grid .field {
    position: relative;
    z-index: 3;
}

.dashboard-profile-grid input[type="text"],
.dashboard-profile-grid input[type="tel"] {
    position: relative;
    z-index: 4;
    pointer-events: auto;
}

.dashboard-meta-grid,
.dashboard-report-meta,
.dashboard-compare-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    position: relative;
    z-index: 1;
    margin-top: 6px;
}

.dashboard-meta-grid-email {
    grid-template-columns: 1fr;
}

.dashboard-meta-grid-contact {
    grid-template-columns: 1fr;
}

.dashboard-meta-input {
    width: 100%;
    margin-top: 10px;
    padding: 16px 18px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: #1f262f;
    color: var(--text);
    font-size: 1rem;
    font-family: inherit;
}

.dashboard-meta-input-readonly {
    pointer-events: none;
    caret-color: transparent;
    user-select: text;
}

.dashboard-meta-input-email {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dashboard-meta-input:focus {
    outline: none;
    border-color: rgba(255,255,255,0.22);
}

.dashboard-meta-card,
.dashboard-compare-card,
.dashboard-report-card {
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255,255,255,0.03);
    padding: 16px 18px;
}

.dashboard-meta-card-status {
    position: relative;
    padding-right: 52px;
    padding-bottom: 28px;
}

.dashboard-meta-card-email {
    padding-bottom: 18px;
}

.dashboard-meta-label {
    color: var(--muted);
    font-size: 0.86rem;
}

.dashboard-meta-value {
    margin-top: 6px;
    font-size: 1rem;
    font-weight: 700;
}

.dashboard-meta-status {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1;
}

.dashboard-meta-status svg {
    width: 13px;
    height: 13px;
    display: block;
}

.dashboard-meta-status.is-verified {
    background: rgba(34, 197, 94, 0.18);
    color: #86efac;
    border: 1px solid rgba(34, 197, 94, 0.32);
}

.dashboard-meta-status.is-unverified {
    background: rgba(239, 68, 68, 0.16);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.28);
}

.dashboard-meta-action-form {
    margin: 0;
}

.dashboard-meta-link,
.dashboard-meta-link:link,
.dashboard-meta-link:visited {
    position: absolute;
    right: 14px;
    bottom: 10px;
    border: 0;
    padding: 0;
    background: transparent;
    color: rgba(220,227,241,0.66);
    text-decoration: none;
    font-size: 0.7rem;
    line-height: 1;
    cursor: pointer;
}

.dashboard-meta-link:hover,
.dashboard-meta-link:focus {
    color: #f5f7fb;
}

.dashboard-meta-link-disabled,
.dashboard-meta-link-disabled:link,
.dashboard-meta-link-disabled:visited {
    cursor: default;
    opacity: 0.55;
    pointer-events: none;
}

.dashboard-form-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.dashboard-targets-shell {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    display: grid;
    gap: 14px;
}

.dashboard-targets-head h3 {
    margin: 0 0 6px;
    font-size: 1rem;
}

.dashboard-targets-head .note {
    margin: 0;
}

.dashboard-targets-form {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
    gap: 10px;
    align-items: end;
}

.dashboard-targets-form .field {
    margin: 0;
}

.dashboard-targets-list {
    display: grid;
    gap: 10px;
}

.dashboard-target-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255,255,255,0.02);
}

.dashboard-target-item-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.dashboard-target-item-meta {
    min-width: 0;
}

.dashboard-target-item-email {
    font-weight: 600;
    word-break: break-word;
}

.dashboard-target-item-extra {
    margin-top: 4px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: 0.86rem;
    flex-wrap: wrap;
}

.dashboard-target-item-actions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    flex: 0 0 auto;
}

.dashboard-target-edit-form {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
    gap: 10px;
    align-items: end;
}

.dashboard-target-edit-form .field {
    margin: 0;
}

.dashboard-targets-locked {
    margin-top: 18px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255,255,255,0.02);
    color: var(--muted);
}

@media (max-width: 980px) {
    .dashboard-targets-form {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dashboard-target-edit-form {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .dashboard-targets-form {
        grid-template-columns: 1fr;
    }

    .dashboard-target-item-main {
        flex-direction: column;
        align-items: flex-start;
    }

    .dashboard-target-item-actions {
        width: 100%;
    }

    .dashboard-target-edit-form {
        grid-template-columns: 1fr;
    }
}

.verify-phone-shell {
    width: min(100%, 760px);
    margin: 0 auto;
}

.verify-phone-code-page {
    width: min(100%, 620px);
    margin: 0 auto;
}

.verify-phone-card {
    display: grid;
    gap: 22px;
}

.verify-phone-code-card {
    display: grid;
    gap: 18px;
    align-items: start;
}

.verify-phone-code-card .notice {
    white-space: nowrap;
}

.public-verification-card .notice {
    white-space: normal;
}

.public-verification-card .sub {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

.public-verification-retry-form {
    width: min(100%, 520px);
    justify-self: center;
}

.verify-phone-code-brand {
    display: inline-flex;
    align-items: center;
    justify-self: start;
    color: #f5f7fb;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
}

.verify-phone-code-brand:hover,
.verify-phone-code-brand:focus {
    color: #ffffff;
}

.verify-phone-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.verify-phone-intro h1 {
    margin: 6px 0 10px;
}

.verify-phone-intro .lead {
    margin: 0;
}

.verify-phone-grid {
    display: grid;
    gap: 18px;
}

.verify-phone-form {
    display: grid;
    gap: 14px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255,255,255,0.03);
}

.verify-phone-code-form {
    gap: 18px;
    padding: 0;
    border: 0;
    background: transparent;
}

.verify-phone-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.verify-phone-code-input {
    max-width: 160px;
    letter-spacing: 0.28em;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
}

.verify-phone-code-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 76px));
    gap: 14px;
    justify-content: center;
}

.verify-phone-digit-input {
    width: 76px;
    height: 72px;
    padding: 0;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: #1f262f;
    color: var(--text);
    font-size: 4.4rem !important;
    line-height: 1;
    font-weight: 400;
    text-align: center;
    font-family: inherit;
    -webkit-text-size-adjust: 100%;
}

.verify-phone-digit-input:focus {
    outline: none;
    border-color: rgba(255,255,255,0.22);
}

.verify-phone-code-actions {
    justify-content: center;
}

.verify-phone-note {
    margin-top: 8px;
}

.verify-phone-linkrow {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

@media (max-width: 720px) {
    .verify-phone-header,
    .verify-phone-actions {
        align-items: stretch;
    }
}

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

.dashboard-report-toolbar {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.dashboard-credit-purchase-form {
    grid-template-columns: minmax(0, 220px) auto;
    gap: 12px;
    align-items: end;
    margin-top: 18px;
}

.dashboard-credit-package-field {
    gap: 8px;
}

.dashboard-credit-package-label {
    color: var(--soft);
    font-size: 0.92rem;
    font-weight: 700;
}

.dashboard-credit-topup-note {
    margin: 2px 0 0;
}

.dashboard-credit-package-select {
    min-width: 220px;
}

.dashboard-credit-dropdown {
    width: 100%;
}

@media (max-width: 720px) {
    .dashboard-meta-card-phone {
        grid-column: auto;
    }
}

.dashboard-credit-history {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.dashboard-credit-history-title {
    color: var(--soft);
    font-size: 0.92rem;
    margin-bottom: 10px;
}

.dashboard-credit-history-list {
    display: grid;
    gap: 8px;
}

.dashboard-credit-pagination-row {
    margin-top: 14px;
}

.dashboard-credit-table {
    min-width: 760px;
}

.dashboard-credit-history-item {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr;
    gap: 12px;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255,255,255,0.02);
    color: var(--soft);
    font-size: 0.92rem;
}

.dashboard-start-inline {
    display: inline-flex;
}

.dashboard-report-list {
    display: grid;
    gap: 16px;
}

.dashboard-report-head {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 16px;
    align-items: start;
}

.dashboard-report-titleblock h3,
.dashboard-compare-card h3 {
    margin: 0;
    font-size: 1.05rem;
}

.dashboard-panel .btn {
    font-weight: 400;
}

.dashboard-action-link,
.dashboard-action-link:link,
.dashboard-action-link:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
    padding: 0;
    border: none;
    background: transparent;
    color: #9ed8f6;
    font: inherit;
    font-weight: 400;
    text-decoration: none;
    cursor: pointer;
    box-shadow: none;
}

.dashboard-action-link:hover,
.dashboard-action-link:focus {
    color: #d7f1ff;
    text-decoration: underline;
}

.dashboard-table-head-inline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.dashboard-table-refresh,
.dashboard-table-refresh:link,
.dashboard-table-refresh:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1;
}

.dashboard-table-refresh:hover,
.dashboard-table-refresh:focus {
    color: #d7f1ff;
}

.dashboard-section-refresh,
.dashboard-section-refresh:link,
.dashboard-section-refresh:visited {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.03);
    margin-right: 2px;
    flex: 0 0 auto;
}

.dashboard-section-refresh:hover,
.dashboard-section-refresh:focus {
    border-color: rgba(158, 216, 246, 0.45);
    background: rgba(158, 216, 246, 0.08);
    text-decoration: none;
}

.dashboard-action-link-danger,
.dashboard-action-link-danger:link,
.dashboard-action-link-danger:visited {
    color: #f7b0b0;
}

.dashboard-action-link-danger:hover,
.dashboard-action-link-danger:focus {
    color: #ffd6d6;
}

.dashboard-report-status {
    display: inline-block;
    padding: 0;
    border-radius: 0;
    font-size: 0.78rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0.01em;
    background: transparent;
}

.dashboard-report-status-completed {
    color: #a7f3d0;
}

.dashboard-report-status-running {
    color: #fca5a5;
}

.dashboard-report-date-col,
.dashboard-report-date-cell {
    font-size: 0.82rem;
}

.dashboard-report-date-cell {
    color: var(--muted);
}

.dashboard-report-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 0;
}

.dashboard-inline-form {
    display: inline-flex;
}

.dashboard-compare-form {
    display: inline-flex;
}

.dashboard-report-bulk-actions {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.dashboard-report-start-form {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.dashboard-report-target-select {
    min-height: 40px;
    min-width: 240px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: #1f262f;
    color: var(--text);
    padding: 8px 10px;
    font-family: inherit;
}

.dashboard-report-target-email {
    font-weight: 400;
}

.dashboard-report-target-meta {
    margin-top: 4px;
    display: inline-flex;
    gap: 8px;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 0.82rem;
}

@media (max-width: 720px) {
    .dashboard-report-start-form {
        width: 100%;
    }

    .dashboard-report-target-select {
        width: 100%;
        min-width: 0;
    }
}

.dashboard-delete-confirmation {
    margin: 12px 0 18px;
    padding: 14px 16px;
    border: 1px solid rgba(248, 113, 113, 0.22);
    border-radius: 14px;
    background: rgba(239, 68, 68, 0.08);
}

.dashboard-delete-confirmation-inline {
    margin: 10px 0 0;
    padding: 12px 14px;
}

.dashboard-delete-confirmation-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.dashboard-delete-confirmation-copy {
    color: #fecaca;
    font-size: 0.92rem;
}

.dashboard-delete-confirmation-close,
.dashboard-delete-confirmation-close:link,
.dashboard-delete-confirmation-close:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 1px solid rgba(248, 113, 113, 0.22);
    border-radius: 8px;
    background: rgba(255,255,255,0.03);
    color: #fecaca;
    font: inherit;
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
}

.dashboard-delete-confirmation-close:hover,
.dashboard-delete-confirmation-close:focus {
    color: #fff1f1;
    border-color: rgba(248, 113, 113, 0.4);
}

.dashboard-delete-confirmation-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.dashboard-delete-confirmation-input {
    width: min(220px, 100%);
    min-height: 42px;
    padding: 10px 14px;
    border: 1px solid rgba(248, 113, 113, 0.26);
    border-radius: 12px;
    background: rgba(17, 20, 25, 0.75);
    color: var(--text);
    font: inherit;
}

.dashboard-delete-confirmation-input:focus {
    outline: none;
    border-color: rgba(248, 113, 113, 0.5);
}

.dashboard-compare-headbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.dashboard-compare-headbar h2 {
    margin: 0;
}

.dashboard-compare-close,
.dashboard-compare-close:link,
.dashboard-compare-close:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(255,255,255,0.03);
    color: var(--soft);
    font-size: 1.3rem;
    line-height: 1;
    text-decoration: none;
}

.dashboard-compare-close:hover,
.dashboard-compare-close:focus {
    color: var(--text);
    border-color: rgba(116,198,239,0.5);
}

.dashboard-entity-link,
.dashboard-entity-link:link,
.dashboard-entity-link:visited,
.dashboard-disclosure-toggle {
    color: var(--text);
    text-decoration: none;
}

.dashboard-entity-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.dashboard-entity-link-inline {
    gap: 10px;
}

.dashboard-entity-link:hover,
.dashboard-entity-link:focus {
    text-decoration: underline;
}

.dashboard-entity-text {
    color: var(--text);
    text-decoration: none;
}

.dashboard-entity-favicon {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    flex: 0 0 18px;
}

.dashboard-entity-favicon-placeholder {
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.03);
}

.dashboard-entity-favicon-spacer {
    border: none;
    background: transparent;
    opacity: 0;
}

.dashboard-report-check {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 42px;
}

.dashboard-report-check input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.dashboard-report-check span {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    min-width: 22px;
    padding-left: 22px;
    color: var(--soft);
    font-size: 0.92rem;
}

.dashboard-report-check span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 22px;
    height: 22px;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: #1f262f;
    transform: translateY(-50%);
}

.dashboard-report-check span::after {
    content: '';
    position: absolute;
    left: 8px;
    top: 50%;
    width: 6px;
    height: 11px;
    border-right: 2px solid #07131b;
    border-bottom: 2px solid #07131b;
    transform: translateY(-60%) rotate(45deg);
    opacity: 0;
}

.dashboard-report-check input[type="checkbox"]:checked + span::before {
    background: linear-gradient(135deg,#4fb4e8,#74c6ef);
    border-color: transparent;
}

.dashboard-report-check input[type="checkbox"]:checked + span::after {
    opacity: 1;
}

.dashboard-report-check.is-limit-disabled span,
.dashboard-report-check.is-disabled span {
    color: var(--muted);
    opacity: 0.55;
}

.dashboard-report-check.is-limit-disabled span::before,
.dashboard-report-check.is-disabled span::before {
    background: rgba(255,255,255,0.02);
}

.dashboard-compare-table-wrap {
    margin-top: 18px;
}

.dashboard-reports-table {
    min-width: 1040px;
}

.dashboard-reports-table th,
.dashboard-reports-table td {
    vertical-align: middle;
    font-weight: 400;
    padding: 10px 10px;
}

.dashboard-reports-table th:first-child,
.dashboard-reports-table td:first-child {
    width: 74px;
}

.dashboard-report-control-cell {
    text-align: left;
}

.dashboard-report-control-stack {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    min-height: 22px;
}

.dashboard-report-row {
    cursor: pointer;
}

.dashboard-report-row.is-disabled {
    cursor: default;
}

.dashboard-report-row:hover td {
    background: rgba(255,255,255,0.025);
}

.dashboard-report-row.is-disabled:hover td {
    background: transparent;
}

.dashboard-report-detail-row td {
    background: rgba(255,255,255,0.02);
}

.dashboard-report-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.dashboard-report-detail-card {
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255,255,255,0.03);
    padding: 14px;
}

.dashboard-report-detail-title {
    margin: 0 0 12px;
    color: var(--text);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.3;
}

.dashboard-report-detail-list {
    display: grid;
    gap: 10px;
}

.dashboard-report-detail-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    color: var(--soft);
}

.dashboard-report-detail-item-stack {
    align-items: flex-start;
    flex-direction: column;
}

.dashboard-report-empty {
    color: var(--muted);
    font-size: 0.92rem;
}

.dashboard-reports-table .dashboard-report-actions {
    margin-top: 10px;
    white-space: nowrap;
    gap: 10px;
    flex-wrap: nowrap;
}

.dashboard-reports-table th:last-child,
.dashboard-reports-table td:last-child {
    width: 1%;
    white-space: nowrap;
}

.dashboard-compare-table th,
.dashboard-compare-table td {
    font-weight: 400;
}

.dashboard-compare-diff-row td {
    background: rgba(239,68,68,0.08);
}

.dashboard-compare-head-title,
.dashboard-compare-head-date,
.dashboard-compare-head-time {
    display: block;
}

.dashboard-compare-head-title {
    color: var(--muted);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 400;
}

.dashboard-compare-head-date {
    color: var(--soft);
    font-size: 0.92rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
}

.dashboard-compare-head-time {
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
}

.dashboard-disclosure-toggle {
    appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    padding: 0;
    border: none;
    border-radius: 7px;
    background: transparent;
    font: inherit;
    text-align: left;
    cursor: pointer;
    flex: 0 0 22px;
}

.dashboard-disclosure-toggle:hover,
.dashboard-disclosure-toggle:focus {
    background: rgba(255,255,255,0.06);
}

.dashboard-disclosure-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1;
    transition: color 0.2s ease;
}

.dashboard-disclosure-icon.is-open {
    transform: rotate(90deg);
}

tr.dashboard-report-row.admin-user-report-row-active td {
    background: rgba(255, 236, 153, 0.12);
}

.dashboard-breach-cell {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    max-width: 100%;
    min-width: 0;
}

.dashboard-breach-cell-stack {
    align-items: flex-start;
    flex-wrap: nowrap;
    width: 100%;
}

.dashboard-entity-copy {
    min-width: 0;
}

.dashboard-entity-url {
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.45;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.dashboard-disclosure-row td {
    background: rgba(255,255,255,0.02);
}

.dashboard-breach-details-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.dashboard-breach-detail-card {
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255,255,255,0.03);
    padding: 14px;
    min-width: 0;
    white-space: normal !important;
    overflow: hidden;
}

.dashboard-breach-detail-line {
    color: var(--soft);
    font-size: 0.94rem;
    line-height: 1.55;
    overflow-wrap: anywhere;
    word-break: break-word;
    white-space: normal !important;
}

.dashboard-breach-detail-line a {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.dashboard-breach-detail-value {
    display: inline;
    overflow-wrap: anywhere;
    word-break: break-word;
    white-space: normal;
}

.dashboard-breach-detail-line div,
.dashboard-report-detail-list div,
.dashboard-report-detail-card,
.dashboard-report-detail-card * {
    overflow-wrap: anywhere;
    word-break: break-word;
    white-space: normal !important;
}

.dashboard-breach-detail-line + .dashboard-breach-detail-line {
    margin-top: 8px;
}

.dashboard-breach-tags {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.dashboard-breach-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
    color: var(--soft);
    font-size: 0.82rem;
}

.dashboard-breach-date-inline {
    color: var(--muted);
    font-size: 0.82rem;
}

.dashboard-plan-upsell-note {
    margin-top: 12px;
}

.status-danger {
    color: #fca5a5;
}

.status-muted {
    color: #9aa3af;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 30px;
}

.contact-submit {
    width: auto;
    align-self: flex-start;
    margin-top: 10px;
}

.status-box {
    margin-top: 20px;
    color: var(--muted);
}

.pricing-table {
    display: flex;
    gap: 32px;
    margin-top: 32px;
    align-items: stretch;
}

.plan {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.plan-title {
    margin-top: 0;
}

.plan-price {
    margin-bottom: 12px;
}

.plan-highlight {
    font-weight: 500;
    color: #d1fae5;
}

.plan-actions {
    margin-top: auto;
    padding-top: 12px;
}

.hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.footer {
    padding: 0 18px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    text-align: center;
    color: var(--muted);
    font-size: 0.92rem;
    flex-wrap: wrap;
}

.footer-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--muted);
    transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-link:hover {
    color: var(--text);
}

.footer-copy {
    white-space: nowrap;
}

.mobile-nav-toggle,
.mobile-menu,
.mobile-menu-overlay {
    display: none;
}

@media (min-width: 641px) {
    .mobile-nav-toggle,
    .mobile-menu,
    .mobile-menu-overlay {
        display: none !important;
    }
}

@media (max-width: 900px) {
    .dashboard-grid,
    .dashboard-profile-grid,
    .dashboard-report-head {
        grid-template-columns: 1fr;
    }

    .dashboard-report-detail-grid,
    .dashboard-breach-details-grid {
        grid-template-columns: 1fr;
    }

    .admin-create-user-grid,
    .admin-user-grid,
    .admin-user-grid-overview {
        grid-template-columns: 1fr;
    }

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

}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 1000;
}

.mobile-menu-overlay[hidden] {
    display: none !important;
}

.mobile-menu-overlay:not([hidden]) {
    display: block !important;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: min(82vw, 320px);
    height: 100vh;
    padding: 24px 18px 18px;
    background: #181c22;
    border-left: 1px solid var(--line);
    box-shadow: -12px 0 36px rgba(0,0,0,0.35);
    z-index: 1001;
    flex-direction: column;
    gap: 18px;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.mobile-menu-close {
    appearance: none;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.06);
    color: var(--text);
    width: 38px;
    height: 38px;
    border-radius: 10px;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
}

.mobile-menu .nav-link {
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255,255,255,0.03);
}

.mobile-menu-copy {
    margin-top: auto;
    color: var(--muted);
    font-size: 0.92rem;
}

@media (max-width: 640px) {
    .footer {
        display: flex !important;
        justify-content: center;
        padding: 0;
    }

    .footer-nav {
        display: none !important;
    }

    .footer-copy {
        display: block !important;
        position: fixed;
        left: 50%;
        bottom: 12px;
        transform: translateX(-50%);
        z-index: 1002;
        padding: 6px 10px;
        border-radius: 999px;
        background: rgba(17,20,25,0.92);
        border: 1px solid var(--line);
        backdrop-filter: blur(8px);
    }

    .mobile-nav-toggle {
        display: inline-flex !important;
        position: fixed;
        top: 12px;
        right: 16px;
        z-index: 1002;
        width: 44px;
        height: 44px;
        padding: 0;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 4px;
        border: 1px solid var(--line);
        border-radius: 10px;
        background: #23272e;
        box-shadow: 0 8px 24px rgba(0,0,0,0.24);
        cursor: pointer;
        visibility: visible;
        opacity: 1;
    }

    .mobile-menu {
        width: min(82vw, 320px);
        max-width: 320px;
        z-index: 1003;
    }

    .mobile-menu.active {
        display: flex !important;
    }

    .mobile-nav-toggle-bar {
        display: block;
        width: 20px;
        height: 2px;
        background: #f3f4f6;
        border-radius: 999px;
    }

    .main {
        padding-top: 68px;
        padding-bottom: 64px;
    }

    .card {
        padding: 18px 14px 20px;
        border-radius: 16px;
    }

    .hero-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .row {
        align-items: stretch;
    }

    .home-cta-email-shell input[type="email"] {
        padding-right: 18px;
    }

    .login-cta-email-shell input[type="email"] {
        padding-right: 18px;
    }

    .home-cta-email-shell .btn {
        position: static;
        transform: none;
        width: 100%;
        margin-top: 12px;
    }

    .login-cta-email-shell .btn {
        position: static;
        transform: none;
        width: 100%;
        margin-top: 12px;
    }

    .btn,
    .contact-submit {
        width: 100%;
        min-width: 0;
    }

    .split,
    .pricing-table {
        grid-template-columns: 1fr;
        flex-direction: column;
        gap: 18px;
    }

    .admin-range-form,
    .admin-user-grid,
    .admin-link-grid {
        grid-template-columns: 1fr;
    }

    .admin-links-grid {
        grid-template-columns: 1fr;
    }

    .admin-link-card {
        flex-direction: column;
    }
}

.links-main {
    display: block;
    padding: 40px 18px 24px;
}

.links-card {
    display: grid;
    gap: 22px;
}

.links-hero {
    display: grid;
    gap: 18px;
}

.links-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.links-title-copy {
    max-width: none;
    flex: 1;
}

.links-title-copy h1 {
    margin-bottom: 14px;
}

.links-intro {
    max-width: none;
    margin-top: -6px;
    margin-bottom: 22px;
}

.links-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.links-search-wrap {
    display: flex;
    align-items: flex-end;
    gap: 14px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.links-search-field {
    flex: 1 1 760px;
    width: auto;
    min-width: min(100%, 620px);
    margin: 0;
}

.links-search {
    width: 100%;
    padding: 16px 18px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: #1f262f;
    color: var(--text);
    font-size: 1rem;
    font-family: inherit;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.links-search:focus {
    outline: none;
    border-color: rgba(255,255,255,0.22);
    box-shadow: 0 0 0 4px rgba(255,255,255,0.04);
}

.links-meta {
    color: var(--muted);
    font-size: 0.97rem;
    white-space: nowrap;
    margin-left: auto;
}

.links-meta-top {
    align-self: center;
}

.links-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    padding-bottom: 4px;
}

.links-tab-btn {
    appearance: none;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.025);
    color: var(--muted);
    border-radius: 999px;
    padding: 11px 18px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
    transition: transform 0.18s ease, border-color 0.18s ease, color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.links-tab-btn:hover,
.links-tab-btn:focus-visible {
    color: var(--text);
    border-color: rgba(255,255,255,0.22);
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.16);
    outline: none;
}

.links-tab-btn.active {
    background: #f3f4f6;
    color: #090b0d;
    border-color: rgba(255,255,255,0.16);
    box-shadow: 0 12px 26px rgba(0,0,0,0.18);
}

.links-count {
    color: inherit;
    opacity: 0.72;
    font-weight: 500;
}

.links-empty-search {
    display: none;
}

.links-empty-search.show {
    display: block;
}

.links-categories {
    display: grid;
    gap: 22px;
}

.links-category {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.02));
}

.links-category.hidden {
    display: none;
}

.links-category h2 {
    margin-top: 0;
    margin-bottom: 18px;
}

.links-site-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.links-site-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 220px;
    padding: 18px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.018)),
        rgba(16,19,24,0.82);
    box-shadow: 0 18px 34px rgba(0,0,0,0.16);
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.links-site-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255,255,255,0.16);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.03)),
        rgba(16,19,24,0.92);
    box-shadow: 0 22px 42px rgba(0,0,0,0.22);
}

.links-site-card.hidden {
    display: none;
}

.links-site-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.links-site-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.35;
}

.links-site-link:hover {
    opacity: 0.82;
}

.links-favicon {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    background: rgba(255,255,255,0.08);
    flex: 0 0 16px;
}

.links-stars {
    letter-spacing: 2px;
    margin-bottom: 4px;
    font-size: 0.92rem;
    white-space: nowrap;
}

.links-star-on {
    color: #f3f4f6;
}

.links-star-off {
    color: rgba(255,255,255,0.14);
}

.links-desc {
    color: var(--soft);
    line-height: 1.55;
    margin-bottom: 6px;
    min-height: 3.1em;
    flex: 1;
}

.links-url {
    color: var(--muted);
    word-break: break-all;
    font-size: 0.92rem;
    margin-bottom: 4px;
}

.links-meta-line {
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.45;
    word-break: break-word;
    opacity: 0.9;
}

@media (max-width: 640px) {
    .links-main {
        padding-top: 68px;
        padding-bottom: 64px;
    }

    .links-card {
        padding: 18px 14px 20px;
    }

    .links-title-row,
    .links-search-wrap {
        flex-direction: column;
        align-items: flex-start;
    }

    .links-meta-top {
        align-self: flex-start;
    }

    .links-search {
        width: 100%;
    }

    .links-meta {
        margin-left: 0;
        white-space: normal;
    }

    .links-category {
        padding: 16px;
    }

    .links-site-card {
        padding: 14px;
    }
}

.landing-page {
    margin: 0;
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    background:
        radial-gradient(1000px 500px at 10% -10%, rgba(110,231,255,.10), transparent 60%),
        radial-gradient(900px 500px at 100% 0%, rgba(155,140,255,.12), transparent 55%),
        linear-gradient(180deg,#09090c,#0b0b0f 20%, #0d0d12 100%);
    color: #f5f7fb;
    line-height: 1.55;
}

.landing-page a {
    color: inherit;
    text-decoration: none;
}

.landing-page .cta-extra-options .checkline a,
.landing-page-light .cta-extra-options .checkline a {
    text-decoration: underline !important;
    text-underline-offset: 2px;
}

.landing-page img {
    max-width: 100%;
    display: block;
}

body.landing-page-light {
    background:
        radial-gradient(circle at 50% 0%, rgba(79, 70, 229, 0.08), transparent 36%),
        linear-gradient(180deg, #f7fafc 0%, #eef4f8 100%);
    color: #13212f;
}

.landing-page-light a {
    color: #13212f;
}

.landing-page-light .topbar {
    background: rgba(247, 250, 252, 0.82);
    border-bottom: 1px solid rgba(19, 33, 47, 0.08);
}

.landing-page-light .topbar .brand,
.landing-page-light .navlinks a:hover,
.landing-page-light h1,
.landing-page-light .section-title,
.landing-page-light .card h2,
.landing-page-light .card h3,
.landing-page-light .list li strong,
.landing-page-light .featurelist li,
.landing-page-light summary {
    color: #13212f;
}

.landing-page-light .navlinks {
    color: #5f7184;
}

.landing-page-light .lead,
.landing-page-light .section-lead,
.landing-page-light .card p,
.landing-page-light .list li span,
.landing-page-light details p,
.landing-page-light .quote,
.landing-page-light .subtle,
.landing-page-light .price small {
    color: #556779;
}

.landing-page-light .btn-primary {
    color: #07131b;
    background: linear-gradient(135deg,#4fb4e8,#74c6ef);
    box-shadow: 0 16px 34px rgba(79,180,232,.16);
}

.landing-page-light .btn-secondary,
.landing-page-light .btn-link {
    border-color: transparent;
    background: linear-gradient(135deg,#4fb4e8,#74c6ef);
    color: #07131b;
    box-shadow: 0 16px 34px rgba(79,180,232,.16);
}

.landing-page-light .kicker,
.landing-page-light .eyebrow {
    color: #0f5f8f;
    background: rgba(66,165,245,.10);
    border: 1px solid rgba(66,165,245,.20);
}

.landing-page-light .hero-card,
.landing-page-light .card,
.landing-page-light .what-you-get-shell,
.landing-page-light details,
.landing-page-light .cta-banner,
.landing-page-light .panel {
    background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,255,255,.74));
    border-color: rgba(19, 33, 47, 0.10);
    box-shadow: 0 20px 50px rgba(67, 84, 100, 0.12);
}

.landing-page-light .hero-card img,
.landing-page-light .panel img {
    border-color: rgba(19, 33, 47, 0.08);
}

.landing-page-light .list li {
    background: rgba(245, 249, 252, 0.9);
    border-color: rgba(19, 33, 47, 0.08);
}

.landing-page-light .pricing .card {
    background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(247,250,252,.82));
    border-color: rgba(19, 33, 47, 0.12);
}

.landing-page-light .pricing .featured {
    outline: 2px solid rgba(30,136,229,.30);
    box-shadow: 0 22px 48px rgba(30,136,229,.10), 0 18px 50px rgba(67,84,100,.14);
}

.landing-page-light .input,
.landing-page-light select {
    color: #13212f;
    background: rgba(255,255,255,.92);
    border-color: rgba(19, 33, 47, 0.12);
}

.landing-page-light .input::placeholder {
    color: #7a8b9b;
}

.landing-page-light .checkline,
.landing-page-light .cta-form label {
    color: #314252;
}

.landing-page-light .footer-link {
    color: #245f8a;
}

.landing-page-light .footer,
.landing-page-light .footer-copy,
.landing-page-light .mobile-menu-copy {
    color: #5f7184;
}

.landing-page-light .mobile-menu {
    background: rgba(250, 252, 255, 0.98);
    border-left: 1px solid rgba(19, 33, 47, 0.08);
}

.landing-page-light .mobile-menu .nav-link,
.landing-page-light .mobile-menu-close {
    color: #13212f;
    border-color: rgba(19, 33, 47, 0.10);
}

.landing-page-light .mobile-menu-overlay {
    background: rgba(19, 33, 47, 0.18);
}

.landing-page .container {
    width: min(calc(100% - 40px), 1180px);
    margin: 0 auto;
}

.landing-page .topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(16px);
    background: rgba(9,9,12,.62);
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.landing-page .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 0;
}

.landing-page .topbar .brand {
    margin: 0;
    color: #f5f7fb;
    font-size: 0.9rem;
    letter-spacing: 0.18em;
    flex: 0 0 auto;
}

.landing-page .navlinks {
    display: flex;
    gap: 18px;
    color: #adb4c4;
    font-size: .96rem;
    flex: 1 1 auto;
    justify-content: center;
}

.landing-page .navlinks a:hover {
    color: #f5f7fb;
}

.landing-page .hero {
    padding: 72px 0 48px;
}

.landing-page .hero-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 34px;
    align-items: center;
}

.landing-page .kicker,
.landing-page .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #c7f6ff;
    background: rgba(110,231,255,.08);
    border: 1px solid rgba(110,231,255,.18);
    padding: 8px 12px;
    border-radius: 12px;
    font-size: .82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .14em;
    margin-bottom: 18px;
}

.landing-page h1 {
    margin: 0 0 18px;
    font-size: clamp(2.2rem, 5vw, 4.8rem);
    line-height: .98;
    letter-spacing: -.04em;
}

.landing-page .lead {
    margin: 0 0 26px;
    max-width: 760px;
    color: #adb4c4;
    font-size: 1.12rem;
}

.landing-page .lead p {
    margin: 0 0 12px;
}

.landing-page .lead p:last-child {
    margin-bottom: 0;
}

.landing-page .cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin: 0 0 22px;
}

.landing-page .microproof {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    color: #d8deea;
    font-size: .96rem;
}

.landing-page .microproof span {
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.landing-page .hero-card {
    background: linear-gradient(180deg,rgba(255,255,255,.05),rgba(255,255,255,.02));
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 30px;
    padding: 18px;
    box-shadow: 0 18px 60px rgba(0,0,0,.35);
}

.landing-page .hero-card > p {
    margin: 0 0 14px;
}

.landing-page .hero-card > p:last-of-type {
    margin-bottom: 0;
}

.landing-page .hero-card img {
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,.08);
}

.landing-page .image-rotator {
    position: relative;
    width: 100%;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    border-radius: 22px;
    background: rgba(8, 13, 18, 0.35);
}

.landing-page .image-rotator img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    opacity: 0;
    transform: translateX(0);
    transition: opacity 0.62s ease, transform 0.62s ease;
    will-change: opacity, transform;
}

.landing-page .image-rotator img.is-active {
    opacity: 1;
    z-index: 2;
}

.landing-page .image-rotator img.is-enter-from-right {
    transform: translateX(18%);
}

.landing-page .image-rotator img.is-enter-from-left {
    transform: translateX(-18%);
}

.landing-page .image-rotator img.is-leave-to-left {
    opacity: 0;
    transform: translateX(-18%);
    z-index: 1;
}

.landing-page .image-rotator img.is-leave-to-right {
    opacity: 0;
    transform: translateX(18%);
    z-index: 1;
}

.landing-page .hero-card .caption {
    margin-top: 12px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: #adb4c4;
    font-size: .92rem;
}

.landing-page .hero-card h2 {
    margin: 0 0 15px;
}

.landing-page .problem-feature {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, .92fr);
    gap: 28px;
    align-items: center;
    margin-bottom: 30px;
}

.landing-page .problem-feature-copy .section-title,
.landing-page .problem-feature-copy .section-lead {
    max-width: 720px;
}

.landing-page .problem-feature-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
}

.landing-page .problem-feature-visual img {
    display: block;
    width: 100%;
    max-width: 420px;
    height: auto;
}

.landing-page .stats {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 14px;
    margin: 26px 0 0;
}

.landing-page .stat {
    padding: 18px;
    border-radius: 20px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
}

.landing-page .stat strong {
    display: block;
    font-size: 1.35rem;
}

.landing-page .stat span {
    color: #adb4c4;
    font-size: .92rem;
}

.landing-page section {
    padding: 34px 0;
}

.landing-page .section-title {
    margin: 0 0 10px;
    font-size: clamp(1.75rem,3vw,2.8rem);
    line-height: 1.05;
    letter-spacing: -.03em;
}

.landing-page .section-lead {
    margin: 0 0 24px;
    color: #adb4c4;
    max-width: 820px;
}

.landing-page .grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.landing-page .what-you-get-shell,
.landing-page .what-you-get-content {
    display: block;
    width: 100%;
}

.landing-page .what-you-get-grid {
    display: grid;
    grid-template-columns: minmax(280px, .92fr) minmax(0, 1.08fr);
    gap: 28px;
    align-items: center;
}

.landing-page .what-you-get-shell {
    padding: 30px;
    border-radius: 28px;
    background: linear-gradient(180deg,rgba(255,255,255,.05),rgba(255,255,255,.02));
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 18px 60px rgba(0,0,0,.35);
}

.landing-page .what-you-get-content .section-title,
.landing-page .what-you-get-content .section-lead {
    max-width: 820px;
}

.landing-page .what-you-get-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing-page .what-you-get-visual img {
    display: block;
    width: 100%;
    max-width: 420px;
    height: auto;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 18px 60px rgba(0,0,0,.28);
}

.landing-page .grid-3 {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
}

.landing-page .grid-4 {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 14px;
}

.landing-page .card {
    width: auto;
    background: linear-gradient(180deg,rgba(255,255,255,.05),rgba(255,255,255,.02));
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 22px;
    padding: 22px;
    box-shadow: 0 18px 60px rgba(0,0,0,.35);
}

.landing-page .card h2,
.landing-page .card h3 {
    margin: 0 0 10px;
    font-size: 1.1rem;
}

.landing-page .card p {
    margin: 0;
    color: #adb4c4;
}

.landing-page .list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.landing-page .list li {
    display: grid;
    gap: 6px;
    color: #e9edf8;
    background: rgba(255,255,255,.02);
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 16px;
}

.landing-page .list li strong {
    display: block;
    color: #f5f7fb;
}

.landing-page .list li span {
    display: block;
    color: #adb4c4;
}

.landing-page .step {
    position: relative;
    padding-top: 64px;
}

.landing-page #how-it-works .grid-3 {
    counter-reset: steps;
}

.landing-page .step::before {
    counter-increment: steps;
    content: counter(steps);
    position: absolute;
    inset: 20px auto auto 20px;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #071017;
    background: linear-gradient(135deg,#6ee7ff,#baf0ff);
    font-weight: 800;
}

.landing-page .quote {
    font-size: 1.02rem;
    margin: 0 0 40px;
}

.landing-page .person {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
}

.landing-page .badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.landing-page .badge {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    color: #dce3f1;
    font-size: .9rem;
}

.landing-page .pricing {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.landing-page .pricing .card {
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,.04));
    border-color: rgba(255,255,255,.12);
}

.landing-page .pricing .card > *:last-child {
    margin-top: auto;
}

.landing-page .plan-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: auto;
    padding-top: 4px;
    min-height: 52px;
    text-align: center;
}

.landing-page .plan-actions .btn,
.landing-page .plan-actions .footer-link {
    align-self: center;
}

.landing-page .pricing-single {
    grid-template-columns: minmax(0, 420px);
    justify-content: center;
}

.landing-page .pricing .featured {
    outline: 2px solid rgba(110,231,255,.45);
    transform: translateY(-4px);
    box-shadow: 0 22px 48px rgba(110,231,255,.10), 0 18px 60px rgba(0,0,0,.35);
}

.landing-page .price {
    font-size: 2rem;
    font-weight: 800;
    margin: 4px 0 14px;
}

.landing-page .price small {
    font-size: 1rem;
    color: #adb4c4;
    font-weight: 600;
}

.landing-page .featurelist {
    list-style: none;
    padding: 0;
    margin: 16px 0 18px;
    display: grid;
    gap: 10px;
}

.landing-page .featurelist li {
    color: #dce3f1;
}

.landing-page .featurelist li::before {
    content: "\2713";
    color: #b7ff9f;
    margin-right: 10px;
    font-weight: 700;
}

.landing-page .faq {
    display: grid;
    gap: 12px;
}

.landing-page details {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    padding: 16px 18px;
}

.landing-page summary {
    cursor: pointer;
    font-weight: 700;
}

.landing-page details p {
    margin: 10px 0 0;
    color: #adb4c4;
}

.landing-page .cta-banner {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 20px;
    align-items: center;
    padding: 28px;
    border-radius: 28px;
    background:
        radial-gradient(500px 200px at 10% 20%, rgba(110,231,255,.15), transparent 60%),
        radial-gradient(420px 240px at 100% 0%, rgba(155,140,255,.12), transparent 58%),
        linear-gradient(135deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
    border: 1px solid rgba(255,255,255,.10);
    box-shadow: 0 18px 60px rgba(0,0,0,.35);
}

.landing-page .form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
}

.landing-page .cta-form {
    grid-template-columns: 1fr;
}

.landing-page .cta-email-shell {
    position: relative;
    width: min(100%, 560px);
}

.landing-page .cta-email-shell .input {
    padding-right: 170px;
    border-radius: 12px;
    padding-top: 16px;
    padding-bottom: 16px;
    background: #1f262f;
    border: 1px solid var(--line);
    color: var(--text);
    box-shadow: none;
}

.landing-page .cta-email-shell .input:focus {
    border: 1px solid rgba(255,255,255,0.22);
    box-shadow: none;
}

.landing-page .cta-email-shell .btn {
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    min-width: 0;
    padding: 11px 18px;
}

.landing-page .cta-email-shell .btn:hover,
.landing-page .cta-email-shell .btn:focus,
.landing-page .cta-email-shell .btn:active {
    transform: translateY(-50%) !important;
}

.landing-page .cta-extra-options {
    display: grid;
    gap: 22px;
    margin-top: 6px;
    width: fit-content;
    max-width: min(100%, 560px);
    margin-left: auto;
    margin-right: auto;
    justify-items: start;
}

.landing-page .cta-submit-row {
    margin-top: 4px;
    justify-self: center;
}

.landing-page .cta-extra-options[hidden] {
    display: none;
}

.landing-page .cta-form label {
    color: #dce3f1;
}

.landing-page .cta-extra-options .checkline {
    width: auto;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding-left: 34px;
    text-align: left;
    justify-self: start;
}

.landing-page .cta-form .field label {
    color: #dce3f1;
    font-size: 0.92rem;
}

.landing-page .input,
.landing-page select {
    width: 100%;
    border-radius: 12px;
    padding: 15px 18px;
    color: #f5f7fb;
    background: #0f1118;
    border: 1px solid rgba(255,255,255,.10);
    outline: none;
}

.landing-page .subtle {
    display: block;
    color: #adb4c4;
    font-size: .84rem;
    margin-top: 10px;
}

.landing-page .panel {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 26px;
    padding: 22px;
    text-align: center;
}

.landing-page .panel img {
    margin: 0 auto;
    width: 100%;
    max-width: 640px;
    aspect-ratio: 8 / 5;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    object-position: center;
}

.landing-page #problem .grid-3 {
    margin-top: 28px;
}

.pricing-page-main {
    display: block;
    padding: 40px 18px 24px;
}

.pricing-page-shell {
    width: min(1380px, 100%);
    margin: 0 auto;
    display: grid;
    gap: 18px;
    padding: 34px 28px 30px;
}

.pricing-page-hero {
    display: grid;
    gap: 12px;
}

.pricing-page-hero .sub {
    max-width: none;
    margin-bottom: 0;
}

.pricing-page-intro {
    max-width: none;
    margin: 0;
}

.pricing-page-shell .pricing {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.pricing-page-shell .pricing .card {
    padding: 24px 20px 22px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-page-shell .pricing .price {
    font-size: 1.72rem;
    margin: 2px 0 12px;
}

.pricing-page-shell .pricing .price small {
    font-size: 0.64rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    opacity: 0.9;
}

.pricing-page-shell .pricing .card h2 {
    margin: 0 0 4px;
    font-size: 1.05rem;
    letter-spacing: 0.01em;
}

.pricing-page-shell .pricing .section-lead {
    font-size: 0.94rem;
    line-height: 1.52;
}

.pricing-page-shell .pricing .featurelist {
    margin-top: 14px;
    margin-bottom: 18px;
    gap: 9px;
}

.pricing-page-shell .pricing .featurelist li {
    font-size: 0.91rem;
    line-height: 1.45;
}

.pricing-page-shell .section-title {
    font-size: clamp(1.9rem, 3.2vw, 2.8rem);
}

.pricing-page-intro {
    font-size: 0.96rem;
    line-height: 1.56;
}

.pricing-page-shell .plan-actions-wrap {
    width: 100%;
    margin-top: auto;
    min-height: 64px;
    display: flex;
    align-items: center;
}

.pricing-page-shell .plan-actions {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-page-shell .plan-actions .btn,
.pricing-page-shell .plan-actions .footer-link {
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-copy-spaced {
    margin-bottom: 24px;
}

.pricing-page-shell .paid-plan .plan-actions-wrap {
    min-height: 72px;
}

.plan-popular-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    display: inline-flex;
    align-items: center;
    border: 1px solid transparent;
    background: linear-gradient(135deg, #4fb4e8, #74c6ef);
    color: #07131b;
    border-radius: 999px;
    padding: 5px 11px;
    font-size: 0.62rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(79,180,232,0.26);
}

@media (max-width: 1180px) {
    .pricing-page-shell .pricing {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .pricing-page-shell .pricing {
        grid-template-columns: 1fr;
    }
}

.payment-page-main {
    display: block;
    padding: 40px 18px 24px;
}

.payment-page-shell {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    gap: 24px;
}

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

.payment-card-priority {
    border-color: rgba(116,198,239,0.22);
    background:
        radial-gradient(circle at top right, rgba(79,180,232,0.14), transparent 34%),
        rgba(255,255,255,0.03);
}

.thankyou-card {
    max-width: 760px;
    margin: 0 auto;
}

.thankyou-hero {
    gap: 14px;
}

.thankyou-badge {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    min-height: 34px;
    padding: 0 14px;
    border: 1px solid rgba(116,198,239,0.35);
    border-radius: 999px;
    background: rgba(79,180,232,0.12);
    color: #9dd8f5;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.thankyou-actions {
    margin-top: 8px;
    justify-content: flex-start;
    gap: 12px;
    flex-wrap: wrap;
}

.payment-card {
    width: auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.payment-logo {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    width: fit-content;
    max-width: 100%;
}

.payment-logo-text {
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid rgba(116,198,239,0.25);
    border-radius: 999px;
    background: rgba(79,180,232,0.08);
}

.payment-logo-text span {
    color: #9dd8f5;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.payment-logo svg {
    display: block;
    height: 22px;
    width: auto;
    max-width: 100%;
}

.payment-logo img {
    display: block;
    width: auto;
    height: 56px;
    max-width: 100%;
    object-fit: contain;
}

.payment-qr-box {
    width: min(150px, 100%);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    padding: 0;
    border: none;
    background: transparent;
    margin: 0 auto;
}

.payment-qr-box img {
    width: 100%;
    height: auto;
    border-radius: 0;
}

.payment-note {
    color: #adb4c4;
    font-size: .92rem;
    line-height: 1.6;
}

.payment-stripe-box {
    width: 100%;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.payment-coupon-form {
    display: grid;
    grid-template-columns: 140px minmax(220px, 320px) minmax(220px, 260px) auto;
    gap: 14px;
    align-items: end;
    margin-top: 20px;
    padding: 22px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 24px;
    background: rgba(255,255,255,.025);
}

.payment-coupon-form input[readonly] {
    cursor: default;
    caret-color: transparent;
    user-select: none;
}

.payment-coupon-form input[readonly]:focus {
    outline: none;
    border-color: var(--line);
    box-shadow: none;
}

.payment-checkfield {
    gap: 10px;
}

.payment-checkline {
    position: relative;
    display: flex;
    gap: 10px;
    min-height: 52px;
    margin: 0;
    padding: 0 18px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255,255,255,0.03);
    align-items: center;
    color: var(--soft);
    font-size: 0.97rem;
    line-height: 1.5;
    cursor: pointer;
}

.payment-checkline input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.payment-checkline span {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding-left: 34px;
}

.payment-checkline span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 22px;
    height: 22px;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: #1f262f;
    transform: translateY(-50%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.payment-checkline span::after {
    content: '';
    position: absolute;
    left: 8px;
    top: 50%;
    width: 6px;
    height: 11px;
    border-right: 2px solid #07131b;
    border-bottom: 2px solid #07131b;
    transform: translateY(-60%) rotate(45deg);
    opacity: 0;
}

.payment-checkline input[type="checkbox"]:checked + span::before {
    background: linear-gradient(135deg,#4fb4e8,#74c6ef);
    border-color: transparent;
}

.payment-checkline input[type="checkbox"]:checked + span::after {
    opacity: 1;
}

.payment-checkline input[type="checkbox"]:focus + span::before {
    border-color: rgba(116,198,239,0.6);
    box-shadow: 0 0 0 3px rgba(116,198,239,0.14);
}

.payment-coupon-action .btn {
    min-height: 52px;
    height: 52px;
    padding: 0 18px;
}

.payment-price-summary {
    display: grid;
    gap: 10px;
    margin-top: 6px;
    padding: 18px 20px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    background: rgba(255,255,255,.03);
    grid-column: 1 / -1;
}

.payment-price-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: #d8deea;
}

.payment-price-line-total {
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,.08);
    color: #f5f7fb;
}

.payment-checkout-stack {
    display: grid;
    justify-items: center;
    gap: 12px;
    margin-top: 4px;
    grid-column: 1 / -1;
}

.shop-checkout-grid {
    display: grid;
    grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
    gap: 18px;
}

.shop-checkout-grid-stacked {
    grid-template-columns: 1fr;
}

.shop-checkout-image {
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255,255,255,.03);
    aspect-ratio: 1;
}

.shop-checkout-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-checkout-title {
    margin: 0;
    font-size: 1.5rem;
    line-height: 1.2;
}

.shop-checkout-option-note {
    margin: 0;
}

.shop-checkout-form {
    display: grid;
    gap: 14px;
}

.shop-checkout-option-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 110px;
    gap: 14px;
    align-items: end;
}

.shop-checkout-option-field,
.shop-checkout-quantity-field {
    min-width: 0;
}

.shop-select-wrap {
    position: relative;
}

.shop-select-wrap::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 16px;
    width: 10px;
    height: 10px;
    border-right: 2px solid rgba(255,255,255,0.6);
    border-bottom: 2px solid rgba(255,255,255,0.6);
    transform: translateY(-65%) rotate(45deg);
    pointer-events: none;
}

.shop-select {
    width: 100%;
    appearance: none;
    padding: 16px 46px 16px 18px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.10);
    background: #1f262f;
    color: var(--text);
    font-size: 1rem;
    font-family: inherit;
    line-height: 1.4;
}

.shop-select:focus {
    outline: none;
    border-color: rgba(255,255,255,0.22);
}

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

.shop-checkout-actions {
    justify-items: start;
    margin-top: 6px;
}

.shop-checkout-actions .btn {
    width: auto;
    min-width: 180px;
}

.payment-card-compact {
    width: 100%;
    max-width: 360px;
    justify-self: end;
    align-self: start;
}

.payment-card-compact .split,
.payment-card-compact .shop-checkout-address-grid {
    grid-template-columns: 1fr;
}

.payment-card-compact .shop-checkout-form {
    gap: 12px;
}

.payment-card-align-right {
    margin-left: auto;
}

.shop-checkout-actions-compact {
    justify-items: end;
}

.shop-action-link {
    appearance: none;
    background: transparent;
    border: 0;
    padding: 0;
    margin: 0;
    color: var(--soft);
    font: inherit;
    text-decoration: underline;
    cursor: pointer;
}

.shop-action-link:hover,
.shop-action-link:focus {
    color: var(--text);
}

.shop-checkout-locked-value {
    min-height: 52px;
    padding: 16px 18px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
    color: var(--text);
    display: flex;
    align-items: center;
}

.shop-cart-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}

.shop-cart-head-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.shop-cart-items {
    display: grid;
    gap: 12px;
}

.shop-cart-item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto auto;
    gap: 14px;
    align-items: center;
    padding: 12px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.shop-cart-item:first-child {
    border-top: 0;
    padding-top: 0;
}

.shop-cart-item-image {
    width: 72px;
    height: 72px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
}

.shop-cart-item-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-cart-item-copy {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.shop-cart-clear-form {
    margin: 0;
}

.shop-cart-inline-form {
    display: grid;
    grid-template-columns: 90px auto;
    gap: 10px;
    align-items: center;
}

.shop-cart-item input[type="text"] {
    text-align: center;
    width: 90px;
    margin: 0;
}

.shop-cart-remove-form {
    margin: 0;
}

.shop-cart-remove-form .shop-card-unavailable-note {
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
}

.payment-page-topbar {
    margin-bottom: 4px;
}

.shop-checkout-summary-grid {
    align-items: start;
}

.payment-card-address,
.payment-card-items {
    align-self: start;
}

.payment-card-address {
    width: 100%;
}

.payment-card-items {
    width: 100%;
    max-width: none;
}

.shop-card-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.shop-card-title {
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.2;
}

.shop-address-link-form {
    margin: 0;
}

.shop-address-notice {
    margin-bottom: 0;
}

.shop-cart-item {
    grid-template-columns: auto minmax(0, 1fr) auto;
}

.shop-cart-item-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: nowrap;
}

.shop-cart-inline-form {
    display: grid;
    grid-template-columns: 76px auto;
    gap: 10px;
    align-items: center;
}

.shop-cart-item input[type="text"] {
    width: 76px;
}

.shop-checkout-address-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr) minmax(96px, 0.72fr) minmax(180px, 1.45fr);
}

.shop-postal-code-input {
    max-width: 120px;
}

.shop-postal-code-field {
    min-width: 0;
}

.shop-country-field {
    min-width: 0;
}

.wide-country-select .shop-select,
.shop-select.wide-country-select {
    min-width: 220px;
    width: 100%;
}

.shop-checkout-locked-value {
    cursor: default;
    user-select: text;
}

.payment-card-items .payment-price-summary {
    margin-top: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    grid-column: auto;
}

.payment-price-summary-compact {
    gap: 12px;
}

.shop-checkout-actions-ready {
    justify-items: start;
}

.shop-checkout-address-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.payment-paypal-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(216,222,234,.9);
    font-size: 0.86rem;
    font-weight: 500;
    cursor: pointer;
}

.payment-paypal-link:hover,
.payment-paypal-link:focus {
    color: #ffffff;
}

.payment-paypal-link img {
    display: block;
    width: 16px;
    height: 16px;
    object-fit: contain;
}

@media (max-width: 980px) {
    .landing-page .hero-grid,
    .landing-page .problem-feature,
    .landing-page .what-you-get-grid,
    .landing-page .grid-2,
    .landing-page .cta-banner,
    .admin-coupon-grid,
    .payment-coupon-form,
    .payment-grid {
        grid-template-columns: 1fr;
    }

    .landing-page .grid-3 {
        grid-template-columns: 1fr;
    }

    .landing-page .pricing {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .landing-page .grid-4,
    .landing-page .stats {
        grid-template-columns: repeat(2,1fr);
    }

    .landing-page .navlinks {
        display: none;
    }

    .admin-headerbar {
        flex-wrap: wrap;
    }

    .shop-checkout-grid {
        grid-template-columns: 1fr;
    }

    .shop-checkout-address-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .shop-checkout-summary-grid {
        grid-template-columns: 1fr;
    }

    .shop-checkout-option-row {
        grid-template-columns: 1fr;
    }

    .shop-cart-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .shop-cart-item {
        grid-template-columns: 1fr;
    }

    .shop-cart-item-actions {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .shop-cart-inline-form {
        grid-template-columns: 76px auto;
    }

    .admin-overview-grid {
        grid-template-columns: 1fr;
    }

    .admin-overview-chart {
        grid-template-columns: repeat(14, minmax(18px, 1fr));
    }
}

@media (max-width: 640px) {
    .main {
        padding: 24px 12px 18px;
    }

    .card {
        padding: 22px 14px 18px;
        border-radius: 18px;
    }

    .hero-top {
        gap: 12px;
        margin-bottom: 14px;
    }

    .hero-top .brand {
        font-size: 0.82rem;
        letter-spacing: 0.14em;
    }

    .counter {
        width: 100%;
        margin-bottom: 0;
        padding: 10px 12px;
        border-radius: 14px;
        font-size: 0.86rem;
        text-align: center;
    }

    h1 {
        margin-bottom: 10px;
        line-height: 1.04;
    }

    .intro {
        margin-bottom: 18px;
        font-size: 0.98rem;
        line-height: 1.65;
    }

    .sub {
        margin-bottom: 20px;
        font-size: 0.98rem;
        line-height: 1.6;
    }

    .home-placeholder-image {
        margin: 0 0 18px;
        aspect-ratio: auto;
        max-height: none;
        border-radius: 14px;
    }

    .home-cta-form {
        gap: 12px;
    }

    .home-cta-email-shell {
        margin-bottom: 6px;
    }

    .checkline {
        padding-left: 32px;
        font-size: 0.94rem;
    }

    .row-top {
        margin-top: 12px;
    }

    .home-cta-login-note {
        margin-top: 18px;
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .landing-page .list {
        grid-template-columns: 1fr;
    }

    .landing-page .grid-4,
    .landing-page .stats,
    .landing-page .pricing {
        grid-template-columns: 1fr;
    }

    .landing-page .form {
        grid-template-columns: 1fr;
    }

    .landing-page .cta-email-shell {
        width: 100%;
    }

    .landing-page .cta-email-shell .input {
        padding-right: 18px;
    }

    .landing-page .cta-email-shell .btn {
        position: static;
        transform: none;
        width: 100%;
        margin-top: 12px;
    }

    .landing-page .what-you-get-shell {
        padding: 22px;
    }

    .landing-page .hero {
        padding-top: 44px;
    }

    .landing-page .container {
        width: min(calc(100% - 28px), 1180px);
    }

    .landing-page .btn {
        width: 100%;
    }

    .landing-page .pricing .featured {
        transform: none;
    }

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

    .shop-card {
        padding: 16px;
    }

    .shop-card-topline {
        display: block;
    }
}

body.landing-page-light {
    background:
        radial-gradient(circle at 50% 0%, rgba(79, 70, 229, 0.08), transparent 36%),
        linear-gradient(180deg, #f7fafc 0%, #eef4f8 100%) !important;
    color: #1b2b39 !important;
}

.landing-page-light .topbar {
    background: rgba(247, 250, 252, 0.88) !important;
    border-bottom: 1px solid rgba(19, 33, 47, 0.08) !important;
}

.landing-page-light .topbar .brand,
.landing-page-light .navlinks,
.landing-page-light .navlinks a,
.landing-page-light h1,
.landing-page-light .section-title,
.landing-page-light .card h2,
.landing-page-light .card h3,
.landing-page-light .list li strong,
.landing-page-light .featurelist li,
.landing-page-light summary,
.landing-page-light .price {
    color: #162534 !important;
}

.landing-page-light .lead,
.landing-page-light .section-lead,
.landing-page-light .card p,
.landing-page-light .list li span,
.landing-page-light details p,
.landing-page-light .quote,
.landing-page-light .subtle,
.landing-page-light .price small,
.landing-page-light .featurelist li::before {
    color: #405364 !important;
}

.landing-page-light .kicker,
.landing-page-light .eyebrow {
    color: #0f4f77 !important;
    background: rgba(56, 189, 248, 0.16) !important;
    border: 1px solid rgba(14, 116, 144, 0.22) !important;
}

.landing-page-light .brand::before {
    background-image: url('/assets/logo-black.png');
}

.landing-page-light .hero-card,
.landing-page-light .card,
.landing-page-light details,
.landing-page-light .cta-banner,
.landing-page-light .panel {
    background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(248,251,253,.84)) !important;
    border-color: rgba(19, 33, 47, 0.10) !important;
    box-shadow: 0 20px 50px rgba(67, 84, 100, 0.12) !important;
}

.landing-page-light .what-you-get-shell {
    background: linear-gradient(180deg, rgba(240,246,250,.92), rgba(233,241,246,.80)) !important;
    border-color: rgba(19, 33, 47, 0.10) !important;
    box-shadow: 0 20px 50px rgba(67, 84, 100, 0.10) !important;
}

.landing-page-light .list li {
    background: rgba(255,255,255,.72) !important;
    border-color: rgba(19, 33, 47, 0.08) !important;
}

.landing-page-light .pricing .card {
    background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(243,248,251,.88)) !important;
    border-color: rgba(19, 33, 47, 0.12) !important;
}

.landing-page-light .pricing .featured {
    outline: 2px solid rgba(30,136,229,.30) !important;
    box-shadow: 0 22px 48px rgba(30,136,229,.10), 0 18px 50px rgba(67,84,100,.14) !important;
}

.landing-page-light input[type="email"],
.landing-page-light input[type="text"],
.landing-page-light .input,
.landing-page-light select {
    color: #162534 !important;
    background: rgba(255,255,255,.96) !important;
    border-color: rgba(19, 33, 47, 0.12) !important;
    border-radius: 999px !important;
}

.landing-page-light .cta-email-shell .input {
    border-radius: 12px !important;
    padding-top: 16px !important;
    padding-bottom: 16px !important;
    background: #1f262f !important;
    border: 1px solid var(--line) !important;
    color: var(--text) !important;
    box-shadow: none !important;
}

.landing-page-light .cta-email-shell .input:focus {
    border: 1px solid rgba(255,255,255,0.22) !important;
    box-shadow: none !important;
}

.landing-page .cta-email-shell .input::placeholder,
.landing-page-light .cta-email-shell .input::placeholder {
    color: var(--muted) !important;
}

.landing-page-light textarea {
    color: #162534 !important;
    background: rgba(255,255,255,.96) !important;
    border-color: rgba(19, 33, 47, 0.12) !important;
}

.landing-page-light .input::placeholder {
    color: #6c8091 !important;
}

.landing-page-light .checkline,
.landing-page-light .cta-form label,
.landing-page-light .footer,
.landing-page-light .footer-copy,
.landing-page-light .mobile-menu-copy {
    color: #405364 !important;
}

.landing-page-light .btn-secondary,
.landing-page-light .btn-link {
    border-color: transparent !important;
    background: linear-gradient(135deg,#4fb4e8,#74c6ef) !important;
    color: #07131b !important;
    box-shadow: 0 16px 34px rgba(79,180,232,.16) !important;
}

.landing-page-light .btn-primary:hover,
.landing-page-light .btn-primary:focus,
.landing-page-light .btn-primary:active,
.landing-page-light .btn-secondary:hover,
.landing-page-light .btn-secondary:focus,
.landing-page-light .btn-secondary:active,
.landing-page-light .btn-link:hover,
.landing-page-light .btn-link:focus,
.landing-page-light .btn-link:active {
    color: #ffffff !important;
}

.landing-page-light .mobile-menu {
    background: rgba(250, 252, 255, 0.98) !important;
    border-left: 1px solid rgba(19, 33, 47, 0.08) !important;
}

.landing-page-light .mobile-menu .nav-link,
.landing-page-light .mobile-menu-close,
.landing-page-light .footer-link {
    color: #1f5f8d !important;
}


.status-card .sub {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}


.landing-page .cta-extra-options .checkline a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

