* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: #09090b;
    color: #fafafa;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

img {
    max-width: 100%;
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 8px 14px;
    border: 1px solid #27272a;
    border-radius: 6px;
    background: transparent;
    color: #f4f4f5;
    font-size: 13px;
    line-height: 1;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.button:hover {
    border-color: #3f3f46;
    background: #18181b;
    color: #fff;
}

.button.primary {
    border-color: #f4f4f5;
    background: #f4f4f5;
    color: #09090b;
}

.button.primary:hover {
    border-color: #fff;
    background: #fff;
}

.button:disabled {
    cursor: default;
    opacity: 0.55;
}

.logout-form {
    margin: 0;
}

.logout-form .button {
    background: transparent;
    color: #a1a1aa;
}

.logout-form .button:hover {
    color: #fff;
}

.footer-brand p {
    margin: 8px 0 0;
    color: #71717a;
    font-size: 13px;
    line-height: 1.6;
}

.footer-column a:hover {
    color: #fff;
}

.footer-bottom-links a:hover {
    color: #fff;
}

.home-hero {
    padding: 130px 0 115px;
}

.home-hero-content {
    max-width: 760px;
}

.home-status,
.badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 9px;
    border: 1px solid #27272a;
    border-radius: 999px;
    color: #71717a;
    font-size: 11px;
}

.home-hero h1,
.hero h1 {
    max-width: 780px;
    margin: 24px 0 20px;
    color: #fff;
    font-size: clamp(52px, 8vw, 82px);
    font-weight: 600;
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.home-hero p,
.hero p {
    max-width: 560px;
    margin: 0;
    color: #a1a1aa;
    font-size: 17px;
    line-height: 1.65;
}

.home-actions,
.actions {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 30px;
}

.hero {
    padding: 130px 0 115px;
}

.home-section,
.section {
    padding: 90px 0;
    border-top: 1px solid #27272a;
}

.home-section-heading,
.section-header {
    max-width: 620px;
    margin-bottom: 48px;
}

.home-section-heading > span,
.section-header > span {
    color: #52525b;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-section-heading h2,
.section-header h2 {
    margin: 10px 0 0;
    color: #fff;
    font-size: 32px;
    font-weight: 600;
    letter-spacing: -0.04em;
}

.home-section-heading p {
    margin: 12px 0 0;
    color: #71717a;
    font-size: 14px;
    line-height: 1.6;
}

.home-features,
.grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid #27272a;
}

.home-feature,
.card {
    min-height: 150px;
    padding: 26px 28px;
    border-bottom: 1px solid #27272a;
}

.home-feature:nth-child(odd),
.card:nth-child(odd) {
    border-right: 1px solid #27272a;
}

.home-feature {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 18px;
}

.home-feature-number {
    padding-top: 2px;
    color: #3f3f46;
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
    font-size: 11px;
}

.home-feature h3,
.card h3 {
    margin: 0;
    color: #d4d4d8;
    font-size: 14px;
    font-weight: 600;
}

.home-feature p,
.card p {
    max-width: 380px;
    margin: 8px 0 0;
    color: #71717a;
    font-size: 13px;
    line-height: 1.6;
}

.home-bottom {
    padding: 80px 0 20px;
    border-top: 1px solid #27272a;
}

.home-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.home-bottom h2,
.cta h2 {
    margin: 0;
    color: #fff;
    font-size: 25px;
    font-weight: 600;
    letter-spacing: -0.03em;
}

.home-bottom p,
.cta p {
    margin: 8px 0 0;
    color: #71717a;
    font-size: 13px;
}

.cta {
    padding: 48px 0;
    border-top: 1px solid #27272a;
}
.login-page {
    display: flex;
    align-items: center;
    min-height: calc(100vh - 64px);
    padding: 80px 0 100px;
}

.login-container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    align-items: center;
    gap: 100px;
    max-width: 1000px;
}

.login-intro {
    max-width: 480px;
}

.login-label {
    display: inline-block;
    margin-bottom: 18px;
    color: #52525b;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.login-intro h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(42px, 6vw, 62px);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.055em;
}

.login-intro > p {
    max-width: 440px;
    margin: 20px 0 0;
    color: #71717a;
    font-size: 15px;
    line-height: 1.7;
}

.login-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 34px;
}

.login-detail {
    display: flex;
    align-items: center;
    gap: 11px;
}

.login-detail > span {
    width: 5px;
    height: 5px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #52525b;
}

.login-detail p {
    margin: 0;
    color: #71717a;
    font-size: 12px;
}

.login-panel {
    width: 100%;
    padding: 28px;
    border: 1px solid #27272a;
    border-radius: 8px;
    background: #0d0d0f;
}

.login-panel-header {
    margin-bottom: 24px;
}

.login-panel-header h2 {
    margin: 0;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.025em;
}

.login-panel-header p {
    margin: 6px 0 0;
    color: #71717a;
    font-size: 12px;
}

.login-discord {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    height: 42px;
    border: 1px solid #27272a;
    border-radius: 6px;
    background: #18181b;
    color: #d4d4d8;
    font-size: 13px;
    font-weight: 500;
    transition:
        background 0.15s ease,
        border-color 0.15s ease,
        color 0.15s ease;
}

.login-discord:hover {
    border-color: #3f3f46;
    background: #27272a;
    color: #fff;
}

.login-discord svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.login-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 24px 0;
}

.login-divider::before,
.login-divider::after {
    content: "";
    height: 1px;
    flex: 1;
    background: #27272a;
}

.login-divider span {
    flex-shrink: 0;
    color: #52525b;
    font-size: 10px;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.login-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.login-field label {
    color: #a1a1aa;
    font-size: 12px;
    font-weight: 500;
}

.login-field input {
    width: 100%;
    height: 42px;
    padding: 0 12px;
    border: 1px solid #27272a;
    border-radius: 6px;
    outline: none;
    background: #09090b;
    color: #fff;
    font: inherit;
    font-size: 13px;
    transition:
        border-color 0.15s ease,
        background 0.15s ease;
}

.login-field input:hover {
    border-color: #3f3f46;
}

.login-field input:focus {
    border-color: #52525b;
    background: #0d0d0f;
}

.login-field input::placeholder {
    color: #3f3f46;
}

.login-password {
    position: relative;
}

.login-password input {
    padding-right: 60px;
}

.login-password-toggle {
    position: absolute;
    top: 50%;
    right: 11px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #52525b;
    font-size: 10px;
    transform: translateY(-50%);
    cursor: pointer;
}

.login-password-toggle:hover {
    color: #a1a1aa;
}

.login-submit {
    width: 100%;
    height: 42px;
    margin-top: 2px;
}

.login-register {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #27272a;
    font-size: 11px;
}

.login-register span {
    color: #52525b;
}

.login-register a {
    color: #a1a1aa;
}

.login-register a:hover {
    color: #fff;
    text-decoration: underline;
}

@media (max-width: 850px) {
    .login-container {
        grid-template-columns: 1fr;
        gap: 50px;
        max-width: 480px;
    }

    .login-intro {
        max-width: none;
    }

    .login-intro h1 {
        font-size: 44px;
    }

    .login-details {
        display: none;
    }
}

@media (max-width: 520px) {
    .login-page {
        padding: 50px 0 70px;
    }

    .login-container {
        width: min(100% - 28px, 480px);
    }

    .login-intro {
        display: none;
    }

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-group label {
    color: #d4d4d8;
    font-size: 13px;
}

.form-group input,
.new-repository-field input,
.support-form-field input,
.support-form-field select,
.support-form-field textarea {
    width: 100%;
    border: 1px solid #27272a;
    border-radius: 6px;
    outline: none;
    background: #09090b;
    color: #fff;
    font-size: 13px;
    transition: border-color 0.15s ease, background 0.15s ease;
}

.form-group input,
.new-repository-field input,
.support-form-field input,
.support-form-field select {
    height: 42px;
    padding: 0 12px;
}

.form-group input:focus,
.new-repository-field input:focus,
.support-form-field input:focus,
.support-form-field select:focus,
.support-form-field textarea:focus {
    border-color: #52525b;
    background: #0d0d0f;
}

.form-group input::placeholder,
.new-repository-field input::placeholder,
.support-form-field input::placeholder,
.support-form-field textarea::placeholder {
    color: #3f3f46;
}

.auth-submit {
    width: 100%;
    height: 42px;
    margin-top: 4px;
}

.auth-footer {
    margin: 24px 0 0;
    color: #71717a;
    font-size: 12px;
    text-align: center;
}

.auth-footer a {
    color: #fff;
}

.auth-footer a:hover {
    text-decoration: underline;
}

.page-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 32px;
}

.page-header h1 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 30px;
    letter-spacing: -0.03em;
}

.page-header p {
    margin: 0;
    color: #71717a;
}

.dashboard-page,
.repositories-page,
.new-repository-page,
.token-page,
.support-page,
.support-form-page,
.pricing-page,
.legal-page {
    padding: 60px 0 100px;
}

.dashboard-header,
.repositories-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 34px;
    padding-bottom: 24px;
    border-bottom: 1px solid #27272a;
}

.dashboard-header h1,
.repositories-header h1,
.new-repository-header h1,
.token-header h1,
.support-header h1,
.support-form-header h1,
.legal-header h1 {
    margin: 0;
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: -0.04em;
}

.dashboard-header p,
.repositories-header p,
.new-repository-header p,
.token-header p,
.support-header p,
.support-form-header p {
    margin: 8px 0 0;
    color: #71717a;
    font-size: 13px;
    line-height: 1.6;
}

.dashboard-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 48px;
}

.dashboard-main {
    min-width: 0;
}

.dashboard-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 14px;
}

.dashboard-section-header > div {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.dashboard-section-header h2 {
    margin: 0;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}

.dashboard-section-header span,
.dashboard-section-header a {
    color: #52525b;
    font-size: 12px;
}

.dashboard-section-header a:hover {
    color: #fff;
}

.dashboard-repositories,
.repositories-list {
    border-top: 1px solid #27272a;
}

.dashboard-repository,
.repositories-row {
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 84px;
    padding: 16px 4px;
    border-bottom: 1px solid #27272a;
}

.dashboard-repository:hover,
.repositories-row:hover {
    background: #111113;
}

.dashboard-repository-main,
.repositories-main {
    min-width: 0;
    flex: 1;
}

.dashboard-repository-title,
.repositories-title {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dashboard-repository-title strong,
.repositories-title strong {
    overflow: hidden;
    color: #d4d4d8;
    font-size: 14px;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dashboard-repository:hover .dashboard-repository-title strong,
.repositories-row:hover .repositories-title strong {
    color: #fff;
}

.dashboard-repository-title span,
.repositories-visibility {
    flex-shrink: 0;
    padding: 2px 7px;
    border: 1px solid #27272a;
    border-radius: 999px;
    color: #71717a;
    font-size: 10px;
}

.dashboard-repository p,
.repositories-main p {
    overflow: hidden;
    margin: 6px 0 0;
    color: #71717a;
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dashboard-repository-meta,
.repositories-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 7px;
    color: #52525b;
    font-size: 11px;
}

.dashboard-repository-arrow,
.repositories-arrow {
    flex-shrink: 0;
    color: #3f3f46;
    font-size: 14px;
    transition: color 0.15s ease, transform 0.15s ease;
}

.dashboard-repository:hover .dashboard-repository-arrow,
.repositories-row:hover .repositories-arrow {
    color: #a1a1aa;
    transform: translateX(2px);
}

.dashboard-empty,
.repositories-empty,
.empty-state {
    padding: 60px 0;
    border-top: 1px solid #27272a;
    border-bottom: 1px solid #27272a;
}

.dashboard-empty h3,
.repositories-empty h2,
.empty-state h2 {
    margin: 0 0 7px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}

.dashboard-empty p,
.repositories-empty p,
.empty-state p {
    max-width: 420px;
    margin: 0 0 18px;
    color: #71717a;
    font-size: 13px;
    line-height: 1.6;
}

.dashboard-sidebar {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.dashboard-side-section {
    padding-bottom: 28px;
    border-bottom: 1px solid #27272a;
}

.dashboard-side-section:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.dashboard-side-section h2 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

.dashboard-side-section p {
    margin: 0 0 14px;
    color: #71717a;
    font-size: 12px;
    line-height: 1.6;
}

.dashboard-account {
    display: flex;
    align-items: center;
    gap: 11px;
}

.dashboard-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    overflow: hidden;
    border: 1px solid #27272a;
    border-radius: 50%;
    background: #18181b;
    color: #a1a1aa;
    font-size: 12px;
    font-weight: 600;
}

.dashboard-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dashboard-account-info {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 3px;
}

.dashboard-account-info strong,
.dashboard-account-info span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dashboard-account-info strong {
    color: #d4d4d8;
    font-size: 12px;
}

.dashboard-account-info span {
    color: #52525b;
    font-size: 11px;
}

.dashboard-links {
    display: flex;
    flex-direction: column;
}

.dashboard-links a {
    padding: 6px 0;
    color: #71717a;
    font-size: 12px;
}

.dashboard-links a:hover {
    color: #fff;
}

.dashboard-side-section .button {
    width: 100%;
}

.repositories-toolbar {
    display: flex;
    align-items: center;
    min-height: 42px;
    margin-bottom: 10px;
}

.repositories-count {
    color: #52525b;
    font-size: 12px;
}

.new-repository-container,
.token-container,
.support-form-container {
    max-width: 720px;
}

.new-repository-back,
.token-back,
.support-form-back {
    display: inline-block;
    margin-bottom: 28px;
    color: #71717a;
    font-size: 13px;
}

.new-repository-back:hover,
.token-back:hover,
.support-form-back:hover {
    color: #fff;
}

.new-repository-header,
.token-header,
.support-form-header,
.legal-header {
    padding-bottom: 28px;
    border-bottom: 1px solid #27272a;
}

.new-repository-form,
.support-form {
    padding-top: 30px;
}

.new-repository-field,
.support-form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.new-repository-field label,
.support-form-field label {
    color: #d4d4d8;
    font-size: 13px;
    font-weight: 500;
}

.new-repository-field label small {
    margin-left: 5px;
    color: #52525b;
    font-size: 11px;
    font-weight: 400;
}

.new-repository-field > span,
.support-form-note {
    color: #52525b;
    font-size: 11px;
    line-height: 1.6;
}

.new-repository-divider {
    height: 1px;
    margin: 32px 0;
    background: #27272a;
}

.new-repository-visibility {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.visibility-option {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px 16px;
    border: 1px solid #27272a;
    border-radius: 7px;
    cursor: pointer;
}

.visibility-option:hover,
.visibility-option:has(input:checked) {
    border-color: #3f3f46;
    background: #111113;
}

.visibility-option input {
    width: 15px;
    height: 15px;
    margin: 2px 0 0;
    accent-color: #fff;
}

.visibility-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.visibility-content strong {
    color: #d4d4d8;
    font-size: 13px;
}

.visibility-content small {
    color: #71717a;
    font-size: 12px;
    line-height: 1.5;
}

.new-repository-actions,
.support-form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid #27272a;
}

.token-warning {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 28px;
    padding: 14px 16px;
    border: 1px solid #3f3f46;
    border-radius: 6px;
    background: #111113;
}

.token-warning strong {
    color: #d4d4d8;
    font-size: 13px;
}

.token-warning span {
    color: #71717a;
    font-size: 12px;
}

.token-value {
    display: flex;
    align-items: stretch;
    gap: 8px;
    margin-top: 16px;
}

.token-value code {
    display: flex;
    align-items: center;
    min-width: 0;
    flex: 1;
    overflow-x: auto;
    padding: 0 14px;
    border: 1px solid #27272a;
    border-radius: 6px;
    background: #0d0d0f;
    color: #d4d4d8;
    font-family: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 12px;
    white-space: nowrap;
}

.token-help {
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid #27272a;
}

.token-help h2 {
    margin: 0;
    color: #fff;
    font-size: 15px;
}

.token-help > p {
    margin: 7px 0 18px;
    color: #71717a;
    font-size: 13px;
}

.token-example {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 16px;
    padding: 10px 0;
    border-bottom: 1px solid #18181b;
}

.token-example span {
    color: #71717a;
    font-size: 12px;
}

.token-example code {
    color: #d4d4d8;
    font-family: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 12px;
}

.token-actions {
    margin-top: 30px;
}

.support-container {
    max-width: 820px;
}

.support-header {
    padding-bottom: 34px;
    border-bottom: 1px solid #27272a;
}

.support-header > span,
.legal-label,
.pricing-header > span {
    display: block;
    margin-bottom: 9px;
    color: #71717a;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.support-section {
    padding: 36px 0;
    border-bottom: 1px solid #27272a;
}

.support-section:last-child {
    border-bottom: 0;
}

.support-section-title {
    margin-bottom: 18px;
}

.support-section-title h2 {
    margin: 0;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}

.support-section-title p {
    margin: 6px 0 0;
    color: #71717a;
    font-size: 12px;
}

.support-options,
.support-links {
    border-top: 1px solid #27272a;
}

.support-option,
.support-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-bottom: 1px solid #27272a;
}

.support-option {
    min-height: 78px;
    padding: 16px 4px;
}

.support-links a {
    min-height: 46px;
    padding: 0 4px;
    color: #a1a1aa;
    font-size: 13px;
}

.support-option:hover,
.support-links a:hover {
    background: #111113;
}

.support-option strong {
    display: block;
    color: #d4d4d8;
    font-size: 13px;
}

.support-option:hover strong,
.support-links a:hover {
    color: #fff;
}

.support-option div span {
    display: block;
    max-width: 560px;
    margin-top: 5px;
    color: #71717a;
    font-size: 12px;
    line-height: 1.5;
}

.support-arrow,
.support-links a span:last-child {
    color: #3f3f46;
}

.support-option:hover .support-arrow {
    color: #a1a1aa;
}

.support-before p {
    max-width: 620px;
    margin: 0;
    color: #71717a;
    font-size: 13px;
    line-height: 1.7;
}

.support-form-field textarea {
    min-height: 160px;
    padding: 12px;
    line-height: 1.6;
    resize: vertical;
}

.support-form-field select {
    color-scheme: dark;
}

.pricing-container {
    max-width: 920px;
}

.pricing-header {
    max-width: 620px;
    margin-bottom: 48px;
}

.pricing-header h1 {
    margin: 0;
    color: #fff;
    font-size: 38px;
    font-weight: 600;
    letter-spacing: -0.05em;
}

.pricing-header p {
    margin: 12px 0 0;
    color: #71717a;
    font-size: 14px;
    line-height: 1.6;
}

.pricing-plans {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid #27272a;
    border-left: 1px solid #27272a;
}

.pricing-plan {
    display: flex;
    min-width: 0;
    flex-direction: column;
    border-right: 1px solid #27272a;
    border-bottom: 1px solid #27272a;
}

.pricing-plan-premium {
    background: #0d0d0f;
}

.pricing-plan-header {
    min-height: 190px;
    padding: 28px;
    border-bottom: 1px solid #27272a;
}

.pricing-plan-name {
    color: #d4d4d8;
    font-size: 13px;
    font-weight: 600;
}

.pricing-plan-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.pricing-popular {
    padding: 3px 7px;
    border: 1px solid #3f3f46;
    border-radius: 999px;
    color: #a1a1aa;
    font-size: 10px;
}

.pricing-plan-header h2 {
    margin: 18px 0 0;
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: -0.04em;
}

.pricing-plan-header p {
    max-width: 330px;
    margin: 10px 0 0;
    color: #71717a;
    font-size: 12px;
    line-height: 1.6;
}

.pricing-features {
    flex: 1;
    padding: 20px 28px;
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    min-height: 36px;
    padding: 8px 0;
}

.pricing-feature > span {
    width: 14px;
    flex-shrink: 0;
    color: #a1a1aa;
    font-size: 11px;
}

.pricing-feature p {
    margin: 0;
    color: #d4d4d8;
    font-size: 12px;
    line-height: 1.5;
}

.pricing-feature-muted > span,
.pricing-feature-muted p {
    color: #52525b;
}

.pricing-plan-action {
    padding: 22px 28px 28px;
    border-top: 1px solid #18181b;
}

.pricing-plan-action .button {
    width: 100%;
}

.pricing-note {
    margin-top: 42px;
    padding-top: 28px;
    border-top: 1px solid #27272a;
}

.pricing-note h2 {
    margin: 0;
    color: #d4d4d8;
    font-size: 14px;
}

.pricing-note p {
    max-width: 560px;
    margin: 7px 0 0;
    color: #71717a;
    font-size: 12px;
    line-height: 1.6;
}

.legal-container {
    max-width: 900px;
}

.legal-header p {
    margin: 10px 0 0;
    color: #a1a1aa;
    font-size: 14px;
}

.legal-updated {
    display: block;
    margin-top: 14px;
    color: #52525b;
    font-size: 12px;
}

.legal-content {
    padding-top: 36px;
}

.legal-content section {
    margin-bottom: 38px;
}

.legal-content h2 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
}

.legal-content p,
.legal-content ul {
    color: #a1a1aa;
    font-size: 14px;
    line-height: 1.7;
}

.legal-content p {
    margin: 0 0 14px;
}

.legal-content ul {
    margin: 12px 0 0;
    padding-left: 24px;
}

.legal-content li {
    margin: 8px 0;
}

.repository-page {
    padding: 42px 0 90px;
}

.repository-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    padding-bottom: 22px;
}

.repository-title {
    min-width: 0;
}

.repository-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    color: #52525b;
    font-size: 20px;
    line-height: 1.35;
}

.repository-breadcrumb a {
    color: #a1a1aa;
}

.repository-breadcrumb a:hover {
    color: #fff;
}

.repository-current-path {
    color: #fff;
    font-weight: 600;
}

.repository-header p {
    max-width: 720px;
    margin: 10px 0 0;
    color: #71717a;
    font-size: 13px;
    line-height: 1.55;
}

.repository-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.repository-badge {
    display: inline-flex;
    align-items: center;
    height: 30px;
    padding: 0 10px;
    border: 1px solid #27272a;
    border-radius: 999px;
    color: #71717a;
    font-size: 11px;
}

.repository-tabs {
    display: flex;
    gap: 24px;
    margin-bottom: 20px;
    border-bottom: 1px solid #27272a;
}

.repository-tabs a {
    padding: 11px 2px;
    border-bottom: 2px solid transparent;
    color: #71717a;
    font-size: 13px;
}

.repository-tabs a:hover {
    color: #fff;
}

.repository-tabs a.active {
    border-bottom-color: #f4f4f5;
    color: #fff;
}

.repository-latest-commit {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 58px;
    padding: 10px 14px;
    border: 1px solid #27272a;
    border-bottom: 0;
    border-radius: 8px 8px 0 0;
    background: #0d0d0f;
}

.commit-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    border: 1px solid #27272a;
    border-radius: 50%;
    background: #18181b;
    color: #a1a1aa;
    font-size: 11px;
    font-weight: 600;
}

.commit-info {
    min-width: 0;
    flex: 1;
}

.commit-info > div:first-child {
    display: flex;
    align-items: center;
    gap: 7px;
}

.commit-info strong {
    color: #d4d4d8;
    font-size: 12px;
}

.commit-info span {
    color: #52525b;
    font-size: 11px;
}

.commit-message {
    margin-top: 3px;
    overflow: hidden;
    color: #a1a1aa;
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.commit-hash {
    flex-shrink: 0;
    color: #71717a;
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
    font-size: 11px;
}

.repository-toolbar {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 50px;
    padding: 8px 12px;
    border: 1px solid #27272a;
    border-bottom: 0;
    background: #0d0d0f;
}

.branch-selector {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 10px;
    border: 1px solid #27272a;
    border-radius: 6px;
    color: #d4d4d8;
    font-size: 11px;
}

.branch-selector span {
    color: #71717a;
}

.repository-path {
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
    overflow: hidden;
    color: #52525b;
    font-size: 12px;
}

.repository-path a {
    overflow: hidden;
    color: #a1a1aa;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.repository-path a:hover {
    color: #fff;
}

.repository-files {
    overflow: hidden;
    border: 1px solid #27272a;
    border-radius: 0 0 8px 8px;
    background: #09090b;
}

.repository-file {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 44px;
    padding: 0 14px;
    border-bottom: 1px solid #18181b;
}

.repository-file:last-child {
    border-bottom: 0;
}

.repository-file:hover {
    background: #111113;
}

.repository-file .file-icon {
    width: 18px;
    flex-shrink: 0;
    color: #71717a;
    font-size: 13px;
    text-align: center;
}

.repository-file .file-icon.folder {
    color: #a1a1aa;
}

.file-name {
    min-width: 0;
    flex: 1;
    overflow: hidden;
    color: #d4d4d8;
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.repository-file:hover .file-name {
    color: #fff;
}

.file-type {
    color: #52525b;
    font-size: 10px;
    white-space: nowrap;
}

.repository-parent .file-name {
    color: #71717a;
}

.repository-no-files {
    padding: 44px 20px;
    color: #52525b;
    font-size: 12px;
    text-align: center;
}

.repository-file-view {
    overflow: hidden;
    border: 1px solid #27272a;
    border-radius: 8px;
    background: #09090b;
}

.file-view-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 48px;
    padding: 10px 14px;
    border-bottom: 1px solid #27272a;
    background: #0d0d0f;
}

.file-view-path {
    display: flex;
    align-items: center;
    gap: 7px;
    min-width: 0;
    overflow: hidden;
    color: #52525b;
    font-size: 12px;
}

.file-view-path a {
    color: #a1a1aa;
}

.file-view-path a:hover {
    color: #fff;
}

.file-view-path strong {
    overflow: hidden;
    color: #d4d4d8;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.file-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    color: #52525b;
    font-size: 10px;
}

.file-language {
    padding: 3px 7px;
    border: 1px solid #27272a;
    border-radius: 5px;
    color: #a1a1aa;
}

.file-content {
    width: 100%;
    overflow: auto;
    background: #09090b;
}

.file-content > pre {
    margin: 0;
    padding: 16px 18px;
    overflow: auto;
    color: #d4d4d8;
    font-family: "JetBrains Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
    font-size: 12px;
    line-height: 1.45;
    tab-size: 4;
    white-space: pre;
}

.file-content > pre code {
    font: inherit;
    color: inherit;
    white-space: inherit;
}

.code-table {
    width: max-content;
    min-width: 100%;
    border-collapse: collapse;
    table-layout: auto;
}

.code-table tbody,
.code-table tr {
    width: 100%;
}

.code-table tr {
    height: 18px;
}

.code-table tr:hover {
    background: #0d0d0f;
}

.line-number {
    width: 1%;
    min-width: 52px;
    padding: 0 12px 0 10px;
    border-right: 1px solid #18181b;
    color: #3f3f46;
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
    font-size: 11px;
    line-height: 18px;
    text-align: right;
    user-select: none;
    vertical-align: top;
    white-space: nowrap;
}

.code-table tr:hover .line-number {
    color: #71717a;
}

.line-code {
    width: 100%;
    padding: 0 16px;
    vertical-align: top;
}

.line-code code {
    display: block;
    min-height: 18px;
    background: transparent !important;
    color: #d4d4d8;
    font-family: "JetBrains Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
    font-size: 12px;
    line-height: 18px;
    tab-size: 4;
    white-space: pre;
}

.hljs {
    background: transparent !important;
    color: #d4d4d8;
}

.hljs-comment,
.hljs-quote {
    color: #6b7280;
}

.hljs-keyword,
.hljs-selector-tag,
.hljs-literal,
.hljs-type,
.hljs-doctag {
    color: #c084fc;
}

.hljs-string,
.hljs-regexp,
.hljs-template-string {
    color: #86efac;
}

.hljs-number {
    color: #fca5a5;
}

.hljs-title,
.hljs-section,
.hljs-name,
.hljs-title.class_,
.hljs-title.function_ {
    color: #93c5fd;
}

.hljs-variable,
.hljs-template-variable,
.hljs-attr,
.hljs-attribute,
.hljs-property {
    color: #fcd34d;
}

.hljs-built_in,
.hljs-symbol,
.hljs-bullet,
.hljs-selector-class,
.hljs-selector-id {
    color: #67e8f9;
}

.hljs-meta,
.hljs-punctuation,
.hljs-operator {
    color: #a1a1aa;
}

.hljs-addition {
    color: #86efac;
}

.hljs-deletion {
    color: #fca5a5;
}

.repository-readme {
    margin-top: 24px;
    overflow: hidden;
    border: 1px solid #27272a;
    border-radius: 8px;
    background: #09090b;
}

.readme-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
    padding: 10px 16px;
    border-bottom: 1px solid #27272a;
    background: #0d0d0f;
    color: #d4d4d8;
    font-size: 12px;
    font-weight: 600;
}

.readme-language {
    padding: 3px 7px;
    border: 1px solid #27272a;
    border-radius: 5px;
    color: #71717a;
    font-size: 10px;
    font-weight: 400;
}

.readme-content {
    overflow-x: auto;
    padding: 30px 34px;
    color: #d4d4d8;
    font-size: 14px;
    line-height: 1.7;
    overflow-wrap: break-word;
}

.readme-content > :first-child {
    margin-top: 0 !important;
}

.readme-content > :last-child {
    margin-bottom: 0 !important;
}

.readme-content h1,
.readme-content h2,
.readme-content h3,
.readme-content h4,
.readme-content h5,
.readme-content h6 {
    margin: 28px 0 14px;
    color: #f4f4f5;
    font-weight: 600;
    line-height: 1.3;
}

.readme-content h1 {
    padding-bottom: 10px;
    border-bottom: 1px solid #27272a;
    font-size: 28px;
}

.readme-content h2 {
    padding-bottom: 8px;
    border-bottom: 1px solid #27272a;
    font-size: 22px;
}

.readme-content h3 {
    font-size: 18px;
}

.readme-content h4 {
    font-size: 16px;
}

.readme-content h5 {
    font-size: 14px;
}

.readme-content h6 {
    color: #a1a1aa;
    font-size: 13px;
}

.readme-content p {
    margin: 0 0 16px;
}

.readme-content a {
    color: #93c5fd;
    text-decoration: underline;
    text-decoration-color: transparent;
}

.readme-content a:hover {
    text-decoration-color: currentColor;
}

.readme-content strong {
    color: #f4f4f5;
    font-weight: 600;
}

.readme-content em {
    color: #d4d4d8;
}

.readme-content ul,
.readme-content ol {
    margin: 0 0 16px;
    padding-left: 28px;
}

.readme-content li {
    margin: 4px 0;
}

.readme-content li > p {
    margin-bottom: 6px;
}

.readme-content blockquote {
    margin: 0 0 16px;
    padding: 2px 16px;
    border-left: 3px solid #3f3f46;
    color: #a1a1aa;
}

.readme-content blockquote > :last-child {
    margin-bottom: 0;
}

.readme-content hr {
    height: 1px;
    margin: 24px 0;
    border: 0;
    background: #27272a;
}

.readme-content code {
    font-family: "JetBrains Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

.readme-content code:not(pre code) {
    padding: 2px 5px;
    border: 1px solid #27272a;
    border-radius: 5px;
    background: #18181b;
    color: #e4e4e7;
    font-size: 12px;
}

.readme-content pre {
    margin: 0 0 18px;
    overflow-x: auto;
    border: 1px solid #27272a;
    border-radius: 7px;
    background: #0d0d0f;
}

.readme-content pre code {
    display: block;
    min-width: max-content;
    padding: 16px 18px;
    background: transparent !important;
    color: #d4d4d8;
    font-size: 12px;
    line-height: 1.55;
    tab-size: 4;
    white-space: pre;
}

.readme-content table {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0 0 18px;
    overflow-x: auto;
    border-collapse: collapse;
}

.readme-content th,
.readme-content td {
    padding: 8px 12px;
    border: 1px solid #27272a;
    text-align: left;
    white-space: nowrap;
}

.readme-content th {
    background: #18181b;
    color: #f4f4f5;
    font-weight: 600;
}

.readme-content td {
    color: #a1a1aa;
}

.readme-content img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 16px 0;
    border-radius: 6px;
}

.readme-content input[type="checkbox"] {
    margin-right: 7px;
    vertical-align: middle;
}

.readme-content del {
    color: #71717a;
}

.clone-panel {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 24px;
    padding: 16px;
    border: 1px solid #27272a;
    border-radius: 8px;
    background: #0d0d0f;
}

.clone-panel > div:first-child {
    min-width: 180px;
}

.clone-panel strong,
.clone-panel span {
    display: block;
}

.clone-panel strong {
    color: #d4d4d8;
    font-size: 12px;
}

.clone-panel span {
    margin-top: 4px;
    color: #52525b;
    font-size: 11px;
}

.clone-url {
    flex: 1;
    min-width: 0;
    padding: 9px 12px;
    overflow: hidden;
    border: 1px solid #27272a;
    border-radius: 6px;
    background: #09090b;
}

.clone-url code {
    display: block;
    overflow: hidden;
    color: #a1a1aa;
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.commits-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin: 24px 0 16px;
}

.commits-header h2 {
    margin: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.commits-header p {
    margin: 5px 0 0;
    color: #71717a;
    font-size: 12px;
}

.commit-list {
    overflow: hidden;
    border: 1px solid #27272a;
    border-radius: 8px;
    background: #09090b;
}

.commit-row {
    display: flex;
    align-items: center;
    gap: 13px;
    min-height: 66px;
    padding: 11px 14px;
    border-bottom: 1px solid #18181b;
}

.commit-row:last-child {
    border-bottom: 0;
}

.commit-row:hover {
    background: #111113;
}

.commit-main {
    min-width: 0;
    flex: 1;
}

.commit-message-link {
    display: block;
    overflow: hidden;
    color: #d4d4d8;
    font-size: 13px;
    font-weight: 500;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.commit-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 5px;
    color: #71717a;
    font-size: 11px;
}

.commit-meta strong {
    color: #d4d4d8;
    font-weight: 500;
}

.commit-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 180px;
    color: #71717a;
    font-size: 12px;
    text-align: center;
}

.commit-empty strong {
    color: #d4d4d8;
    font-size: 14px;
}

.not-found-page {
    display: flex;
    align-items: center;
    min-height: calc(100vh - 145px);
    padding: 80px 0;
}

.not-found-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    align-items: center;
    gap: 48px;
}

.not-found-content {
    max-width: 620px;
}

.not-found-code {
    display: block;
    margin-bottom: 18px;
    color: #52525b;
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
    font-size: 12px;
    letter-spacing: 0.08em;
}

.not-found-content h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(44px, 7vw, 68px);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.05em;
}

.not-found-content p {
    max-width: 520px;
    margin: 20px 0 0;
    color: #71717a;
    font-size: 15px;
    line-height: 1.7;
}

.not-found-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
}

.not-found-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.not-found-mascot {
    display: block;
    width: 100%;
    max-width: 420px;
    height: auto;
    pointer-events: none;
    user-select: none;
}

@media (max-width: 900px) {
    .not-found-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .not-found-visual {
        order: -1;
        justify-content: flex-start;
    }

    .not-found-mascot {
        max-width: 320px;
    }
}

@media (max-width: 800px) {
    .dashboard-header,
    .repositories-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .dashboard-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

@media (max-width: 700px) {
    .nav a:not(.button) {
        display: none;
    }

    

    

    

    .home-hero,
    .hero {
        padding: 90px 0 80px;
    }

    .home-hero h1,
    .hero h1 {
        font-size: 50px;
    }

    .home-features,
    .grid {
        grid-template-columns: 1fr;
    }

    .home-feature,
    .card,
    .home-feature:nth-child(odd),
    .card:nth-child(odd) {
        border-right: 0;
    }

    .home-bottom-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .repository-header {
        flex-direction: column;
    }

    .repository-actions {
        width: 100%;
    }

    .repository-toolbar,
    .clone-panel {
        align-items: flex-start;
        flex-direction: column;
    }

    .repository-path,
    .clone-url {
        width: 100%;
    }

    .file-view-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .readme-content {
        padding: 22px 18px;
    }

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

@media (max-width: 640px) {
    .container {
        width: min(100% - 28px, 1100px);
    }

    .dashboard-page,
    .repositories-page,
    .new-repository-page,
    .token-page,
    .support-page,
    .support-form-page,
    .pricing-page,
    .legal-page,
    .repository-page {
        padding-top: 40px;
        padding-bottom: 70px;
    }

    .dashboard-sidebar {
        display: flex;
    }

    .dashboard-repository-meta span:last-child,
    .repositories-meta span:last-child,
    .dashboard-repository-arrow,
    .repositories-arrow {
        display: none;
    }

    .new-repository-actions,
    .support-form-actions,
    .not-found-actions {
        align-items: stretch;
        flex-direction: column-reverse;
    }

    .new-repository-actions .button,
    .support-form-actions .button,
    .not-found-actions .button {
        width: 100%;
    }

    .token-value {
        flex-direction: column;
    }

    .token-value code {
        min-height: 42px;
    }

    .token-copy {
        width: 100%;
    }

    .token-example {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .commits-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .commit-row .commit-hash {
        display: none;
    }

    .line-number {
        min-width: 44px;
        padding-right: 9px;
        padding-left: 7px;
    }

    .line-code {
        padding-right: 12px;
        padding-left: 12px;
    }

    .not-found-page {
        padding: 55px 0;
    }

    .not-found-mascot {
        max-width: 260px;
    }
}

@media (max-width: 500px) {
    .home-hero h1,
    .hero h1 {
        font-size: 42px;
    }

    .home-hero p,
    .hero p {
        font-size: 15px;
    }

    .home-actions,
    .actions {
        align-items: stretch;
        flex-direction: column;
    }

    .home-actions .button,
    .actions .button {
        width: 100%;
    }

    .repository-breadcrumb {
        font-size: 17px;
    }

    .repository-visibility,
    .repositories-visibility {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}
.profile-page {
    padding: 60px 0 100px;
}

.profile-layout {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    align-items: start;
    gap: 56px;
}

.profile-sidebar {
    min-width: 0;
}

.profile-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 160px;
    overflow: hidden;
    border: 1px solid #27272a;
    border-radius: 50%;
    background: #111113;
    color: #a1a1aa;
    font-size: 42px;
    font-weight: 600;
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-identity {
    margin-top: 20px;
}

.profile-identity h1 {
    margin: 0;
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.03em;
}

.profile-identity span {
    display: block;
    margin-top: 4px;
    color: #71717a;
    font-size: 13px;
}

.profile-joined {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #27272a;
    color: #52525b;
    font-size: 12px;
}

.profile-edit-button {
    width: 100%;
    margin-top: 16px;
}

.profile-content {
    min-width: 0;
}

.profile-content-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 44px;
    margin-bottom: 12px;
}

.profile-content-header > div {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.profile-content-header h2 {
    margin: 0;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.profile-content-header span {
    color: #52525b;
    font-size: 12px;
}

.profile-repositories {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid #27272a;
    border-left: 1px solid #27272a;
}

.profile-repository {
    min-width: 0;
    min-height: 135px;
    padding: 20px;
    border-right: 1px solid #27272a;
    border-bottom: 1px solid #27272a;
    transition: background 0.15s ease;
}

.profile-repository:hover {
    background: #111113;
}

.profile-repository-title {
    display: flex;
    align-items: center;
    gap: 8px;
}

.profile-repository-title strong {
    overflow: hidden;
    color: #d4d4d8;
    font-size: 14px;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.15s ease;
}

.profile-repository:hover .profile-repository-title strong {
    color: #fff;
}

.profile-repository-title span {
    flex-shrink: 0;
    padding: 2px 7px;
    border: 1px solid #27272a;
    border-radius: 999px;
    color: #71717a;
    font-size: 10px;
}

.profile-repository p {
    display: -webkit-box;
    margin: 9px 0 0;
    overflow: hidden;
    color: #71717a;
    font-size: 12px;
    line-height: 1.6;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.profile-repository-meta {
    margin-top: 14px;
    color: #52525b;
    font-size: 11px;
}

.profile-empty {
    padding: 60px 0;
    border-top: 1px solid #27272a;
    border-bottom: 1px solid #27272a;
}

.profile-empty h3 {
    margin: 0;
    color: #d4d4d8;
    font-size: 14px;
    font-weight: 600;
}

.profile-empty p {
    margin: 7px 0 0;
    color: #71717a;
    font-size: 12px;
}

@media (max-width: 800px) {
    .profile-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .profile-sidebar {
        display: grid;
        grid-template-columns: 90px 1fr;
        align-items: center;
        column-gap: 18px;
    }

    .profile-avatar {
        grid-row: span 3;
        width: 90px;
        height: 90px;
        font-size: 28px;
    }

    .profile-identity {
        margin-top: 0;
    }

    .profile-joined {
        margin-top: 8px;
        padding-top: 0;
        border-top: 0;
    }

    .profile-edit-button {
        width: fit-content;
        margin-top: 8px;
    }
}

@media (max-width: 600px) {
    .profile-page {
        padding: 40px 0 70px;
    }

    .profile-repositories {
        grid-template-columns: 1fr;
    }
}

#background-canvas {
    position: fixed;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background:
        linear-gradient(
            to bottom,
            #09090b 0%,
            #0a0a0c 50%,
            #09090b 100%
        );
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        linear-gradient(
            to bottom,
            rgba(9, 9, 11, 0.03),
            rgba(9, 9, 11, 0.2)
        );
    content: "";
}

body {
    background: #09090b;
}

.settings-page {
    padding: 60px 0 100px;
}

.settings-header {
    margin-bottom: 36px;
    padding-bottom: 26px;
    border-bottom: 1px solid #27272a;
}

.settings-header h1 {
    margin: 0;
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: -0.04em;
}

.settings-header p {
    margin: 8px 0 0;
    color: #71717a;
    font-size: 14px;
}

.settings-layout {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    align-items: start;
    gap: 52px;
}

.settings-nav {
    position: sticky;
    top: 24px;
    display: flex;
    flex-direction: column;
}

.settings-nav a {
    padding: 8px 10px;
    border-radius: 5px;
    color: #71717a;
    font-size: 13px;
}

.settings-nav a:hover {
    background: #111113;
    color: #fff;
}

.settings-content {
    min-width: 0;
    max-width: 760px;
}

.settings-message,
.settings-error {
    margin-bottom: 24px;
    padding: 11px 14px;
    border: 1px solid #27272a;
    border-radius: 6px;
    font-size: 12px;
}

.settings-message {
    color: #d4d4d8;
    background: #111113;
}

.settings-error {
    border-color: #3f3f46;
    color: #fca5a5;
    background: #111113;
}

.settings-section {
    padding: 0 0 42px;
    margin-bottom: 42px;
    border-bottom: 1px solid #27272a;
}

.settings-section:last-child {
    margin-bottom: 0;
    border-bottom: 0;
}

.settings-section-header {
    margin-bottom: 24px;
}

.settings-section-header h2 {
    margin: 0;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
}

.settings-section-header p {
    margin: 7px 0 0;
    color: #71717a;
    font-size: 13px;
    line-height: 1.6;
}

.settings-section-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}

.settings-profile {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 30px;
}

.settings-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 92px;
    height: 92px;
    flex-shrink: 0;
    overflow: hidden;
    border: 1px solid #27272a;
    border-radius: 50%;
    background: #111113;
    color: #a1a1aa;
    font-size: 26px;
    font-weight: 600;
}

.settings-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.settings-avatar-form {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.settings-avatar-form label {
    color: #d4d4d8;
    font-size: 13px;
    font-weight: 500;
}

.settings-avatar-form p {
    margin: 0;
    color: #52525b;
    font-size: 11px;
}

.settings-avatar-form input[type="file"] {
    max-width: 100%;
    color: #71717a;
    font-size: 12px;
}

.settings-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.settings-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.settings-field label {
    color: #d4d4d8;
    font-size: 13px;
    font-weight: 500;
}

.settings-field input,
.settings-token-create input {
    width: 100%;
    height: 42px;
    padding: 0 12px;
    border: 1px solid #27272a;
    border-radius: 6px;
    outline: none;
    background: #09090b;
    color: #fff;
    font: inherit;
    font-size: 13px;
}

.settings-field input:hover,
.settings-token-create input:hover {
    border-color: #3f3f46;
}

.settings-field input:focus,
.settings-token-create input:focus {
    border-color: #52525b;
}

.settings-field span {
    color: #52525b;
    font-size: 11px;
}

.settings-actions {
    display: flex;
    justify-content: flex-end;
    padding-top: 4px;
}

.settings-session-list,
.settings-token-list {
    border-top: 1px solid #27272a;
}

.settings-session,
.settings-token {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 76px;
    padding: 14px 4px;
    border-bottom: 1px solid #27272a;
}

.settings-session-info {
    min-width: 0;
}

.settings-session-title {
    display: flex;
    align-items: center;
    gap: 8px;
}

.settings-session-title strong,
.settings-token strong {
    color: #d4d4d8;
    font-size: 13px;
    font-weight: 600;
}

.settings-session-title span {
    padding: 2px 6px;
    border: 1px solid #27272a;
    border-radius: 999px;
    color: #a1a1aa;
    font-size: 9px;
}

.settings-session-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 6px;
    color: #52525b;
    font-size: 11px;
}

.settings-session-meta code {
    color: #52525b;
    font-size: 10px;
}

.settings-token-create {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    margin-bottom: 22px;
}

.settings-token > div {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 4px;
}

.settings-token span {
    color: #52525b;
    font-size: 11px;
}

.settings-danger-button {
    color: #fca5a5;
}

.settings-danger-button:hover {
    border-color: #52525b;
    color: #fecaca;
}

.settings-empty {
    padding: 30px 4px;
    border-bottom: 1px solid #27272a;
    color: #52525b;
    font-size: 12px;
}

.settings-account-row {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 20px;
    padding: 13px 0;
    border-bottom: 1px solid #18181b;
}

.settings-account-row span {
    color: #71717a;
    font-size: 12px;
}

.settings-account-row strong,
.settings-account-row code {
    overflow: hidden;
    color: #d4d4d8;
    font-size: 12px;
    font-weight: 500;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 800px) {
    .settings-layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .settings-nav {
        position: static;
        flex-direction: row;
        gap: 4px;
        overflow-x: auto;
        padding-bottom: 8px;
    }

    .settings-nav a {
        white-space: nowrap;
    }
}

@media (max-width: 600px) {
    .settings-page {
        padding: 40px 0 70px;
    }

    .settings-profile {
        align-items: flex-start;
    }

    .settings-section-row {
        flex-direction: column;
    }

    .settings-session,
    .settings-token {
        align-items: flex-start;
        flex-direction: column;
    }

    .settings-token-create {
        grid-template-columns: 1fr;
    }

    .settings-token-create .button {
        width: 100%;
    }

    .settings-account-row {
        grid-template-columns: 1fr;
        gap: 5px;
    }
}

.user-dropdown summary {
    list-style: none;
}

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

.user-menu:hover,
.user-dropdown[open] 

.user-menu:hover 

.user-dropdown[open] 

.user-dropdown-header span {
    color: #52525b;
    font-size: 10px;
}

.user-dropdown-header strong {
    overflow: hidden;
    color: #d4d4d8;
    font-size: 12px;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-dropdown-item:hover {
    background: #18181b;
    color: #fff;
}

@media (max-width: 700px) {
    

    

    

    
}

.register-field-hint {
    margin-top: -1px;
    color: #52525b;
    font-size: 10px;
    line-height: 1.5;
}

.register-terms {
    margin: 18px 0 0;
    color: #52525b;
    font-size: 10px;
    line-height: 1.6;
    text-align: center;
}

.register-terms a {
    color: #a1a1aa;
}

.register-terms a:hover {
    color: #fff;
    text-decoration: underline;
}

.profile-connections {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #27272a;
}

.profile-connection {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    padding: 8px 6px;
    border-radius: 6px;
    transition:
        background 0.15s ease,
        color 0.15s ease;
}

.profile-connection:hover {
    background: #111113;
}

.profile-connection-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    border: 1px solid #27272a;
    border-radius: 6px;
    background: #111113;
    color: #a1a1aa;
    font-size: 11px;
    font-weight: 600;
}

.profile-connection-content {
    display: flex;
    min-width: 0;
    flex: 1;
    flex-direction: column;
    gap: 2px;
}

.profile-connection-content strong {
    overflow: hidden;
    color: #d4d4d8;
    font-size: 12px;
    font-weight: 500;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.profile-connection-content > span {
    color: #52525b;
    font-size: 10px;
}

.profile-connection-arrow {
    color: #3f3f46;
    font-size: 11px;
    transition: color 0.15s ease;
}

.profile-connection:hover .profile-connection-arrow {
    color: #a1a1aa;
}

.connection-create {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 18px;
    margin-bottom: 28px;
}

.connection-create .settings-actions {
    grid-column: 1 / -1;
}

.settings-field select {
    width: 100%;
    height: 42px;
    padding: 0 12px;
    border: 1px solid #27272a;
    border-radius: 6px;
    outline: none;
    background: #09090b;
    color: #d4d4d8;
    font: inherit;
    font-size: 13px;
}

.settings-field select:hover {
    border-color: #3f3f46;
}

.settings-field select:focus {
    border-color: #52525b;
}

.settings-connection-list {
    border-top: 1px solid #27272a;
}

.settings-connection {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px 4px;
    border-bottom: 1px solid #27272a;
}

.settings-connection > div {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 3px;
}

.settings-connection strong {
    color: #d4d4d8;
    font-size: 12px;
    font-weight: 600;
}

.settings-connection span {
    color: #52525b;
    font-size: 10px;
    text-transform: capitalize;
}

.settings-connection a {
    max-width: 500px;
    overflow: hidden;
    color: #71717a;
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.settings-connection a:hover {
    color: #fff;
}

@media (max-width: 600px) {
    .connection-create {
        grid-template-columns: 1fr;
    }

    .connection-create .settings-actions {
        grid-column: auto;
    }

    .settings-connection {
        align-items: flex-start;
        flex-direction: column;
    }
}

.profile-contributions {
    margin-bottom: 48px;
}

.profile-contributions-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 16px;
}

.profile-contributions-header h2 {
    margin: 0;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}

.profile-contributions-header p {
    margin: 5px 0 0;
    color: #52525b;
    font-size: 11px;
}

.contribution-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 76px;
    align-items: start;
    gap: 16px;
}

.contribution-calendar-wrapper {
    min-width: 0;
    padding: 18px;
    overflow-x: auto;
    border: 1px solid #27272a;
    border-radius: 7px;
    background: #0d0d0f;
}

.contribution-months {
    display: grid;
    grid-template-columns: repeat(54, 11px);
    gap: 3px;
    min-width: max-content;
    margin-bottom: 7px;
    margin-left: 32px;
    color: #52525b;
    font-size: 9px;
}

.contribution-months span {
    white-space: nowrap;
}

.contribution-calendar {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    min-width: max-content;
}

.contribution-weekdays {
    display: grid;
    grid-template-rows: repeat(7, 11px);
    gap: 3px;
    width: 25px;
    flex-shrink: 0;
    color: #52525b;
    font-size: 8px;
    line-height: 11px;
}

.contribution-grid {
    display: grid;
    grid-template-rows: repeat(7, 11px);
    grid-auto-flow: column;
    grid-auto-columns: 11px;
    gap: 3px;
}

.contribution-day {
    width: 11px;
    height: 11px;
    border: 1px solid #18181b;
    border-radius: 2px;
    background: #111113;
}

.contribution-day.level-0 {
    border-color: #18181b;
    background: #111113;
}

.contribution-day.level-1 {
    border-color: #27272a;
    background: #27272a;
}

.contribution-day.level-2 {
    border-color: #3f3f46;
    background: #3f3f46;
}

.contribution-day.level-3 {
    border-color: #71717a;
    background: #71717a;
}

.contribution-day.level-4 {
    border-color: #d4d4d8;
    background: #d4d4d8;
}

.contribution-day.outside-year {
    border-color: transparent;
    background: transparent;
}

.contribution-grid
.contribution-day:not(.outside-year):hover {
    outline: 1px solid #a1a1aa;
    outline-offset: 1px;
}

.contribution-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    min-width: max-content;
    margin-top: 14px;
    color: #52525b;
    font-size: 9px;
}

.contribution-footer .contribution-day {
    width: 10px;
    height: 10px;
}

.contribution-footer span:first-child {
    margin-right: 3px;
}

.contribution-footer span:last-child {
    margin-left: 3px;
}

.contribution-years {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.contribution-years a {
    display: flex;
    align-items: center;
    height: 30px;
    padding: 0 10px;
    border-radius: 5px;
    color: #71717a;
    font-size: 11px;
    transition:
        background 0.15s ease,
        color 0.15s ease;
}

.contribution-years a:hover {
    background: #111113;
    color: #fff;
}

.contribution-years a.active {
    background: #fff;
    color: #09090b;
}

@media (max-width: 800px) {
    .contribution-layout {
        grid-template-columns: 1fr;
    }

    .contribution-years {
        flex-direction: row;
        overflow-x: auto;
    }

    .contribution-years a {
        flex-shrink: 0;
    }
}

.profile-readme {
    margin-bottom: 42px;
    overflow: hidden;
    border: 1px solid #27272a;
    border-radius: 7px;
    background: #0d0d0f;
}

.profile-readme-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 44px;
    padding: 0 16px;
    border-bottom: 1px solid #27272a;
    background: #111113;
}

.profile-readme-repository {
    display: flex;
    align-items: center;
    min-width: 0;
    gap: 8px;
}

.profile-readme-repository svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: #71717a;
}

.profile-readme-repository a {
    overflow: hidden;
    color: #a1a1aa;
    font-size: 12px;
    font-weight: 500;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.profile-readme-repository a:hover {
    color: #fff;
    text-decoration: underline;
}

.profile-readme-edit {
    flex-shrink: 0;
    color: #71717a;
    font-size: 10px;
}

.profile-readme-edit:hover {
    color: #fff;
}

.profile-readme-content {
    padding: 22px;
    overflow-wrap: anywhere;
    color: #d4d4d8;
    font-size: 13px;
    line-height: 1.65;
}

.profile-readme-content > :first-child {
    margin-top: 0;
}

.profile-readme-content > :last-child {
    margin-bottom: 0;
}

.profile-readme-content h1,
.profile-readme-content h2,
.profile-readme-content h3,
.profile-readme-content h4,
.profile-readme-content h5,
.profile-readme-content h6 {
    margin: 24px 0 12px;
    color: #fff;
    font-weight: 600;
    line-height: 1.3;
}

.profile-readme-content h1 {
    padding-bottom: 10px;
    border-bottom: 1px solid #27272a;
    font-size: 24px;
}

.profile-readme-content h2 {
    padding-bottom: 8px;
    border-bottom: 1px solid #27272a;
    font-size: 20px;
}

.profile-readme-content h3 {
    font-size: 16px;
}

.profile-readme-content h4 {
    font-size: 14px;
}

.profile-readme-content h5 {
    font-size: 13px;
}

.profile-readme-content h6 {
    color: #a1a1aa;
    font-size: 12px;
}

.profile-readme-content p {
    margin: 0 0 15px;
}

.profile-readme-content strong {
    color: #fff;
    font-weight: 600;
}

.profile-readme-content a {
    color: #d4d4d8;
    text-decoration: underline;
    text-decoration-color: #52525b;
    text-underline-offset: 3px;
}

.profile-readme-content a:hover {
    color: #fff;
    text-decoration-color: #a1a1aa;
}

.profile-readme-content ul,
.profile-readme-content ol {
    margin: 0 0 16px;
    padding-left: 26px;
}

.profile-readme-content li {
    margin: 4px 0;
}

.profile-readme-content li > p {
    margin-bottom: 5px;
}

.profile-readme-content blockquote {
    margin: 16px 0;
    padding: 2px 16px;
    border-left: 3px solid #3f3f46;
    color: #71717a;
}

.profile-readme-content blockquote p:last-child {
    margin-bottom: 0;
}

.profile-readme-content hr {
    height: 1px;
    margin: 24px 0;
    border: 0;
    background: #27272a;
}

.profile-readme-content img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.profile-readme-content table {
    display: block;
    width: max-content;
    max-width: 100%;
    margin: 16px 0;
    overflow-x: auto;
    border-spacing: 0;
    border-collapse: collapse;
}

.profile-readme-content th,
.profile-readme-content td {
    padding: 7px 12px;
    border: 1px solid #27272a;
    text-align: left;
}

.profile-readme-content th {
    background: #111113;
    color: #fff;
    font-weight: 600;
}

.profile-readme-content code {
    padding: 2px 5px;
    border: 1px solid #27272a;
    border-radius: 4px;
    background: #18181b;
    color: #d4d4d8;
    font-family:
        "SFMono-Regular",
        Consolas,
        "Liberation Mono",
        Menlo,
        monospace;
    font-size: 11px;
}

.profile-readme-content pre {
    margin: 16px 0;
    overflow-x: auto;
    border: 1px solid #27272a;
    border-radius: 6px;
    background: #09090b;
}

.profile-readme-content pre code {
    display: block;
    padding: 14px;
    border: 0;
    border-radius: 0;
    background: transparent;
    line-height: 1.5;
}

.profile-readme-code {
    margin: 16px 0;
}

.profile-readme-content .hljs {
    color: #d4d4d8;
}

.profile-readme-content .hljs-comment,
.profile-readme-content .hljs-quote {
    color: #71717a;
}

.profile-readme-content .hljs-keyword,
.profile-readme-content .hljs-selector-tag,
.profile-readme-content .hljs-meta {
    color: #c084fc;
}

.profile-readme-content .hljs-string,
.profile-readme-content .hljs-attr,
.profile-readme-content .hljs-regexp {
    color: #86efac;
}

.profile-readme-content .hljs-number,
.profile-readme-content .hljs-literal {
    color: #fca5a5;
}

.profile-readme-content .hljs-title,
.profile-readme-content .hljs-section,
.profile-readme-content .hljs-function {
    color: #93c5fd;
}

.profile-readme-content .hljs-variable,
.profile-readme-content .hljs-template-variable,
.profile-readme-content .hljs-params {
    color: #fcd34d;
}

.profile-readme-content .hljs-built_in,
.profile-readme-content .hljs-type {
    color: #67e8f9;
}

@media (max-width: 600px) {
    .profile-readme-content {
        padding: 17px;
    }

    .profile-readme-header {
        padding: 0 12px;
    }

    .profile-readme-edit {
        display: none;
    }
}

.file-meta {
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.repository-toolbar-left {
    display: flex;
    align-items: center;
    min-width: 0;
    gap: 14px;
}

.repository-toolbar-actions {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 8px;
}

.repository-toolbar-actions .button {
    min-height: 32px;
    padding: 0 11px;
    font-size: 11px;
}

.repository-edit-file {
    min-height: 28px;
    padding: 0 10px;
    font-size: 11px;
}

.repository-delete-form {
    display: inline-flex;
    margin: 0;
}

.repository-delete-file {
    min-height: 28px;
    padding: 0 10px;
    border-color: #3f3f46;
    color: #fca5a5;
    font-size: 11px;
}

.repository-delete-file:hover {
    border-color: #52525b;
    background: #18181b;
    color: #fecaca;
}

.repository-editor {
    overflow: hidden;
    border: 1px solid #27272a;
    border-radius: 7px;
    background: #0d0d0f;
}

.repository-editor-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 44px;
    padding: 0 14px;
    border-bottom: 1px solid #27272a;
    background: #111113;
}

.repository-editor-form {
    display: flex;
    flex-direction: column;
}

.repository-editor-code {
    background: #09090b;
}

.repository-editor-textarea {
    display: block;
    width: 100%;
    min-height: 560px;
    padding: 16px 18px;
    resize: vertical;
    border: 0;
    outline: 0;
    background: #09090b;
    color: #d4d4d8;
    font-family:
        "SFMono-Regular",
        Consolas,
        "Liberation Mono",
        Menlo,
        monospace;
    font-size: 12px;
    line-height: 1.55;
    tab-size: 4;
    white-space: pre;
    overflow: auto;
}

.repository-editor-textarea:focus {
    background: #0b0b0d;
}

.repository-editor-commit {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    padding: 16px;
    border-top: 1px solid #27272a;
    background: #0d0d0f;
}

.repository-editor-commit > div:first-child {
    width: min(100%, 520px);
}

.repository-editor-commit label {
    display: block;
    margin-bottom: 7px;
    color: #a1a1aa;
    font-size: 11px;
    font-weight: 500;
}

.repository-editor-commit input {
    width: 100%;
    height: 38px;
    padding: 0 11px;
    border: 1px solid #27272a;
    border-radius: 5px;
    outline: none;
    background: #09090b;
    color: #d4d4d8;
    font: inherit;
    font-size: 12px;
}

.repository-editor-commit input:hover {
    border-color: #3f3f46;
}

.repository-editor-commit input:focus {
    border-color: #52525b;
}

.repository-editor-actions {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 8px;
}

.repository-new-file-name {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 12px 16px;
    border-bottom: 1px solid #27272a;
    background: #0d0d0f;
}

.repository-new-file-name span {
    flex-shrink: 0;
    color: #71717a;
    font-family:
        "SFMono-Regular",
        Consolas,
        "Liberation Mono",
        Menlo,
        monospace;
    font-size: 12px;
}

.repository-new-file-name input {
    width: 100%;
    height: 34px;
    padding: 0 9px;
    border: 1px solid #27272a;
    border-radius: 5px;
    outline: none;
    background: #09090b;
    color: #fff;
    font-family:
        "SFMono-Regular",
        Consolas,
        "Liberation Mono",
        Menlo,
        monospace;
    font-size: 12px;
}

.repository-new-file-name input:hover {
    border-color: #3f3f46;
}

.repository-new-file-name input:focus {
    border-color: #52525b;
}

@media (max-width: 700px) {
    .repository-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .repository-toolbar-left {
        align-items: flex-start;
        flex-direction: column;
    }

    .repository-toolbar-actions {
        justify-content: flex-end;
    }

    .repository-editor-header {
        align-items: flex-start;
        flex-direction: column;
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .repository-editor-textarea {
        min-height: 420px;
        padding: 14px;
    }

    .repository-editor-commit {
        align-items: stretch;
        flex-direction: column;
    }

    .repository-editor-commit > div:first-child {
        width: 100%;
    }

    .repository-editor-actions {
        justify-content: flex-end;
    }
}

.readme-content [align="center"],
.profile-readme-content [align="center"] {
    text-align: center;
}

.readme-content [align="left"],
.profile-readme-content [align="left"] {
    text-align: left;
}

.readme-content [align="right"],
.profile-readme-content [align="right"] {
    text-align: right;
}

.readme-content [align="justify"],
.profile-readme-content [align="justify"] {
    text-align: justify;
}

.readme-content img[align="left"],
.profile-readme-content img[align="left"] {
    float: left;
    margin: 0 18px 12px 0;
}

.readme-content img[align="right"],
.profile-readme-content img[align="right"] {
    float: right;
    margin: 0 0 12px 18px;
}

.readme-content div::after,
.profile-readme-content div::after {
    display: table;
    clear: both;
    content: "";
}

.readme-content table,
.profile-readme-content table {
    max-width: 100%;
}

.readme-content td,
.profile-readme-content td {
    vertical-align: inherit;
}

.readme-content img,
.profile-readme-content img {
    max-width: 100%;
}

.hosting-page {
    padding: 42px 0 90px;
}

.hosting-container {
    max-width: 1180px;
}

.hosting-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 28px;
    border-bottom: 1px solid #27272a;
}

.hosting-header h1 {
    margin: 0;
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.04em;
}

.hosting-header p {
    margin: 7px 0 0;
    color: #71717a;
    font-size: 13px;
}

.hosting-summary {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 26px 0;
    border: 1px solid #27272a;
    border-radius: 7px;
    background: #0d0d0f;
}

.hosting-summary-item {
    padding: 16px 18px;
    border-right: 1px solid #27272a;
}

.hosting-summary-item:last-child {
    border-right: 0;
}

.hosting-summary-item span {
    display: block;
    color: #71717a;
    font-size: 11px;
}

.hosting-summary-item strong {
    display: block;
    margin-top: 5px;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
}

.hosting-projects {
    overflow: hidden;
    border: 1px solid #27272a;
    border-radius: 7px;
}

.hosting-projects-header,
.hosting-project {
    display: grid;
    grid-template-columns:
        minmax(240px, 2fr)
        minmax(100px, 0.8fr)
        minmax(100px, 0.8fr)
        minmax(160px, 1.2fr)
        minmax(130px, 1fr);
    align-items: center;
    gap: 18px;
}

.hosting-projects-header {
    min-height: 38px;
    padding: 0 16px;
    border-bottom: 1px solid #27272a;
    background: #111113;
    color: #52525b;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hosting-project {
    min-height: 68px;
    padding: 0 16px;
    border-bottom: 1px solid #27272a;
    color: inherit;
    transition:
        background 0.12s ease,
        border-color 0.12s ease;
}

.hosting-project:last-child {
    border-bottom: 0;
}

.hosting-project:hover {
    background: #111113;
}

.hosting-project-name {
    display: flex;
    align-items: center;
    min-width: 0;
    gap: 11px;
}

.hosting-project-name > div:last-child {
    min-width: 0;
}

.hosting-project-name strong,
.hosting-project-name span {
    display: block;
}

.hosting-project-name strong {
    overflow: hidden;
    color: #d4d4d8;
    font-size: 13px;
    font-weight: 500;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hosting-project-name span {
    margin-top: 3px;
    overflow: hidden;
    color: #52525b;
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hosting-project-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    border: 1px solid #27272a;
    border-radius: 6px;
    background: #09090b;
    color: #a1a1aa;
    font-size: 12px;
    font-weight: 600;
}

.hosting-project-runtime,
.hosting-project-domain,
.hosting-project-deploy {
    min-width: 0;
    color: #71717a;
    font-size: 11px;
}

.hosting-project-runtime span,
.hosting-project-domain span,
.hosting-project-deploy span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hosting-project-status {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #a1a1aa;
    font-size: 11px;
    text-transform: capitalize;
}

.hosting-status {
    display: block;
    width: 7px;
    height: 7px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #52525b;
}

.hosting-status-running {
    background: #86efac;
}

.hosting-status-deploying {
    background: #fcd34d;
}

.hosting-status-failed {
    background: #fca5a5;
}

.hosting-status-stopped {
    background: #52525b;
}

.hosting-empty {
    padding: 80px 20px;
    border: 1px solid #27272a;
    border-radius: 7px;
    text-align: center;
    background: #0d0d0f;
}

.hosting-empty-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin: 0 auto 18px;
    border: 1px solid #27272a;
    border-radius: 8px;
    background: #111113;
    color: #71717a;
    font-size: 18px;
}

.hosting-empty h2 {
    margin: 0;
    color: #fff;
    font-size: 17px;
    font-weight: 500;
}

.hosting-empty p {
    max-width: 430px;
    margin: 9px auto 20px;
    color: #71717a;
    font-size: 12px;
    line-height: 1.6;
}

.hosting-empty .button {
    display: inline-flex;
}

.muted {
    color: #52525b !important;
}

@media (max-width: 850px) {
    .hosting-summary {
        grid-template-columns: repeat(2, 1fr);
    }

    .hosting-summary-item:nth-child(2) {
        border-right: 0;
    }

    .hosting-summary-item:nth-child(-n + 2) {
        border-bottom: 1px solid #27272a;
    }

    .hosting-projects {
        overflow-x: auto;
    }

    .hosting-projects-header,
    .hosting-project {
        min-width: 850px;
    }
}

@media (max-width: 600px) {
    .hosting-header {
        align-items: stretch;
        flex-direction: column;
    }

    .hosting-header .button {
        width: fit-content;
    }

    .hosting-summary {
        grid-template-columns: 1fr 1fr;
    }
}

.hosting-new-page,
.hosting-project-page {
    padding: 42px 0 90px;
}

.hosting-new-container {
    max-width: 800px;
}

.hosting-project-container {
    max-width: 1180px;
}

.hosting-new-back,
.hosting-project-back {
    display: inline-block;
    margin-bottom: 20px;
    color: #71717a;
    font-size: 12px;
}

.hosting-new-back:hover,
.hosting-project-back:hover {
    color: #fff;
}

.hosting-new-header {
    padding-bottom: 28px;
    border-bottom: 1px solid #27272a;
}

.hosting-new-header h1,
.hosting-project-heading h1 {
    margin: 0;
    color: #fff;
    font-size: 27px;
    font-weight: 600;
    letter-spacing: -0.04em;
}

.hosting-new-header p {
    margin: 8px 0 0;
    color: #71717a;
    font-size: 13px;
    line-height: 1.6;
}

.hosting-new-form {
    padding-top: 28px;
}

.hosting-form-section {
    padding-bottom: 30px;
}

.hosting-form-section + .hosting-form-section {
    padding-top: 30px;
    border-top: 1px solid #27272a;
}

.hosting-form-section-header {
    margin-bottom: 22px;
}

.hosting-form-section-header h2,
.hosting-panel-header h2,
.hosting-danger-zone h2 {
    margin: 0;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.hosting-form-section-header p,
.hosting-panel-header p,
.hosting-danger-zone p {
    margin: 5px 0 0;
    color: #71717a;
    font-size: 11px;
    line-height: 1.6;
}

.hosting-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.hosting-field {
    margin-bottom: 18px;
}

.hosting-field label {
    display: block;
    margin-bottom: 7px;
    color: #d4d4d8;
    font-size: 12px;
    font-weight: 500;
}

.hosting-field label span {
    margin-left: 5px;
    color: #52525b;
    font-size: 10px;
    font-weight: 400;
}

.hosting-field input,
.hosting-field select,
.hosting-environment-form input,
.hosting-domain-form input {
    width: 100%;
    height: 38px;
    padding: 0 11px;
    border: 1px solid #27272a;
    border-radius: 5px;
    outline: none;
    background: #09090b;
    color: #d4d4d8;
    font: inherit;
    font-size: 12px;
}

.hosting-field input:focus,
.hosting-field select:focus,
.hosting-environment-form input:focus,
.hosting-domain-form input:focus {
    border-color: #52525b;
}

.hosting-new-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    padding-top: 22px;
    border-top: 1px solid #27272a;
}

.hosting-project-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.hosting-project-heading {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hosting-project-top p {
    margin: 7px 0 0;
    color: #71717a;
    font-size: 12px;
}

.hosting-project-top-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hosting-project-top-actions form {
    margin: 0;
}

.hosting-status-badge {
    display: inline-flex;
    align-items: center;
    height: 24px;
    padding: 0 8px;
    border: 1px solid #27272a;
    border-radius: 999px;
    color: #a1a1aa;
    font-size: 10px;
    text-transform: capitalize;
}

.hosting-status-badge-running {
    border-color: #14532d;
    color: #86efac;
}

.hosting-status-badge-deploying,
.hosting-status-badge-building,
.hosting-status-badge-queued {
    border-color: #713f12;
    color: #fcd34d;
}

.hosting-status-badge-failed {
    border-color: #7f1d1d;
    color: #fca5a5;
}

.hosting-project-tabs {
    display: flex;
    gap: 22px;
    margin: 28px 0 24px;
    overflow-x: auto;
    border-bottom: 1px solid #27272a;
}

.hosting-project-tabs a {
    flex-shrink: 0;
    padding: 11px 1px;
    border-bottom: 2px solid transparent;
    color: #71717a;
    font-size: 12px;
}

.hosting-project-tabs a:hover {
    color: #fff;
}

.hosting-project-tabs a.active {
    border-bottom-color: #fff;
    color: #fff;
}

.hosting-overview-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 16px;
}

.hosting-panel {
    overflow: hidden;
    border: 1px solid #27272a;
    border-radius: 7px;
    background: #0d0d0f;
}

.hosting-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 46px;
    gap: 20px;
    padding: 0 16px;
    border-bottom: 1px solid #27272a;
    background: #111113;
}

.hosting-panel-content {
    padding: 18px;
}

.hosting-overview-main {
    grid-column: 1 / -1;
}

.hosting-overview-status {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.hosting-overview-status > div {
    padding: 20px;
    border-right: 1px solid #27272a;
}

.hosting-overview-status > div:last-child {
    border-right: 0;
}

.hosting-overview-status span,
.hosting-overview-status strong {
    display: block;
}

.hosting-overview-status span {
    color: #71717a;
    font-size: 10px;
}

.hosting-overview-status strong {
    margin-top: 5px;
    color: #d4d4d8;
    font-size: 13px;
    font-weight: 500;
    text-transform: capitalize;
}

.hosting-public-url,
.hosting-repository-link {
    color: #d4d4d8;
    font-size: 12px;
}

.hosting-public-url:hover,
.hosting-repository-link:hover {
    color: #fff;
    text-decoration: underline;
}

.hosting-muted {
    color: #52525b;
    font-size: 11px;
}

.hosting-latest-deployment {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hosting-latest-deployment strong {
    color: #d4d4d8;
    font-size: 12px;
    text-transform: capitalize;
}

.hosting-latest-deployment span {
    color: #71717a;
    font-family: monospace;
    font-size: 11px;
}

.hosting-deployment-list,
.hosting-environment-list,
.hosting-domain-list {
    display: flex;
    flex-direction: column;
}

.hosting-deployment-row {
    display: grid;
    grid-template-columns:
        1fr
        100px
        100px
        100px
        170px;
    align-items: center;
    gap: 15px;
    min-height: 54px;
    padding: 0 16px;
    border-bottom: 1px solid #27272a;
    color: #71717a;
    font-size: 11px;
}

.hosting-deployment-row:last-child {
    border-bottom: 0;
}

.hosting-deployment-row > div {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hosting-deployment-row strong {
    color: #d4d4d8;
    font-size: 11px;
    font-weight: 500;
    text-transform: capitalize;
}

.hosting-deployment-row code {
    color: #a1a1aa;
}

.hosting-logs {
    min-height: 500px;
    max-height: 650px;
    margin: 0;
    padding: 16px;
    overflow: auto;
    background: #09090b;
    color: #a1a1aa;
    font-family:
        "SFMono-Regular",
        Consolas,
        monospace;
    font-size: 11px;
    line-height: 1.55;
    white-space: pre-wrap;
}

.hosting-environment-form,
.hosting-domain-form {
    display: grid;
    grid-template-columns: 1fr 2fr auto;
    gap: 8px;
    padding: 16px;
    border-bottom: 1px solid #27272a;
}

.hosting-domain-form {
    grid-template-columns: 1fr auto;
}

.hosting-environment-row,
.hosting-domain-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 52px;
    padding: 0 16px;
    border-bottom: 1px solid #27272a;
}

.hosting-environment-row:last-child,
.hosting-domain-row:last-child {
    border-bottom: 0;
}

.hosting-environment-row code {
    min-width: 180px;
    color: #d4d4d8;
    font-size: 11px;
}

.hosting-environment-row > span {
    flex: 1;
    color: #52525b;
    font-size: 11px;
}

.hosting-domain-row strong,
.hosting-domain-row span {
    display: block;
}

.hosting-domain-row strong {
    color: #d4d4d8;
    font-size: 12px;
}

.hosting-domain-row span {
    margin-top: 3px;
    color: #71717a;
    font-size: 10px;
}

.hosting-text-button {
    padding: 0;
    border: 0;
    background: transparent;
    color: #71717a;
    cursor: pointer;
    font: inherit;
    font-size: 10px;
}

.hosting-text-button:hover {
    color: #fff;
}

.hosting-panel-empty {
    padding: 35px 16px;
    color: #52525b;
    font-size: 11px;
    text-align: center;
}

.hosting-settings-form {
    max-width: 650px;
    padding: 20px;
}

.hosting-danger-zone {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 24px;
    padding: 18px;
    border: 1px solid #3f3f46;
    border-radius: 7px;
}

.hosting-danger-zone form {
    margin: 0;
}

.hosting-danger-button {
    color: #fca5a5;
}

@media (max-width: 850px) {
    .hosting-overview-grid {
        grid-template-columns: 1fr;
    }

    .hosting-overview-status {
        grid-template-columns: repeat(2, 1fr);
    }

    .hosting-deployment-list {
        overflow-x: auto;
    }

    .hosting-deployment-row {
        min-width: 750px;
    }
}

@media (max-width: 650px) {
    .hosting-form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .hosting-project-top {
        flex-direction: column;
    }

    .hosting-overview-status {
        grid-template-columns: 1fr 1fr;
    }

    .hosting-environment-form,
    .hosting-domain-form {
        grid-template-columns: 1fr;
    }

    .hosting-danger-zone {
        align-items: flex-start;
        flex-direction: column;
    }
}

.hosting-hidden {
    display: none !important;
}

.hosting-plan-badge {
    display: inline-flex;
    align-items: center;
    height: 23px;
    padding: 0 8px;
    border: 1px solid #27272a;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 500;
}

.hosting-plan-normal {
    border-color: #3f3f46;
    background: #18181b;
    color: #a1a1aa;
}

.hosting-plan-premium {
    border-color: #854d0e;
    background: rgba(113, 63, 18, 0.14);
    color: #facc15;
}

.hosting-resource-content,
.hosting-plan-content {
    padding: 18px;
}

.hosting-resource-live {
    color: #52525b;
    font-size: 10px;
}

.hosting-resource-live.active {
    color: #86efac;
}

.hosting-resource-item {
    margin-bottom: 20px;
}

.hosting-resource-row,
.hosting-plan-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.hosting-resource-row span,
.hosting-plan-row span {
    color: #71717a;
    font-size: 11px;
}

.hosting-resource-row strong,
.hosting-plan-row strong {
    color: #d4d4d8;
    font-size: 11px;
    font-weight: 500;
}

.hosting-resource-bar {
    width: 100%;
    height: 5px;
    margin-top: 9px;
    overflow: hidden;
    border-radius: 999px;
    background: #18181b;
}

.hosting-resource-bar > div {
    height: 100%;
    border-radius: inherit;
    background: #d4d4d8;
    transition: width 0.25s ease;
}

.hosting-resource-item small {
    display: block;
    margin-top: 6px;
    color: #52525b;
    font-size: 9px;
}

.hosting-resource-grid,
.hosting-plan-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    margin-top: 18px;
    overflow: hidden;
    border: 1px solid #27272a;
    border-radius: 5px;
    background: #27272a;
}

.hosting-resource-grid > div,
.hosting-plan-details > div {
    padding: 12px;
    background: #09090b;
}

.hosting-resource-grid span,
.hosting-resource-grid strong,
.hosting-plan-details span,
.hosting-plan-details strong {
    display: block;
}

.hosting-resource-grid span,
.hosting-plan-details span {
    margin-bottom: 5px;
    color: #52525b;
    font-size: 9px;
}

.hosting-resource-grid strong,
.hosting-plan-details strong {
    color: #d4d4d8;
    font-size: 11px;
    font-weight: 500;
}

.hosting-upgrade-box,
.hosting-premium-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 18px;
    padding: 12px;
    border: 1px solid #27272a;
    border-radius: 5px;
    background: #111113;
}

.hosting-upgrade-box strong,
.hosting-upgrade-box span,
.hosting-premium-info strong,
.hosting-premium-info span {
    display: block;
}

.hosting-upgrade-box strong,
.hosting-premium-info strong {
    color: #d4d4d8;
    font-size: 11px;
    font-weight: 500;
}

.hosting-upgrade-box span,
.hosting-premium-info span {
    margin-top: 3px;
    color: #71717a;
    font-size: 9px;
}

.hosting-premium-info {
    border-color: #713f12;
}

.hosting-premium-info strong {
    color: #facc15;
}

.hosting-stop-button {
    border-color: #7f1d1d;
    color: #fca5a5;
}

.hosting-stop-button:hover {
    border-color: #991b1b;
    background: rgba(127, 29, 29, 0.15);
    color: #fecaca;
}

@media (max-width: 750px) {
    .hosting-resource-grid,
    .hosting-plan-details {
        grid-template-columns: 1fr;
    }

    .hosting-upgrade-box {
        align-items: flex-start;
        flex-direction: column;
    }
}

.cx-pricing {
    padding: 72px 0 100px;
}

.cx-pricing-container {
    max-width: 1080px;
}

.cx-pricing-hero {
    max-width: 650px;
    margin: 0 auto 52px;
    text-align: center;
}

.cx-pricing-hero h1 {
    margin: 0;
    color: #fafafa;
    font-size: 40px;
    font-weight: 600;
    letter-spacing: -0.05em;
    line-height: 1.1;
}

.cx-pricing-hero p {
    max-width: 540px;
    margin: 15px auto 0;
    color: #71717a;
    font-size: 13px;
    line-height: 1.65;
}

.cx-pricing-plans {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid #27272a;
    border-radius: 9px;
    background: #0d0d0f;
}

.cx-plan {
    min-width: 0;
}

.cx-plan + .cx-plan {
    border-left: 1px solid #27272a;
}

.cx-plan-premium {
    background: #101012;
}

.cx-plan-current {
    position: relative;
}

.cx-plan-current::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 2px;
    background: #d4d4d8;
    content: "";
}

.cx-plan-premium.cx-plan-current::before {
    background: #eab308;
}

.cx-plan-main {
    padding: 27px 28px 24px;
    border-bottom: 1px solid #27272a;
}

.cx-plan-name {
    display: flex;
    align-items: center;
    gap: 9px;
}

.cx-plan-name h2 {
    margin: 0;
    color: #fafafa;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.025em;
}

.cx-plan-head p {
    margin: 7px 0 0;
    color: #71717a;
    font-size: 11px;
}

.cx-plan-current-tag,
.cx-premium-tag {
    display: inline-flex;
    align-items: center;
    min-height: 20px;
    padding: 0 7px;
    border: 1px solid #3f3f46;
    border-radius: 999px;
    color: #a1a1aa;
    font-size: 9px;
    white-space: nowrap;
}

.cx-plan-current-tag-premium,
.cx-premium-tag {
    border-color: #713f12;
    background: rgba(113, 63, 18, 0.08);
    color: #eab308;
}

.cx-plan-price {
    margin-top: 28px;
}

.cx-plan-price strong,
.cx-plan-price span {
    display: block;
}

.cx-plan-price strong {
    color: #fafafa;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.04em;
}

.cx-plan-price span {
    margin-top: 4px;
    color: #52525b;
    font-size: 10px;
}

.cx-plan-action {
    margin-top: 24px;
}

.cx-plan-button {
    width: 100%;
    justify-content: center;
}

.cx-plan-features {
    padding: 8px 28px 20px;
}

.cx-plan-feature-primary {
    padding: 19px 0;
    border-bottom: 1px solid #27272a;
}

.cx-plan-feature-primary strong,
.cx-plan-feature-primary span {
    display: block;
}

.cx-plan-feature-primary strong {
    color: #fafafa;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.035em;
}

.cx-plan-feature-primary span {
    margin-top: 3px;
    color: #71717a;
    font-size: 10px;
}

.cx-plan-feature {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    min-height: 43px;
    border-bottom: 1px solid #18181b;
}

.cx-plan-feature:last-child {
    border-bottom: 0;
}

.cx-plan-feature span {
    color: #71717a;
    font-size: 10px;
}

.cx-plan-feature strong {
    color: #d4d4d8;
    font-size: 10px;
    font-weight: 500;
}

.cx-pricing-included {
    margin-top: 70px;
}

.cx-pricing-section-title {
    margin-bottom: 19px;
}

.cx-pricing-section-title h2 {
    margin: 0;
    color: #fafafa;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.025em;
}

.cx-included-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    border: 1px solid #27272a;
    border-radius: 8px;
    background: #27272a;
    gap: 1px;
}

.cx-included-grid > div {
    min-height: 112px;
    padding: 18px;
    background: #0d0d0f;
}

.cx-included-grid strong,
.cx-included-grid span {
    display: block;
}

.cx-included-grid strong {
    color: #d4d4d8;
    font-size: 11px;
    font-weight: 500;
}

.cx-included-grid span {
    margin-top: 7px;
    color: #71717a;
    font-size: 10px;
    line-height: 1.6;
}

.cx-comparison {
    margin-top: 70px;
}

.cx-comparison-table {
    overflow: hidden;
    border: 1px solid #27272a;
    border-radius: 8px;
}

.cx-comparison-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 190px 190px;
    align-items: center;
    min-height: 46px;
    border-bottom: 1px solid #27272a;
}

.cx-comparison-row:last-child {
    border-bottom: 0;
}

.cx-comparison-row > div {
    padding: 0 18px;
    color: #a1a1aa;
    font-size: 10px;
}

.cx-comparison-row > div:nth-child(2),
.cx-comparison-row > div:nth-child(3) {
    text-align: center;
}

.cx-comparison-row > div:nth-child(3) {
    border-left: 1px solid #18181b;
}

.cx-comparison-head {
    min-height: 44px;
    background: #111113;
}

.cx-comparison-head > div {
    color: #71717a;
    font-size: 9px;
    font-weight: 500;
}

.cx-comparison-head .cx-comparison-premium {
    color: #d4d4d8;
}

.cx-comparison-group {
    display: flex;
    align-items: center;
    min-height: 36px;
    padding: 0 18px;
    border-bottom: 1px solid #27272a;
    background: #09090b;
    color: #52525b;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.cx-comparison-yes {
    color: #d4d4d8 !important;
}

.cx-pricing-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 70px;
    padding: 27px 0;
    border-top: 1px solid #27272a;
    border-bottom: 1px solid #27272a;
}

.cx-pricing-bottom h2 {
    margin: 0;
    color: #fafafa;
    font-size: 15px;
    font-weight: 600;
}

.cx-pricing-bottom p {
    margin: 5px 0 0;
    color: #71717a;
    font-size: 10px;
}

@media (max-width: 760px) {
    .cx-pricing {
        padding-top: 48px;
    }

    .cx-pricing-hero {
        margin-bottom: 35px;
    }

    .cx-pricing-hero h1 {
        font-size: 31px;
    }

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

    .cx-plan + .cx-plan {
        border-top: 1px solid #27272a;
        border-left: 0;
    }

    .cx-included-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cx-comparison-table {
        overflow-x: auto;
    }

    .cx-comparison-row {
        min-width: 620px;
    }
}

@media (max-width: 520px) {
    .cx-included-grid {
        grid-template-columns: 1fr;
    }

    .cx-pricing-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .cx-pricing-bottom .button {
        width: 100%;
        justify-content: center;
    }
}

.hosting-dashboard-page {
    padding: 44px 0 90px;
}

.hosting-dashboard-container {
    max-width: 1120px;
}

.hosting-dashboard-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 26px;
}

.hosting-dashboard-header h1 {
    margin: 0;
    color: #f4f4f5;
    font-size: 27px;
    font-weight: 600;
    letter-spacing: -0.04em;
}

.hosting-dashboard-header p {
    margin: 7px 0 0;
    color: #71717a;
    font-size: 11px;
}

.hosting-dashboard-overview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    margin-bottom: 14px;
    border: 1px solid #27272a;
    border-radius: 7px;
    background: #27272a;
    gap: 1px;
}

.hosting-dashboard-stat {
    padding: 18px;
    background: #0d0d0f;
}

.hosting-dashboard-stat span,
.hosting-dashboard-stat strong,
.hosting-dashboard-stat small {
    display: block;
}

.hosting-dashboard-stat span {
    color: #71717a;
    font-size: 9px;
    font-weight: 500;
    text-transform: uppercase;
}

.hosting-dashboard-stat strong {
    margin-top: 8px;
    color: #f4f4f5;
    font-size: 23px;
    font-weight: 500;
    letter-spacing: -0.04em;
}

.hosting-dashboard-stat small {
    margin-top: 5px;
    color: #52525b;
    font-size: 9px;
}

.hosting-dashboard-plan {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    margin-bottom: 32px;
    overflow: hidden;
    border: 1px solid #27272a;
    border-radius: 7px;
    background: #0d0d0f;
}

.hosting-dashboard-plan-main {
    padding: 18px;
}

.hosting-dashboard-plan-title {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.hosting-dashboard-plan-title > div > span {
    display: block;
    margin-bottom: 6px;
    color: #52525b;
    font-size: 9px;
    text-transform: uppercase;
}

.hosting-dashboard-plan-title > div > div {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hosting-dashboard-plan-title strong {
    color: #f4f4f5;
    font-size: 13px;
    font-weight: 500;
}

.hosting-dashboard-plan-badge {
    display: inline-flex;
    align-items: center;
    min-height: 20px;
    padding: 0 7px;
    border: 1px solid #3f3f46;
    border-radius: 999px;
    color: #a1a1aa;
    font-size: 8px;
}

.hosting-dashboard-plan-badge.premium {
    border-color: #713f12;
    color: #facc15;
}

.hosting-dashboard-upgrade {
    color: #a1a1aa;
    font-size: 10px;
}

.hosting-dashboard-upgrade:hover {
    color: #fff;
}

.hosting-dashboard-usage {
    margin-top: 20px;
}

.hosting-dashboard-usage-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hosting-dashboard-usage-head span {
    color: #71717a;
    font-size: 9px;
}

.hosting-dashboard-usage-head strong {
    color: #a1a1aa;
    font-size: 9px;
    font-weight: 500;
}

.hosting-dashboard-usage-bar {
    height: 5px;
    margin-top: 8px;
    overflow: hidden;
    border-radius: 999px;
    background: #18181b;
}

.hosting-dashboard-usage-bar > div {
    height: 100%;
    border-radius: inherit;
    background: #d4d4d8;
}

.hosting-dashboard-plan-limits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-left: 1px solid #27272a;
}

.hosting-dashboard-plan-limits > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 18px;
    border-right: 1px solid #18181b;
}

.hosting-dashboard-plan-limits > div:last-child {
    border-right: 0;
}

.hosting-dashboard-plan-limits span,
.hosting-dashboard-plan-limits strong {
    display: block;
}

.hosting-dashboard-plan-limits span {
    color: #52525b;
    font-size: 8px;
    text-transform: uppercase;
}

.hosting-dashboard-plan-limits strong {
    margin-top: 6px;
    color: #d4d4d8;
    font-size: 11px;
    font-weight: 500;
}

.hosting-dashboard-project-section {
    margin-top: 10px;
}

.hosting-dashboard-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 13px;
}

.hosting-dashboard-section-head h2 {
    margin: 0;
    color: #f4f4f5;
    font-size: 14px;
    font-weight: 600;
}

.hosting-dashboard-section-head p {
    margin: 5px 0 0;
    color: #52525b;
    font-size: 9px;
}

.hosting-dashboard-projects {
    overflow: hidden;
    border: 1px solid #27272a;
    border-radius: 7px;
    background: #0d0d0f;
}

.hosting-dashboard-projects-head,
.hosting-dashboard-project {
    display: grid;
    grid-template-columns:
        minmax(240px, 1.6fr)
        120px
        120px
        minmax(150px, 1fr)
        120px;
    align-items: center;
}

.hosting-dashboard-projects-head {
    min-height: 38px;
    padding: 0 15px;
    border-bottom: 1px solid #27272a;
    background: #111113;
}

.hosting-dashboard-projects-head span {
    color: #52525b;
    font-size: 8px;
    font-weight: 500;
    text-transform: uppercase;
}

.hosting-dashboard-project {
    min-height: 62px;
    padding: 0 15px;
    border-bottom: 1px solid #18181b;
    transition:
        background 0.12s ease,
        border-color 0.12s ease;
}

.hosting-dashboard-project:last-child {
    border-bottom: 0;
}

.hosting-dashboard-project:hover {
    background: #111113;
}

.hosting-dashboard-project-name {
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 0;
}

.hosting-dashboard-project-icon {
    display: flex;
    flex: 0 0 34px;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid #27272a;
    border-radius: 6px;
    background: #18181b;
    color: #a1a1aa;
    font-family:
        "SFMono-Regular",
        Consolas,
        monospace;
    font-size: 8px;
    font-weight: 600;
}

.hosting-dashboard-project-name > div:last-child {
    min-width: 0;
}

.hosting-dashboard-project-name strong,
.hosting-dashboard-project-name span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hosting-dashboard-project-name strong {
    color: #d4d4d8;
    font-size: 11px;
    font-weight: 500;
}

.hosting-dashboard-project-name span {
    margin-top: 4px;
    color: #52525b;
    font-size: 9px;
}

.hosting-dashboard-runtime > span {
    display: inline-flex;
    align-items: center;
    min-height: 23px;
    padding: 0 7px;
    border: 1px solid #27272a;
    border-radius: 4px;
    color: #a1a1aa;
    font-size: 9px;
}

.hosting-dashboard-status {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #a1a1aa;
    font-size: 9px;
}

.hosting-dashboard-endpoint,
.hosting-dashboard-updated {
    color: #71717a;
    font-size: 9px;
}

.hosting-dashboard-endpoint {
    min-width: 0;
}

.hosting-dashboard-endpoint > span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hosting-dashboard-muted {
    color: #3f3f46 !important;
}

.hosting-dashboard-updated {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.hosting-dashboard-chevron {
    color: #3f3f46;
    font-size: 18px;
    line-height: 1;
}

.hosting-dashboard-project:hover .hosting-dashboard-chevron {
    color: #a1a1aa;
}

.hosting-dashboard-empty {
    padding: 70px 25px;
    border: 1px dashed #27272a;
    border-radius: 7px;
    text-align: center;
}

.hosting-dashboard-empty-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin: 0 auto 17px;
    border: 1px solid #27272a;
    border-radius: 7px;
    background: #0d0d0f;
    color: #71717a;
    font-size: 18px;
}

.hosting-dashboard-empty h2 {
    margin: 0;
    color: #d4d4d8;
    font-size: 13px;
    font-weight: 500;
}

.hosting-dashboard-empty p {
    max-width: 390px;
    margin: 8px auto 19px;
    color: #52525b;
    font-size: 10px;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .hosting-dashboard-plan {
        grid-template-columns: 1fr;
    }

    .hosting-dashboard-plan-limits {
        border-top: 1px solid #27272a;
        border-left: 0;
    }

    .hosting-dashboard-projects {
        overflow-x: auto;
    }

    .hosting-dashboard-projects-head,
    .hosting-dashboard-project {
        min-width: 820px;
    }
}

@media (max-width: 650px) {
    .hosting-dashboard-page {
        padding-top: 32px;
    }

    .hosting-dashboard-header {
        align-items: stretch;
        flex-direction: column;
    }

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

    .hosting-dashboard-overview {
        grid-template-columns: repeat(2, 1fr);
    }

    .hosting-dashboard-plan-limits {
        grid-template-columns: 1fr;
    }

    .hosting-dashboard-plan-limits > div {
        border-right: 0;
        border-bottom: 1px solid #18181b;
    }

    .hosting-dashboard-plan-limits > div:last-child {
        border-bottom: 0;
    }
}

.docs-page {
    padding: 42px 0 100px;
}

.docs-container {
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 56px;
    max-width: 1120px;
}

.docs-sidebar {
    position: relative;
}

.docs-sidebar-inner {
    position: sticky;
    top: 86px;
}

.docs-sidebar-title {
    margin-bottom: 14px;
    color: #d4d4d8;
    font-size: 11px;
    font-weight: 600;
}

.docs-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.docs-nav-link {
    display: flex;
    align-items: center;
    min-height: 30px;
    padding: 0 9px;
    border-radius: 5px;
    color: #71717a;
    font-size: 10px;
    transition:
        background 0.12s ease,
        color 0.12s ease;
}

.docs-nav-link:hover {
    background: #111113;
    color: #d4d4d8;
}

.docs-content {
    min-width: 0;
    max-width: 800px;
}

.docs-hero {
    padding-bottom: 38px;
    border-bottom: 1px solid #27272a;
}

.docs-eyebrow {
    display: block;
    margin-bottom: 10px;
    color: #52525b;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.docs-hero h1 {
    max-width: 650px;
    margin: 0;
    color: #fafafa;
    font-size: 35px;
    font-weight: 600;
    letter-spacing: -0.045em;
    line-height: 1.12;
}

.docs-hero p {
    max-width: 620px;
    margin: 14px 0 0;
    color: #71717a;
    font-size: 12px;
    line-height: 1.75;
}

.docs-section {
    scroll-margin-top: 90px;
    padding: 44px 0;
    border-bottom: 1px solid #27272a;
}

.docs-section-heading {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-bottom: 20px;
}

.docs-section-heading > span {
    display: flex;
    flex: 0 0 27px;
    align-items: center;
    justify-content: center;
    width: 27px;
    height: 27px;
    border: 1px solid #27272a;
    border-radius: 5px;
    color: #52525b;
    font-family:
        "SFMono-Regular",
        Consolas,
        monospace;
    font-size: 8px;
}

.docs-section-heading h2 {
    margin: 0;
    color: #f4f4f5;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.025em;
}

.docs-section-heading p {
    margin: 5px 0 0;
    color: #52525b;
    font-size: 10px;
}

.docs-text {
    margin: 14px 0;
    color: #a1a1aa;
    font-size: 11px;
    line-height: 1.75;
}

.docs-text code {
    padding: 2px 5px;
    border: 1px solid #27272a;
    border-radius: 4px;
    background: #111113;
    color: #d4d4d8;
    font-family:
        "SFMono-Regular",
        Consolas,
        monospace;
    font-size: 9px;
}

.docs-steps {
    overflow: hidden;
    border: 1px solid #27272a;
    border-radius: 7px;
}

.docs-step {
    display: flex;
    gap: 14px;
    padding: 17px;
    border-bottom: 1px solid #27272a;
    background: #0d0d0f;
}

.docs-step:last-child {
    border-bottom: 0;
}

.docs-step > span {
    display: flex;
    flex: 0 0 24px;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #18181b;
    color: #a1a1aa;
    font-size: 9px;
}

.docs-step strong {
    color: #d4d4d8;
    font-size: 10px;
    font-weight: 500;
}

.docs-step p {
    margin: 5px 0 0;
    color: #71717a;
    font-size: 10px;
    line-height: 1.6;
}

.docs-code {
    overflow: hidden;
    margin: 17px 0;
    border: 1px solid #27272a;
    border-radius: 7px;
    background: #09090b;
}

.docs-code-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 35px;
    padding: 0 13px;
    border-bottom: 1px solid #27272a;
    background: #111113;
}

.docs-code-head span {
    color: #71717a;
    font-size: 9px;
}

.docs-code-head span:last-child {
    color: #52525b;
}

.docs-code pre {
    overflow-x: auto;
    margin: 0;
    padding: 16px;
}

.docs-code code {
    color: #d4d4d8;
    font-family:
        "SFMono-Regular",
        Consolas,
        "Liberation Mono",
        monospace;
    font-size: 10px;
    line-height: 1.7;
}

.docs-callout,
.docs-warning {
    margin: 18px 0;
    padding: 14px 16px;
    border: 1px solid #27272a;
    border-radius: 6px;
    background: #0d0d0f;
}

.docs-callout strong,
.docs-callout span,
.docs-warning strong,
.docs-warning span {
    display: block;
}

.docs-callout strong,
.docs-warning strong {
    margin-bottom: 5px;
    color: #d4d4d8;
    font-size: 10px;
    font-weight: 500;
}

.docs-callout span,
.docs-warning span {
    color: #71717a;
    font-size: 10px;
    line-height: 1.6;
}

.docs-warning {
    border-color: #713f12;
    background: rgba(113, 63, 18, 0.08);
}

.docs-warning strong {
    color: #facc15;
}

.docs-runtime-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.docs-runtime-card {
    padding: 17px;
    border: 1px solid #27272a;
    border-radius: 7px;
    background: #0d0d0f;
}

.docs-runtime-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    height: 23px;
    padding: 0 6px;
    border: 1px solid #27272a;
    border-radius: 4px;
    background: #18181b;
    color: #a1a1aa;
    font-family:
        "SFMono-Regular",
        Consolas,
        monospace;
    font-size: 8px;
    font-weight: 600;
}

.docs-runtime-card h3 {
    margin: 13px 0 0;
    color: #d4d4d8;
    font-size: 11px;
    font-weight: 500;
}

.docs-runtime-card p {
    min-height: 31px;
    margin: 6px 0 12px;
    color: #71717a;
    font-size: 9px;
    line-height: 1.6;
}

.docs-runtime-card code {
    color: #71717a;
    font-family:
        "SFMono-Regular",
        Consolas,
        monospace;
    font-size: 9px;
}

.docs-subsection {
    margin-top: 30px;
}

.docs-subsection > h3 {
    margin: 0;
    color: #d4d4d8;
    font-size: 12px;
    font-weight: 500;
}

.docs-good-bad {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 15px;
}

.docs-good-bad > div {
    padding: 14px;
    border: 1px solid #27272a;
    border-radius: 6px;
    background: #0d0d0f;
}

.docs-good-bad span,
.docs-good-bad code {
    display: block;
}

.docs-good,
.docs-bad {
    margin-bottom: 9px;
    font-size: 9px;
    font-weight: 500;
}

.docs-good {
    color: #86efac;
}

.docs-bad {
    color: #fca5a5;
}

.docs-good-bad code {
    color: #a1a1aa;
    font-family:
        "SFMono-Regular",
        Consolas,
        monospace;
    font-size: 9px;
}

.docs-table {
    overflow: hidden;
    border: 1px solid #27272a;
    border-radius: 7px;
}

.docs-table-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 150px 150px;
    align-items: center;
    min-height: 43px;
    border-bottom: 1px solid #27272a;
}

.docs-table-row:last-child {
    border-bottom: 0;
}

.docs-table-row > * {
    padding: 0 14px;
}

.docs-table-row span {
    color: #a1a1aa;
    font-size: 10px;
}

.docs-table-row strong {
    color: #d4d4d8;
    font-size: 10px;
    font-weight: 500;
    text-align: center;
}

.docs-table-head {
    min-height: 37px;
    background: #111113;
}

.docs-table-head span {
    color: #52525b;
    font-size: 8px;
    font-weight: 500;
    text-transform: uppercase;
}

.docs-table-head span:nth-child(2),
.docs-table-head span:nth-child(3) {
    text-align: center;
}

.docs-note {
    margin: 10px 0 0;
    color: #52525b;
    font-size: 9px;
    line-height: 1.6;
}

.docs-security-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    overflow: hidden;
    margin: 18px 0;
    border: 1px solid #27272a;
    border-radius: 7px;
    background: #27272a;
    gap: 1px;
}

.docs-security-grid > div {
    padding: 14px;
    background: #0d0d0f;
}

.docs-security-grid span,
.docs-security-grid strong {
    display: block;
}

.docs-security-grid span {
    color: #52525b;
    font-size: 9px;
}

.docs-security-grid strong {
    margin-top: 5px;
    color: #d4d4d8;
    font-size: 10px;
    font-weight: 500;
}

.docs-troubleshooting {
    overflow: hidden;
    border: 1px solid #27272a;
    border-radius: 7px;
}

.docs-troubleshooting details {
    border-bottom: 1px solid #27272a;
    background: #0d0d0f;
}

.docs-troubleshooting details:last-child {
    border-bottom: 0;
}

.docs-troubleshooting summary {
    padding: 15px 17px;
    color: #d4d4d8;
    font-size: 10px;
    cursor: pointer;
    user-select: none;
}

.docs-troubleshooting details > div {
    padding: 0 17px 15px;
}

.docs-troubleshooting p {
    margin: 0;
    color: #71717a;
    font-size: 10px;
    line-height: 1.7;
}

.docs-troubleshooting code {
    color: #d4d4d8;
    font-family:
        "SFMono-Regular",
        Consolas,
        monospace;
    font-size: 9px;
}

.docs-footer-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-top: 45px;
    padding: 24px 0;
}

.docs-footer-cta h2 {
    margin: 0;
    color: #f4f4f5;
    font-size: 15px;
    font-weight: 600;
}

.docs-footer-cta p {
    margin: 5px 0 0;
    color: #71717a;
    font-size: 10px;
}

@media (max-width: 850px) {
    .docs-container {
        grid-template-columns: 1fr;
    }

    .docs-sidebar {
        display: none;
    }

    .docs-content {
        max-width: none;
    }
}

@media (max-width: 600px) {
    .docs-page {
        padding-top: 30px;
    }

    .docs-hero h1 {
        font-size: 28px;
    }

    .docs-runtime-grid,
    .docs-good-bad,
    .docs-security-grid {
        grid-template-columns: 1fr;
    }

    .docs-table {
        overflow-x: auto;
    }

    .docs-table-row {
        min-width: 560px;
    }

    .docs-footer-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .docs-footer-cta .button {
        width: 100%;
        justify-content: center;
    }
}

.status-page {
    padding: 58px 0 100px;
}

.status-container {
    max-width: 880px;
}

.status-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 28px;
}

.status-header h1 {
    margin: 0;
    color: #f4f4f5;
    font-size: 29px;
    font-weight: 600;
    letter-spacing: -0.045em;
}

.status-header p {
    margin: 8px 0 0;
    color: #71717a;
    font-size: 11px;
}

.status-last-check {
    flex-shrink: 0;
    color: #52525b;
    font-size: 9px;
}

.status-overall {
    display: flex;
    align-items: center;
    min-height: 76px;
    padding: 0 22px;
    border: 1px solid #27272a;
    border-radius: 8px;
    background: #0d0d0f;
}

.status-overall-operational {
    border-color: #14532d;
    background: rgba(20, 83, 45, 0.08);
}

.status-overall-degraded {
    border-color: #713f12;
    background: rgba(113, 63, 18, 0.08);
}

.status-overall-outage {
    border-color: #7f1d1d;
    background: rgba(127, 29, 29, 0.08);
}

.status-overall-maintenance {
    border-color: #1e3a8a;
    background: rgba(30, 58, 138, 0.08);
}

.status-overall-left {
    display: flex;
    align-items: center;
    gap: 13px;
}

.status-overall-left > div {
    display: flex;
    flex-direction: column;
}

.status-overall-left strong {
    color: #f4f4f5;
    font-size: 13px;
    font-weight: 500;
}

.status-overall-left span:last-child {
    margin-top: 4px;
    color: #71717a;
    font-size: 9px;
}

.status-indicator {
    display: inline-block;
    flex: 0 0 9px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #52525b;
}

.status-indicator-operational {
    background: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.status-indicator-degraded {
    background: #eab308;
    box-shadow: 0 0 0 3px rgba(234, 179, 8, 0.1);
}

.status-indicator-outage {
    background: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.status-indicator-maintenance {
    background: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.status-indicator-unknown {
    background: #52525b;
}

.status-section {
    margin-top: 46px;
}

.status-section-head {
    margin-bottom: 12px;
}

.status-section-head h2 {
    margin: 0;
    color: #d4d4d8;
    font-size: 13px;
    font-weight: 600;
}

.status-components {
    overflow: hidden;
    border: 1px solid #27272a;
    border-radius: 8px;
    background: #0d0d0f;
}

.status-component {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 62px;
    padding: 0 18px;
    border-bottom: 1px solid #27272a;
}

.status-component:last-child {
    border-bottom: 0;
}

.status-component-main {
    display: flex;
    align-items: center;
    gap: 12px;
}

.status-component-main > div {
    display: flex;
    flex-direction: column;
}

.status-component-main strong {
    color: #d4d4d8;
    font-size: 10px;
    font-weight: 500;
}

.status-component-main span:last-child {
    margin-top: 3px;
    color: #52525b;
    font-size: 9px;
}

.status-component-state {
    font-size: 9px;
}

.status-component-state-operational {
    color: #4ade80;
}

.status-component-state-degraded {
    color: #facc15;
}

.status-component-state-outage {
    color: #f87171;
}

.status-component-state-maintenance {
    color: #60a5fa;
}

.status-component-state-unknown {
    color: #71717a;
}

.status-empty {
    padding: 25px;
    color: #52525b;
    font-size: 10px;
    text-align: center;
}

.status-incidents {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.status-incident {
    padding: 17px 18px;
    border: 1px solid #27272a;
    border-radius: 7px;
    background: #0d0d0f;
}

.status-incident-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.status-incident-header > div {
    display: flex;
    flex-direction: column;
}

.status-incident-header strong {
    color: #d4d4d8;
    font-size: 10px;
    font-weight: 500;
}

.status-incident-header span {
    margin-top: 4px;
    color: #52525b;
    font-size: 8px;
}

.status-incident p {
    margin: 12px 0 0;
    color: #71717a;
    font-size: 10px;
    line-height: 1.65;
}

.status-incident-badge {
    display: inline-flex;
    align-items: center;
    min-height: 21px;
    padding: 0 7px;
    border: 1px solid #27272a;
    border-radius: 999px;
    font-size: 8px;
    white-space: nowrap;
}

.status-incident-badge-operational {
    border-color: #14532d;
    color: #4ade80;
}

.status-incident-badge-degraded {
    border-color: #713f12;
    color: #facc15;
}

.status-incident-badge-outage {
    border-color: #7f1d1d;
    color: #f87171;
}

.status-incident-badge-maintenance {
    border-color: #1e3a8a;
    color: #60a5fa;
}

.status-no-incidents {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 18px;
    border: 1px solid #27272a;
    border-radius: 7px;
    background: #0d0d0f;
}

.status-no-incidents-icon {
    display: flex;
    flex: 0 0 30px;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 1px solid #14532d;
    border-radius: 50%;
    color: #4ade80;
    font-size: 11px;
}

.status-no-incidents > div {
    display: flex;
    flex-direction: column;
}

.status-no-incidents strong {
    color: #d4d4d8;
    font-size: 10px;
    font-weight: 500;
}

.status-no-incidents span:last-child {
    margin-top: 3px;
    color: #52525b;
    font-size: 9px;
}

.status-footer-note {
    margin-top: 35px;
    padding-top: 16px;
    border-top: 1px solid #18181b;
}

.status-footer-note span {
    color: #3f3f46;
    font-size: 8px;
}

@media (max-width: 620px) {
    .status-page {
        padding-top: 38px;
    }

    .status-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .status-component {
        align-items: flex-start;
        flex-direction: column;
        padding: 15px;
    }

    .status-component-state {
        margin-left: 21px;
    }

    .status-incident-header {
        flex-direction: column;
    }
}

.hosting-domain-card {
    border-top: 1px solid #27272a;
}

.hosting-domain-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 18px;
}

.hosting-domain-card-head > div:first-child {
    display: flex;
    align-items: center;
    gap: 9px;
}

.hosting-domain-card-head strong {
    color: #d4d4d8;
    font-size: 11px;
    font-weight: 500;
}

.hosting-domain-status {
    display: inline-flex;
    align-items: center;
    min-height: 20px;
    padding: 0 7px;
    border: 1px solid #713f12;
    border-radius: 999px;
    color: #facc15;
    font-size: 8px;
}

.hosting-domain-status.active {
    border-color: #14532d;
    color: #4ade80;
}

.hosting-domain-actions {
    display: flex;
    align-items: center;
    gap: 9px;
}

.hosting-domain-setup {
    padding: 16px 18px;
    border-top: 1px solid #18181b;
    background: #09090b;
}

.hosting-domain-setup p {
    margin: 0 0 10px;
    color: #71717a;
    font-size: 9px;
}

.hosting-domain-dns {
    display: grid;
    grid-template-columns: 100px 1fr 1.5fr;
    overflow: hidden;
    margin-bottom: 16px;
    border: 1px solid #27272a;
    border-radius: 6px;
}

.hosting-domain-dns > div {
    padding: 10px;
    border-right: 1px solid #27272a;
}

.hosting-domain-dns > div:last-child {
    border-right: 0;
}

.hosting-domain-dns span,
.hosting-domain-dns code {
    display: block;
}

.hosting-domain-dns span {
    margin-bottom: 5px;
    color: #52525b;
    font-size: 8px;
    text-transform: uppercase;
}

.hosting-domain-dns code {
    overflow: hidden;
    color: #d4d4d8;
    font-size: 9px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hosting-domain-state {
    display: flex;
    gap: 20px;
    color: #71717a;
    font-size: 9px;
}

.hosting-domain-state strong {
    margin-left: 5px;
    color: #a1a1aa;
}

.hosting-domain-ready {
    display: flex;
    gap: 16px;
    padding: 11px 18px;
    border-top: 1px solid #18181b;
    color: #52525b;
    font-size: 9px;
}

.hosting-domain-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 24px;
}

.hosting-domain-card {
    border: 1px solid var(--border-color, #30363d);
    border-radius: 10px;
    padding: 18px;
}

.hosting-domain-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.hosting-domain-name-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.hosting-domain-name {
    font-size: 16px;
}

.hosting-domain-status {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 3px 9px;
    font-size: 12px;
    font-weight: 600;
}

.hosting-domain-status-active {
    background: rgba(46, 160, 67, 0.15);
    color: #3fb950;
}

.hosting-domain-status-pending {
    background: rgba(210, 153, 34, 0.15);
    color: #d29922;
}

.hosting-domain-statuses {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 8px;
    opacity: 0.8;
    font-size: 13px;
}

.hosting-domain-actions {
    display: flex;
    gap: 10px;
}

.hosting-domain-actions form {
    margin: 0;
}

.hosting-domain-remove {
    color: #f85149;
}

.hosting-domain-section {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid var(--border-color, #30363d);
}

.hosting-domain-section h3 {
    margin: 0 0 8px;
    font-size: 14px;
}

.hosting-domain-section p {
    margin: 0 0 12px;
    opacity: 0.75;
}

.hosting-domain-validation-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hosting-dns-record {
    display: grid;
    grid-template-columns: 100px minmax(180px, 1fr) minmax(260px, 2fr);
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.025);
}

.hosting-dns-record > div {
    min-width: 0;
}

.hosting-dns-label {
    display: block;
    margin-bottom: 5px;
    font-size: 11px;
    text-transform: uppercase;
    opacity: 0.55;
}

.hosting-dns-record code {
    display: block;
    overflow-wrap: anywhere;
    white-space: normal;
}

.hosting-domain-ready,
.hosting-domain-waiting {
    margin-top: 18px;
    padding: 14px;
    border-radius: 8px;
}

.hosting-domain-ready {
    background: rgba(46, 160, 67, 0.1);
}

.hosting-domain-waiting {
    background: rgba(210, 153, 34, 0.1);
}

.hosting-domain-ready p,
.hosting-domain-waiting p {
    margin: 5px 0 12px;
}

.hosting-domain-error {
    margin-top: 14px;
    padding: 12px;
    border-radius: 8px;
    background: rgba(248, 81, 73, 0.1);
    color: #f85149;
    overflow-wrap: anywhere;
}

@media (
    max-width: 760px
) {
    .hosting-domain-card-header {
        flex-direction: column;
    }

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

.error-page {
    padding: 90px 0 80px;
}

.error-container {
    max-width: 720px;
}

.error-code {
    margin-bottom: 14px;
    color: #52525b;
    font-family:
        "SFMono-Regular",
        Consolas,
        "Liberation Mono",
        monospace;
    font-size: 12px;
}

.error-container h1 {
    margin: 0;
    color: #fafafa;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: -0.035em;
}

.error-container p {
    max-width: 560px;
    margin: 12px 0 0;
    color: #71717a;
    font-size: 12px;
    line-height: 1.65;
}

.error-actions {
    display: flex;
    gap: 10px;
    margin-top: 28px;
}

@media (
    max-width: 600px
) {
    .error-page {
        padding:
            60px 0
            40px;
    }

    .error-container h1 {
        font-size: 25px;
    }
}

.hosting-domains-page {
    overflow: hidden;
    border: 1px solid #27272a;
    border-radius: 8px;
    background: #0d0d0f;
}

.hosting-domains-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 20px;
    border-bottom: 1px solid #27272a;
}

.hosting-domains-heading h2 {
    margin: 0;
    color: #f4f4f5;
    font-size: 13px;
    font-weight: 600;
}

.hosting-domains-heading p {
    margin: 4px 0 0;
    color: #71717a;
    font-size: 10px;
}

.hosting-domains-count {
    color: #52525b;
    font-size: 9px;
}

.hosting-domain-add {
    padding: 14px 20px;
    border-bottom: 1px solid #27272a;
    background: #0a0a0c;
}

.hosting-domain-add form {
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 620px;
}

.hosting-domain-add-input {
    display: flex;
    flex: 1;
    min-width: 0;
    height: 34px;
    align-items: center;
    overflow: hidden;
    border: 1px solid #27272a;
    border-radius: 6px;
    background: #09090b;
}

.hosting-domain-add-input:focus-within {
    border-color: #52525b;
}

.hosting-domain-add-input span {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 0 0 11px;
    color: #52525b;
    font-size: 10px;
}

.hosting-domain-add-input input {
    width: 100%;
    height: 100%;
    min-width: 0;
    padding: 0 11px 0 2px;
    border: 0;
    outline: 0;
    background: transparent;
    color: #d4d4d8;
    font: inherit;
    font-size: 10px;
}

.hosting-domain-add-input input::placeholder {
    color: #3f3f46;
}

.hosting-domain-table-head,
.hosting-domain-main-row {
    display: grid;
    grid-template-columns:
        minmax(220px, 1fr)
        110px
        100px
        120px
        auto;
    align-items: center;
    gap: 14px;
}

.hosting-domain-table-head {
    padding: 9px 20px;
    border-bottom: 1px solid #18181b;
    color: #52525b;
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.hosting-domain-entry {
    border-bottom: 1px solid #27272a;
}

.hosting-domain-entry:last-child {
    border-bottom: 0;
}

.hosting-domain-main-row {
    min-height: 63px;
    padding: 10px 20px;
}

.hosting-domain-primary {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 10px;
}

.hosting-domain-icon {
    display: flex;
    width: 28px;
    height: 28px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border: 1px solid #27272a;
    border-radius: 5px;
    background: #111113;
    color: #71717a;
    font-size: 10px;
}

.hosting-domain-primary > div:last-child {
    min-width: 0;
}

.hosting-domain-hostname {
    display: block;
    overflow: hidden;
    color: #d4d4d8;
    font-size: 10px;
    font-weight: 500;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hosting-domain-hostname:hover {
    color: #fff;
}

.hosting-domain-secondary {
    display: block;
    margin-top: 3px;
    color: #52525b;
    font-size: 8px;
}

.hosting-domain-cell {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #71717a;
    font-size: 9px;
}

.hosting-domain-dot {
    width: 5px;
    height: 5px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #52525b;
}

.hosting-domain-dot.active {
    background: #22c55e;
}

.hosting-domain-dot.pending {
    background: #eab308;
}

.hosting-domain-badge {
    display: inline-flex;
    min-height: 21px;
    align-items: center;
    padding: 0 7px;
    border: 1px solid #3f3f46;
    border-radius: 999px;
    font-size: 8px;
    font-weight: 500;
}

.hosting-domain-badge-active {
    border-color: #14532d;
    color: #4ade80;
}

.hosting-domain-badge-pending {
    border-color: #713f12;
    color: #facc15;
}

.hosting-domain-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.hosting-domain-menu form {
    margin: 0;
}

.hosting-domain-action {
    padding: 0;
    border: 0;
    background: transparent;
    color: #71717a;
    cursor: pointer;
    font: inherit;
    font-size: 9px;
}

.hosting-domain-action:hover {
    color: #d4d4d8;
}

.hosting-domain-action.danger:hover {
    color: #f87171;
}

.hosting-domain-setup-panel {
    border-top: 1px solid #18181b;
    background: #09090b;
}

.hosting-domain-progress {
    display: flex;
    align-items: center;
    padding: 18px 20px;
    border-bottom: 1px solid #18181b;
}

.hosting-domain-progress-item {
    display: flex;
    min-width: 130px;
    align-items: center;
    gap: 9px;
}

.hosting-domain-progress-item > div {
    min-width: 0;
}

.hosting-domain-progress-item strong,
.hosting-domain-progress-item span {
    display: block;
}

.hosting-domain-progress-item strong {
    color: #a1a1aa;
    font-size: 9px;
    font-weight: 500;
}

.hosting-domain-progress-item > div > span {
    margin-top: 2px;
    color: #52525b;
    font-size: 8px;
}

.hosting-domain-progress-check {
    display: flex !important;
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border: 1px solid #3f3f46;
    border-radius: 50%;
    color: #71717a;
    font-size: 8px;
}

.hosting-domain-progress-item.complete
.hosting-domain-progress-check {
    border-color: #14532d;
    color: #4ade80;
}

.hosting-domain-progress-line {
    width: 42px;
    height: 1px;
    margin: 0 14px;
    background: #27272a;
}

.hosting-domain-progress-line.complete {
    background: #14532d;
}

.hosting-domain-setup-content {
    padding: 18px 20px 20px;
}

.hosting-domain-setup-title {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 14px;
}

.hosting-domain-setup-title h3 {
    margin: 0;
    color: #d4d4d8;
    font-size: 10px;
    font-weight: 500;
}

.hosting-domain-setup-title p {
    margin: 4px 0 0;
    color: #52525b;
    font-size: 9px;
}

.hosting-domain-records {
    overflow: hidden;
    border: 1px solid #27272a;
    border-radius: 6px;
}

.hosting-domain-record {
    display: grid;
    grid-template-columns:
        80px
        minmax(160px, 1fr)
        minmax(200px, 1.4fr)
        90px;
    align-items: center;
    min-height: 42px;
    border-bottom: 1px solid #18181b;
}

.hosting-domain-record:last-child {
    border-bottom: 0;
}

.hosting-domain-record > * {
    min-width: 0;
    padding: 0 11px;
}

.hosting-domain-record-head {
    min-height: 30px;
    background: #0d0d0f;
}

.hosting-domain-record-head span {
    color: #52525b;
    font-size: 7px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hosting-domain-record code {
    overflow: hidden;
    color: #a1a1aa;
    font-family:
        "SFMono-Regular",
        Consolas,
        "Liberation Mono",
        monospace;
    font-size: 8px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hosting-domain-record-type {
    color: #71717a !important;
}

.hosting-domain-record-value {
    color: #d4d4d8 !important;
}

.hosting-domain-record-status {
    color: #eab308;
    font-size: 8px;
    text-transform: capitalize;
}

.hosting-domain-record-status.active {
    color: #4ade80;
}

.hosting-domain-notice {
    display: flex;
    gap: 12px;
    margin-top: 12px;
    padding: 11px 12px;
    border: 1px solid #27272a;
    border-radius: 6px;
    background: #0d0d0f;
}

.hosting-domain-notice > span {
    color: #a1a1aa;
    font-size: 8px;
    font-weight: 600;
}

.hosting-domain-notice p {
    margin: 0;
    color: #71717a;
    font-size: 8px;
    line-height: 1.5;
}

.hosting-domain-sync-error {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 12px;
    padding: 10px 12px;
    border: 1px solid #7f1d1d;
    border-radius: 6px;
    background: rgba(127, 29, 29, 0.08);
}

.hosting-domain-sync-error strong {
    color: #f87171;
    font-size: 9px;
    font-weight: 500;
}

.hosting-domain-sync-error span {
    color: #a1a1aa;
    font-size: 8px;
}

.hosting-domain-ready-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 10px 20px;
    border-top: 1px solid #18181b;
    background: #09090b;
}

.hosting-domain-ready-row span {
    color: #71717a;
    font-size: 8px;
}

.hosting-domain-ready-row a {
    color: #a1a1aa;
    font-size: 8px;
}

.hosting-domain-ready-row a:hover {
    color: #fff;
}

.hosting-domain-empty {
    padding: 54px 20px;
    text-align: center;
}

.hosting-domain-empty-icon {
    display: flex;
    width: 32px;
    height: 32px;
    margin: 0 auto 12px;
    align-items: center;
    justify-content: center;
    border: 1px solid #27272a;
    border-radius: 6px;
    color: #52525b;
    font-size: 11px;
}

.hosting-domain-empty strong {
    display: block;
    color: #a1a1aa;
    font-size: 10px;
    font-weight: 500;
}

.hosting-domain-empty p {
    margin: 5px 0 0;
    color: #52525b;
    font-size: 9px;
}

@media (
    max-width: 900px
) {
    .hosting-domain-table-head {
        display: none;
    }

    .hosting-domain-main-row {
        grid-template-columns:
            minmax(0, 1fr)
            auto;
    }

    .hosting-domain-main-row
    > .hosting-domain-cell,
    .hosting-domain-main-row
    > div:nth-child(4) {
        display: none;
    }

    .hosting-domain-record {
        grid-template-columns:
            65px
            minmax(120px, 1fr)
            minmax(150px, 1.3fr);
    }

    .hosting-domain-record
    > :last-child {
        display: none;
    }
}

@media (
    max-width: 650px
) {
    .hosting-domains-heading {
        padding: 15px;
    }

    .hosting-domain-add {
        padding: 12px 15px;
    }

    .hosting-domain-add form {
        align-items: stretch;
        flex-direction: column;
    }

    .hosting-domain-main-row {
        padding: 12px 15px;
    }

    .hosting-domain-progress {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
        padding: 15px;
    }

    .hosting-domain-progress-line {
        display: none;
    }

    .hosting-domain-setup-content {
        padding: 15px;
    }

    .hosting-domain-setup-title {
        flex-direction: column;
    }

    .hosting-domain-records {
        overflow-x: auto;
    }

    .hosting-domain-record {
        width: 620px;
    }
}

.billing-page,
.billing-result-page {
    padding: 58px 0 80px;
}

.billing-container {
    max-width: 920px;
}

.billing-heading {
    margin-bottom: 24px;
}

.billing-heading h1,
.billing-checkout-main h1,
.billing-result h1 {
    margin: 0;
    color: #fafafa;
    font-size: 25px;
    font-weight: 600;
    letter-spacing: -0.035em;
}

.billing-heading p,
.billing-checkout-main > p,
.billing-result > p {
    margin: 7px 0 0;
    color: #71717a;
    font-size: 11px;
    line-height: 1.6;
}

.billing-section {
    margin-top: 14px;
    overflow: hidden;
    border: 1px solid #27272a;
    border-radius: 7px;
    background: #0d0d0f;
}

.billing-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 20px;
    border-bottom: 1px solid #27272a;
}

.billing-label {
    display: block;
    margin-bottom: 5px;
    color: #52525b;
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.billing-section-header h2 {
    margin: 0;
    color: #d4d4d8;
    font-size: 13px;
    font-weight: 500;
}

.billing-plan-badge {
    padding: 4px 8px;
    border: 1px solid #3f3f46;
    border-radius: 999px;
    color: #a1a1aa;
    font-size: 8px;
}

.billing-plan-badge.premium {
    border-color: #52525b;
    color: #fafafa;
}

.billing-plan-details,
.billing-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.billing-plan-details > div,
.billing-feature-grid > div {
    padding: 17px 20px;
    border-right: 1px solid #18181b;
    border-bottom: 1px solid #18181b;
}

.billing-plan-details span,
.billing-feature-grid span {
    display: block;
    color: #52525b;
    font-size: 8px;
}

.billing-plan-details strong,
.billing-feature-grid strong {
    display: block;
    margin-top: 5px;
    color: #d4d4d8;
    font-size: 10px;
    font-weight: 500;
}

.billing-actions {
    display: flex;
    gap: 8px;
    padding: 15px 20px;
}

.billing-checkout-container {
    max-width: 900px;
}

.billing-back {
    display: inline-block;
    margin-bottom: 20px;
    color: #71717a;
    font-size: 9px;
}

.billing-checkout {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        330px;
    gap: 34px;
}

.billing-checkout-main {
    padding-top: 12px;
}

.billing-checkout-features {
    margin-top: 28px;
    border-top: 1px solid #27272a;
}

.billing-checkout-features > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 0;
    border-bottom: 1px solid #18181b;
}

.billing-checkout-features span {
    color: #71717a;
    font-size: 9px;
}

.billing-checkout-features strong {
    color: #d4d4d8;
    font-size: 9px;
    font-weight: 500;
}

.billing-checkout-summary {
    padding: 20px;
    border: 1px solid #27272a;
    border-radius: 7px;
    background: #0d0d0f;
}

.billing-order-product {
    padding: 14px 0;
    border-bottom: 1px solid #27272a;
}

.billing-order-product strong {
    display: block;
    color: #e4e4e7;
    font-size: 11px;
    font-weight: 500;
}

.billing-order-product span {
    display: block;
    margin-top: 4px;
    color: #52525b;
    font-size: 8px;
}

.billing-order-note {
    padding: 14px 0;
    color: #71717a;
    font-size: 8px;
    line-height: 1.6;
}

.billing-checkout-button {
    width: 100%;
}

.billing-stripe-note {
    display: block;
    margin-top: 11px;
    color: #52525b;
    font-size: 7px;
    text-align: center;
}

.billing-result {
    max-width: 540px;
    padding-top: 50px;
    text-align: center;
}

.billing-result-icon {
    display: flex;
    width: 38px;
    height: 38px;
    margin: 0 auto 18px;
    align-items: center;
    justify-content: center;
    border: 1px solid #3f3f46;
    border-radius: 50%;
    color: #a1a1aa;
    font-size: 15px;
}

.billing-result-icon.success {
    border-color: #166534;
    color: #4ade80;
}

.billing-result-actions {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

@media (
    max-width: 720px
) {
    .billing-checkout {
        grid-template-columns: 1fr;
    }

    .billing-plan-details,
    .billing-feature-grid {
        grid-template-columns: 1fr;
    }

    .billing-actions {
        align-items: stretch;
        flex-direction: column;
    }
}

.billing-order-product {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.billing-order-price {
    color: #fafafa;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
}

.billing-order-price span {
    display: inline;
    margin: 0;
    color: #52525b;
    font-size: 8px;
    font-weight: 400;
}

.features-page {
    padding: 60px 0 100px;
}

.features-page > .section {
    padding-left: 0;
    padding-right: 0;
}

.features-page .section:first-of-type {
    margin-top: 18px;
}

.features-page .home-bottom {
    margin-top: 0;
}

@media (max-width: 700px) {
    .features-page {
        padding-top: 40px;
    }

    .features-page .page-header {
        align-items: flex-start;
    }

    .features-page .page-header .repository-actions,
    .features-page .home-bottom .repository-actions {
        width: 100%;
    }

    .features-page .page-header .button,
    .features-page .home-bottom .button {
        flex: 1;
    }
}

.api-page {
    padding: 60px 0 100px;
}

.api-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
    gap: 64px;
    align-items: center;
    min-height: 410px;
    padding-bottom: 70px;
}

.api-eyebrow {
    display: block;
    margin-bottom: 16px;
    color: #52525b;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.api-hero h1 {
    max-width: 620px;
    margin: 0;
    color: #fff;
    font-size: 48px;
    font-weight: 600;
    letter-spacing: -0.05em;
    line-height: 1.05;
}

.api-hero-copy > p {
    max-width: 560px;
    margin: 18px 0 0;
    color: #71717a;
    font-size: 14px;
    line-height: 1.7;
}

.api-hero-actions {
    display: flex;
    gap: 10px;
    margin-top: 28px;
}

.api-preview {
    overflow: hidden;
    border: 1px solid #27272a;
    border-radius: 8px;
    background: #09090b;
}

.api-preview-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 46px;
    padding: 10px 14px;
    border-bottom: 1px solid #27272a;
    background: #0d0d0f;
    color: #71717a;
    font-size: 11px;
}

.api-status-badge {
    padding: 3px 7px;
    border: 1px solid #3f3f46;
    border-radius: 999px;
    color: #a1a1aa;
    font-size: 10px;
}

.api-preview pre {
    margin: 0;
    padding: 22px;
    overflow-x: auto;
}

.api-preview code {
    color: #a1a1aa;
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
    font-size: 12px;
    line-height: 1.7;
}

.api-section-description {
    max-width: 600px;
    margin: 12px 0 0;
    color: #71717a;
    font-size: 14px;
    line-height: 1.6;
}

.api-info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid #27272a;
    border-bottom: 1px solid #27272a;
}

.api-info-block {
    min-height: 180px;
    padding: 28px;
    border-right: 1px solid #27272a;
}

.api-info-block:last-child {
    border-right: 0;
}

.api-info-block span,
.api-info-block strong {
    display: block;
}

.api-info-block span {
    color: #52525b;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.api-info-block strong {
    margin-top: 14px;
    color: #d4d4d8;
    font-size: 18px;
    font-weight: 600;
}

.api-info-block p {
    margin: 10px 0 0;
    color: #71717a;
    font-size: 12px;
    line-height: 1.65;
}

@media (max-width: 800px) {
    .api-hero {
        grid-template-columns: 1fr;
        gap: 38px;
        min-height: 0;
    }

    .api-hero h1 {
        font-size: 40px;
    }

    .api-info-grid {
        grid-template-columns: 1fr;
    }

    .api-info-block {
        min-height: 0;
        border-right: 0;
        border-bottom: 1px solid #27272a;
    }

    .api-info-block:last-child {
        border-bottom: 0;
    }
}

@media (max-width: 600px) {
    .api-page {
        padding-top: 40px;
    }

    .api-hero h1 {
        font-size: 34px;
    }

    .api-hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .api-hero-actions .button {
        width: 100%;
    }
}

.header {
    height: 64px;
    border-bottom: 1px solid #27272a;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    height: 100%;
}

.header-main,
.header-actions {
    display: flex;
    align-items: center;
    min-width: 0;
}

.header-main {
    gap: 32px;
}

.header-actions {
    gap: 14px;
}

.logo {
    flex-shrink: 0;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.logo:hover {
    color: #fff;
}

.nav {
    display: flex;
    align-items: center;
    gap: 24px;
    color: #a1a1aa;
    font-size: 13px;
}

.nav a {
    color: inherit;
    transition: color 0.15s ease;
}

.nav a:hover {
    color: #fff;
}

.header-auth {
    gap: 14px;
}

.header-auth .button {
    min-height: 34px;
}

.user-dropdown {
    position: relative;
}

.user-dropdown > summary {
    list-style: none;
}

.user-dropdown > summary::-webkit-details-marker {
    display: none;
}

.user-menu {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 36px;
    padding: 3px 7px 3px 3px;
    border: 1px solid transparent;
    border-radius: 6px;
    color: #a1a1aa;
    cursor: pointer;
    transition:
        border-color 0.15s ease,
        background 0.15s ease,
        color 0.15s ease;
}

.user-menu:hover,
.user-dropdown[open] .user-menu {
    border-color: #27272a;
    background: #18181b;
    color: #fff;
}

.user-avatar {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    border: 1px solid #27272a;
    border-radius: 50%;
    object-fit: cover;
}

.user-avatar-placeholder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #18181b;
    color: #a1a1aa;
    font-size: 12px;
    font-weight: 600;
}

.user-menu-name {
    max-width: 130px;
    overflow: hidden;
    color: #d4d4d8;
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-menu-chevron {
    flex-shrink: 0;
    color: #52525b;
    transition: transform 0.15s ease;
}

.user-dropdown[open] .user-menu-chevron {
    transform: rotate(180deg);
}

.user-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 200;
    width: 220px;
    overflow: hidden;
    border: 1px solid #27272a;
    border-radius: 8px;
    background: #0d0d0f;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.user-dropdown-header {
    padding: 13px 14px;
}

.user-dropdown-header span,
.user-dropdown-header strong {
    display: block;
}

.user-dropdown-header span {
    margin-bottom: 4px;
    color: #52525b;
    font-size: 10px;
}

.user-dropdown-header strong {
    overflow: hidden;
    color: #d4d4d8;
    font-size: 12px;
    font-weight: 500;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-dropdown-divider {
    height: 1px;
    background: #27272a;
}

.user-dropdown-item {
    display: block;
    width: 100%;
    padding: 9px 14px;
    border: 0;
    background: transparent;
    color: #a1a1aa;
    font-size: 12px;
    line-height: 1.3;
    text-align: left;
    transition:
        background 0.15s ease,
        color 0.15s ease;
}

.user-dropdown-item:hover {
    background: #18181b;
    color: #fff;
}

.user-dropdown-logout {
    margin: 0;
}

.user-dropdown-button {
    cursor: pointer;
}

.mobile-header-menu {
    position: relative;
    display: none;
}

.mobile-header-menu > summary {
    list-style: none;
}

.mobile-header-menu > summary::-webkit-details-marker {
    display: none;
}

.mobile-header-trigger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 34px;
    height: 34px;
    padding: 8px;
    border: 1px solid #27272a;
    border-radius: 6px;
    background: transparent;
    cursor: pointer;
}

.mobile-header-trigger span {
    width: 100%;
    height: 1px;
    background: #a1a1aa;
}

.mobile-header-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 200;
    width: 210px;
    overflow: hidden;
    border: 1px solid #27272a;
    border-radius: 8px;
    background: #0d0d0f;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.mobile-header-dropdown a {
    display: block;
    padding: 10px 14px;
    color: #a1a1aa;
    font-size: 12px;
}

.mobile-header-dropdown a:hover {
    background: #18181b;
    color: #fff;
}

.mobile-header-divider {
    height: 1px;
    background: #27272a;
}

@media (max-width: 900px) {
    .header-nav {
        display: none;
    }

    .mobile-header-menu {
        display: block;
    }
}

@media (max-width: 640px) {
    .header {
        height: 58px;
    }

    .header-inner {
        gap: 14px;
    }

    .header-main {
        gap: 14px;
    }

    .user-menu-name,
    .user-menu-chevron {
        display: none;
    }

    .user-menu {
        padding: 3px;
    }

    .header-auth > a:not(.button) {
        display: none;
    }

    .header-actions {
        gap: 8px;
    }
}

/* Databases */

.database-page {
    padding: 56px 0 100px;
}

.database-container {
    max-width: 1100px;
}

.database-create-container {
    max-width: 760px;
}

.database-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
}

.database-eyebrow {
    display: block;
    margin-bottom: 8px;
    color: #52525b;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.database-back {
    display: inline-block;
    margin-bottom: 14px;
    color: #71717a;
    font-size: 12px;
}

.database-back:hover {
    color: #d4d4d8;
}

.database-top h1 {
    margin: 0;
    color: #f4f4f5;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: -0.035em;
}

.database-top p {
    margin: 8px 0 0;
    color: #71717a;
    font-size: 13px;
}

.database-summary {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 30px;
    overflow: hidden;
    border: 1px solid #27272a;
    border-radius: 8px;
    background: #0d0d0f;
}

.database-summary > div {
    padding: 18px;
    border-right: 1px solid #27272a;
}

.database-summary > div:last-child {
    border-right: 0;
}

.database-summary span,
.database-summary strong {
    display: block;
}

.database-summary span {
    color: #52525b;
    font-size: 9px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.database-summary strong {
    margin-top: 7px;
    color: #d4d4d8;
    font-size: 13px;
    font-weight: 500;
}

.database-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.database-card {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(400px, 1.6fr) auto;
    align-items: center;
    gap: 24px;
    padding: 18px;
    border: 1px solid #27272a;
    border-radius: 8px;
    background: #0d0d0f;
}

.database-card-main {
    display: flex;
    align-items: center;
    gap: 13px;
    min-width: 0;
}

.database-card-icon,
.database-empty-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid #27272a;
    border-radius: 7px;
    background: #18181b;
    color: #71717a;
    font-family: monospace;
}

.database-card-icon {
    width: 34px;
    height: 34px;
    font-size: 9px;
}

.database-card-title {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.database-card-title h2 {
    margin: 0;
    overflow: hidden;
    color: #e4e4e7;
    font-size: 14px;
    font-weight: 500;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.database-card-main p {
    margin: 4px 0 0;
    color: #52525b;
    font-size: 11px;
}

.database-status {
    display: inline-flex;
    padding: 2px 6px;
    border: 1px solid #3f3f46;
    border-radius: 999px;
    color: #a1a1aa;
    font-size: 9px;
    text-transform: capitalize;
}

.database-status-active,
.database-status-running {
    border-color: #1f3b2a;
    background: #0d1a12;
    color: #86efac;
}

.database-status-failed {
    border-color: #3f1d1d;
    background: #180d0d;
    color: #fca5a5;
}

.database-card-info {
    display: grid;
    grid-template-columns: 1.4fr 0.5fr 1fr 1fr;
    gap: 16px;
    min-width: 0;
}

.database-card-info > div {
    min-width: 0;
}

.database-card-info span,
.database-details span {
    display: block;
    margin-bottom: 5px;
    color: #52525b;
    font-size: 9px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.database-card-info code {
    display: block;
    overflow: hidden;
    color: #a1a1aa;
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.database-card-actions {
    display: flex;
    gap: 8px;
}

.database-empty {
    padding: 64px 24px;
    border: 1px dashed #27272a;
    border-radius: 8px;
    text-align: center;
}

.database-empty-icon {
    width: 42px;
    height: 42px;
    margin: 0 auto 16px;
    font-size: 10px;
}

.database-empty h2 {
    margin: 0;
    color: #e4e4e7;
    font-size: 17px;
    font-weight: 500;
}

.database-empty p {
    max-width: 450px;
    margin: 8px auto 20px;
    color: #71717a;
    font-size: 12px;
    line-height: 1.6;
}

.database-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 40px;
    border-top: 1px solid #27272a;
    border-bottom: 1px solid #27272a;
}

.database-info > div {
    padding: 24px;
    border-right: 1px solid #27272a;
}

.database-info > div:last-child {
    border-right: 0;
}

.database-info span {
    display: block;
    margin-bottom: 10px;
    color: #52525b;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.database-info h3 {
    margin: 0;
    color: #d4d4d8;
    font-size: 13px;
    font-weight: 500;
}

.database-info p {
    margin: 7px 0 0;
    color: #71717a;
    font-size: 11px;
    line-height: 1.6;
}

.database-info code {
    display: inline-block;
    margin-top: 12px;
    padding: 5px 7px;
    border: 1px solid #27272a;
    border-radius: 5px;
    background: #09090b;
    color: #a1a1aa;
    font-size: 10px;
}

.database-create-panel {
    border: 1px solid #27272a;
    border-radius: 8px;
    background: #0d0d0f;
}

.database-create-form {
    display: flex;
    flex-direction: column;
    gap: 26px;
    padding: 24px;
}

.database-field label {
    display: block;
    margin-bottom: 8px;
    color: #d4d4d8;
    font-size: 12px;
    font-weight: 500;
}

.database-field input[type="text"] {
    width: 100%;
}

.database-field small {
    display: block;
    margin-top: 7px;
    color: #52525b;
    font-size: 10px;
}

.database-engine-selector {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.database-engine-option {
    margin: 0 !important;
    cursor: pointer;
}

.database-engine-option input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.database-engine-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border: 1px solid #27272a;
    border-radius: 7px;
    background: #09090b;
    transition:
        border-color 0.15s ease,
        background 0.15s ease;
}

.database-engine-option:hover .database-engine-card {
    border-color: #3f3f46;
}

.database-engine-option input:checked + .database-engine-card {
    border-color: #52525b;
    background: #18181b;
}

.database-engine-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    border: 1px solid #27272a;
    border-radius: 6px;
    color: #a1a1aa;
    font-family: monospace;
    font-size: 9px;
}

.database-engine-copy {
    display: flex;
    flex-direction: column;
}

.database-engine-copy strong {
    color: #d4d4d8;
    font-size: 12px;
    font-weight: 500;
}

.database-engine-copy small {
    margin-top: 4px;
    color: #52525b;
    font-size: 10px;
}

.database-create-notice {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 13px 14px;
    border: 1px solid #27272a;
    border-radius: 6px;
    background: #09090b;
}

.database-create-notice strong {
    color: #a1a1aa;
    font-size: 11px;
    font-weight: 500;
}

.database-create-notice span {
    color: #52525b;
    font-size: 10px;
}

.database-create-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

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

.database-details > div {
    min-width: 0;
}

.database-details code {
    display: block;
    overflow: hidden;
    color: #d4d4d8;
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 950px) {
    .database-card {
        grid-template-columns: 1fr;
    }

    .database-card-info {
        grid-template-columns: repeat(2, 1fr);
    }

    .database-card-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 760px) {
    .database-summary {
        grid-template-columns: repeat(2, 1fr);
    }

    .database-summary > div:nth-child(2) {
        border-right: 0;
    }

    .database-summary > div:nth-child(-n+2) {
        border-bottom: 1px solid #27272a;
    }

    .database-info {
        grid-template-columns: 1fr;
    }

    .database-info > div {
        border-right: 0;
        border-bottom: 1px solid #27272a;
    }

    .database-info > div:last-child {
        border-bottom: 0;
    }
}

@media (max-width: 600px) {
    .database-page {
        padding-top: 36px;
    }

    .database-top {
        align-items: stretch;
        flex-direction: column;
    }

    .database-summary {
        grid-template-columns: 1fr;
    }

    .database-summary > div {
        border-right: 0;
        border-bottom: 1px solid #27272a;
    }

    .database-summary > div:last-child {
        border-bottom: 0;
    }

    .database-card-info {
        grid-template-columns: 1fr;
    }

    .database-card-actions {
        flex-direction: column;
    }

    .database-engine-selector {
        grid-template-columns: 1fr;
    }

    .database-details {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    margin-top: 90px;
    border-top: 1px solid #1f1f22;
}

.footer .container {
    max-width: 1180px;
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(240px, 1.3fr) 2fr;
    gap: 90px;
    padding: 54px 0 44px;
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    display: inline-block;

    color: #f4f4f5;

    font-size: 18px;
    font-weight: 650;
    letter-spacing: -0.03em;

    text-decoration: none;

    transition:
        color 0.15s ease,
        opacity 0.15s ease;
}

.footer-logo:hover {
    color: #ffffff;
}

.footer-description {
    margin: 12px 0 0;

    color: #a1a1aa;

    font-size: 13px;
    line-height: 1.6;
}

.footer-subtext {
    margin: 8px 0 0;

    color: #52525b;

    font-size: 11px;
    line-height: 1.6;
}

.footer-links {
    display: grid;

    grid-template-columns:
        repeat(
            3,
            minmax(
                120px,
                1fr
            )
        );

    gap: 46px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-column strong {
    margin-bottom: 14px;

    color: #d4d4d8;

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 0.03em;
}

.footer-column a {
    position: relative;

    margin: 5px 0;

    color: #71717a;

    font-size: 12px;
    line-height: 1.6;

    text-decoration: none;

    transition:
        color 0.15s ease,
        transform 0.15s ease;
}

.footer-column a:hover {
    color: #e4e4e7;
    transform: translateX(2px);
}

.footer-divider {
    width: 100%;
    height: 1px;

    background: #1f1f22;
}

.footer-bottom {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 20px 0 24px;

    color: #52525b;

    font-size: 10px;
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.footer-status {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: #71717a;
}

.footer-status-dot {
    display: block;

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #4ade80;

    box-shadow:
        0 0 0 3px rgba(74, 222, 128, 0.08);
}

.footer-bottom-links {
    display: flex;

    align-items: center;

    gap: 18px;
}

.footer-bottom-links a {
    color: #52525b;

    text-decoration: none;

    transition:
        color 0.15s ease;
}

.footer-bottom-links a:hover {
    color: #a1a1aa;
}

@media (
    max-width: 820px
) {

    .footer-main {
        grid-template-columns: 1fr;

        gap: 40px;

        padding-top: 42px;
    }

    .footer-brand {
        max-width: 420px;
    }

    .footer-links {
        grid-template-columns:
            repeat(
                3,
                1fr
            );

        gap: 24px;
    }

}

@media (
    max-width: 560px
) {

    .footer {
        margin-top: 60px;
    }

    .footer-main {
        padding:
            36px
            0
            32px;
    }

    .footer-links {
        grid-template-columns:
            repeat(
                2,
                1fr
            );

        row-gap: 30px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-bottom-left {
        align-items: flex-start;
        flex-direction: column;

        gap: 10px;
    }

}
