@import url('./fonts.css');

:root {
    --body-font: 'JetBrains Mono', monospace;
    --heading-font: 'Inter', Arial, Helvetica, sans-serif;
    --body-font-size: 16px;
    --background: #000000;
    --foreground: #ffffff;
    --muted-foreground: #999999;
    --card-background: #1a1a1a;
    --card-background-transparent: transparent;
    --card-border: #333333;
    --card-border-active: #444444;
    --section-background-1: #000000;
    --section-background-2: #111111;
    --section-background-3: #6eb7ee;
    --input-background: #2a2a2a;
    --input-focus: #3a3a3a;
    --button-background: rgba(255, 255, 255, 0.08);
    --button-hover: rgba(255, 255, 255, 0.15);
    --golden-ratio: 1.618;
    --standard-gap: 1.618rem;
    --standard-gap-large: calc(var(--standard-gap) * var(--golden-ratio));
    --standard-gap-big: calc(var(--standard-gap-large) * var(--golden-ratio));
    --standard-gap-huge: calc(var(--standard-gap-big) * var(--golden-ratio));
    --standard-gap-small: calc(var(--standard-gap) / var(--golden-ratio));
    --standard-gap-tiny: calc(var(--standard-gap-small) / var(--golden-ratio));
    --accent-color: #6eb7ee;
    --active-color: #28a745;
    --error-color: #dc3545;
    --nav-background: rgba(0, 0, 0, 0.95);
    --dynamic-height: clamp(44px, calc(44px + (52 - 44) * ((100vw - 320px) / (1296 - 320))), 52px);
    --button-size: 3rem;
    --button-margin: 2rem;
    --chart-bg: #fff;
    --chart-line1: #3498db;
    --chart-line5: #e67e22;
    --chart-line15: #8e44ad;
    --chart-axis: #bbb;
    --chart-grid: #eee;
    --chart-label: #444;
    --chart-legend: #222;
    --button-background-inactive: rgba(255,255,255,0.9);
}

[data-theme="light"] {
    --background: #ffffff;
    --foreground: #050505;
    --muted-foreground: #767676;
    --card-background: #efefef;
    --card-background-transparent: transparent;
    --card-border: #dddddd;
    --card-border-active: #444444;
    --section-background-1: #ffffff;
    --section-background-2: #f9f9f9;
    --section-background-3: #6eb7ee;
    --input-background: #ffffff;
    --input-focus: #ffffff;
    --button-background: rgba(0, 0, 0, 0.05);
    --button-hover: rgba(0, 0, 0, 0.1);
    --nav-background: rgba(255, 255, 255, 0.95);
    --chart-bg: #fff;
    --chart-line1: #3498db;
    --chart-line5: #e67e22;
    --chart-line15: #8e44ad;
    --chart-axis: #bbb;
    --chart-grid: #eee;
    --chart-label: #444;
    --chart-legend: #222;
    --accent-color: #6eb7ee;
    --active-color: #28a745;
    --error-color: #dc3545;
}

@media (prefers-color-scheme: light) {
    :root:not([data-theme]) {
        --background: #ffffff;
        --foreground: #050505;
        --muted-foreground: #767676;
        --card-background: #efefef;
        --card-background-transparent: transparent;
        --card-border: #dddddd;
        --card-border-active: #3a3a3a;
        --section-background-1: #ffffff;
        --section-background-2: #f9f9f9;
        --section-background-3: #6eb7ee;
        --input-background: #ffffff;
        --input-focus: #ffffff;
        --button-background: rgba(0, 0, 0, 0.05);
        --button-hover: rgba(0, 0, 0, 0.1);
        --nav-background: rgba(255, 255, 255, 0.95);
        --chart-bg: #fff;
        --chart-line1: #3498db;
        --chart-line5: #e67e22;
        --chart-line15: #8e44ad;
        --chart-axis: #bbb;
        --chart-grid: #eee;
        --chart-label: #444;
        --chart-legend: #222;
        --accent-color: #6eb7ee;
        --active-color: #28a745;
        --error-color: #dc3545;
    }
}

@media (prefers-color-scheme: dark) {
  :root {
    --chart-bg: #181c22;
    --chart-line1: #6ec6ff;
    --chart-line5: #ffb74d;
    --chart-line15: #b39ddb;
    --chart-axis: #444a55;
    --chart-grid: #23272f;
    --chart-label: #cfd8dc;
    --chart-legend: #fff;
  }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 1rem;
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    background-color: var(--background);
    color: var(--foreground);
    line-height: var(--golden-ratio);
    text-transform: lowercase;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.container {
    width: 100%;
    max-width: 1230px;
    margin: 0 auto;
    padding: var(--standard-gap) var(--standard-gap-small);
}

.container > p {
    margin-bottom: var(--standard-gap);
}

.menu-button {
    position: fixed;
    top: var(--button-margin);
    right: var(--button-margin);
    width: var(--dynamic-height);
    height: var(--dynamic-height);
    background-color: var(--button-background);
    color: var(--foreground);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.menu-button:hover {
    background-color: var(--button-hover);
}

.menu-icon {
    width: 24px;
    height: 24px;
}

.dropdown-menu {
    position: fixed;
    top: calc(var(--button-margin) + var(--button-size) + 0.5rem);
    right: var(--button-margin);
    background-color: var(--card-background);
    border-radius: 16px;
    padding: var(--standard-gap-tiny);
    display: none;
    width: 100%;
    max-width: 222px;
    flex-direction: column;
    z-index: 1000;
}

.dropdown-menu.show {
    display: flex;
    gap: var(--standard-gap-tiny);
}

.menu-item {
    padding: 0 var(--standard-gap-small);
    color: var(--foreground);
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
    transition: background-color 0.3s ease;
    border-radius: 8px;
    width: 100%;
    height: var(--dynamic-height);
    line-height: var(--dynamic-height);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.03em;
}

.menu-item:hover {
    background-color: var(--button-hover);
}

.back-to-top {
    position: fixed;
    bottom: var(--button-margin);
    right: var(--button-margin);
    background-color: var(--button-background);
    color: var(--foreground);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--dynamic-height);
    height: var(--dynamic-height);
    opacity: 0;
    pointer-events: none;
    z-index: 1000;
}

.back-to-top:hover {
    background-color: var(--button-hover);
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
}

header {
    padding: var(--standard-gap-huge) 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    background-color: var(--section-background-1);
}

header > .container {
    margin: 0;
    text-align: center;
}

header > .container h1 {
    color: var(--foreground);
}

header > .container > .logo-link > .logo {
    width: clamp(5rem, 6vw, 7.5rem);
    height: clamp(5rem, 6vw, 7.5rem);
    max-width: 120px;
    max-height: 120px;
    object-fit: contain;
}

header > .container > h1 > a {
    color: var(--foreground);
}

header > .container > p {
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    letter-spacing: -0.05em;
    line-height: var(--golden-ratio);
}

h1 {
    margin-bottom: var(--standard-gap-tiny);
}

h2 {
    margin-bottom: var(--standard-gap-small);
    text-align: center;
}

h3 {
    margin-bottom: var(--standard-gap-tiny);
}

h1 { font-size: clamp(3rem, 5vw, 6rem); }
h2 { font-size: clamp(2rem, 4vw, 4rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1rem; }

p {
    font-size: 1rem;
    line-height: var(--golden-ratio);
    color: var(--muted-foreground);
    margin: 0 auto;
}

.services-section, .service-detail, .process-section, .contact-section, .social-section, .about-section, .faq-section, .footer-section, .document-section, .error-section, .status-section, .cta-section {
    padding: var(--standard-gap-large) 0 var(--standard-gap-big) 0;
}

.error-section {
    text-align: center;
}

main section:nth-child(odd) {
    background-color: var(--section-background-1);
}

main section:nth-child(even) {
    background-color: var(--section-background-2);
}

.services, .process-steps, .about-grid, .status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--standard-gap-small);
}

.faq-container .card {
    padding: 0;
}

.card {
    padding: var(--standard-gap);
    background-color: var(--background);
    background: linear-gradient(135deg, rgba(255,255,255,0.03) 6%, rgba(255,255,255,0.01) 18%, var(--background) 100%);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 1px 6px rgba(0,0,0,0.06);
    transition: box-shadow 0.2s ease, transform 0.15s ease, border-color 0.2s ease;
    pointer-events: auto;
    cursor: default;
}

.card.hyper {
    background-color: var(--card-background-transparent);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.005) 5%, var(--background) 100%);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.card.hyper {
    cursor: pointer;
}

.card.hyper:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 6px 24px rgba(110,183,238,0.10);
    border-color: var(--accent-color);
}

.card:hover {
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.card.active {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 6px 24px rgba(110,183,238,0.10);
    border-color: var(--accent-color);
}

.card h3 {
    width: 100%;
    color: var(--foreground);
    display: flex;
    align-items: center;
}

.card p, .footer-card p {
    font-size: 0.875rem;
}

.card p {
    margin-bottom: var(--standard-gap-small);
}

.card span.learn-more {
    margin-top: auto;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    text-align: right;
    width: 100%;
    cursor: pointer;
    transition: text-decoration 0.3s ease;
}

.contact-form {
    margin: 0 auto;
    padding: 1.5rem;
    max-width: 620px;
}

.form-group {
    width: 100%;
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 1rem;
    color: var(--foreground);
    font-size: 1.25rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    height: var(--dynamic-height);
    padding: 0 0.75rem;
    border: 1px solid var(--card-border);
    background-color: var(--section-background-2);
    color: var(--foreground);
    font-family: var(--body-font);
    font-size: 0.875rem;
    border-radius: 8px;
    transition: border-color 0.3s ease;
}

.form-group textarea {
    height: auto;
    padding: 0.75rem;
    margin-bottom: 0;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 6px 24px rgba(110,183,238,0.10), 0 0 2px 1.5px rgba(110,183,238,0.07) inset;
}

.form-group input.success,
.form-group textarea.success {
    border-color: var(--active-color) !important;
    box-shadow: 0 6px 24px rgba(40,167,69,0.10), 0 0 2px 1.5px rgba(40,167,69,0.07) inset;
}

.form-group input.error,
.form-group textarea.error {
    border-color: var(--error-color) !important;
    box-shadow: 0 6px 24px rgba(220,53,69,0.10), 0 0 2px 1.5px rgba(220,53,69,0.07) inset;
}

.form-message {
    font-size: 0.95em;
    margin-top: 0.25rem;
    min-height: 1.2em;
    color: var(--error-color);
    transition: color 0.3s;
}

.form-message.form-success {
    color: var(--active-color);
    font-weight: 600;
    text-align: center;
    margin-top: 1rem;
}

button {
    font-family: var(--body-font);
    background: none;
    color: inherit;
    border: none;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-transform: lowercase;
    height: var(--dynamic-height);
}

.cta-btn {
    background: var(--background);
    color: var(--accent-color);
    width: 100%;
    max-width: 222px;
    height: var(--dynamic-height);
    border: 2px solid var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.03em;
    margin: 0 auto;
    border-radius: 8px;
    text-transform: uppercase;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 12px rgba(110,183,238,0.10);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
}

.cta-btn:hover, .cta-btn:focus {
    background: var(--background);
    box-shadow: 0 6px 24px rgba(110,183,238,0.16);
    transform: translateY(-1px) scale(1.02);
}

.accent-btn {
    background: var(--accent-color);
    color: var(--background);
    width: 100%;
    max-width: 222px;
    border: none;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.03em;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
    box-shadow: 0 2px 12px rgba(110,183,238,0.10);
}

.accent-btn:hover, .accent-btn:focus {
    color: var(--background);
    box-shadow: 0 6px 24px rgba(110,183,238,0.16);
    transform: translateY(-1px) scale(1.02);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: var(--standard-gap-small);
    flex-wrap: wrap;
}

.social-link {
    background-color: var(--card-background-transparent);
    border: 1px solid var(--card-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: var(--dynamic-height);
    aspect-ratio: 1 / 1;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 6px 24px rgba(110,183,238,0.10);
    border-color: var(--accent-color);
}

.social-icon {
    width: 50%;
    height: 50%;
    fill: var(--foreground);
}

footer {
    text-align: center;
    padding: 0;
    background: var(--card-background);
}

footer p {
    color: var(--muted-foreground);
}

footer a {
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.875rem;
}

footer a:hover {
    color: var(--foreground);
}

.faq-container {
    max-width: 620px;
    margin: 0 auto;
    display: grid;
    gap: var(--standard-gap-small);
}

.footer-bottom p {
    font-size: 0.75rem;
    padding: var(--standard-gap-small) 0;
}

.faq-item {
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    padding: var(--standard-gap);
    background: none;
    border: none;
    color: var(--foreground);
    font-family: var(--body-font);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: lowercase;
    pointer-events: auto;
    height: auto;
    white-space: normal;
    word-break: break-word;
    align-items: flex-start;
}

button.faq-question {
    transition: none;
}

.faq-question[aria-expanded="true"] {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.faq-question span:first-child {
    flex: 1 1 auto;
    white-space: normal;
    word-break: break-word;
    padding-right: var(--standard-gap);
}

.faq-icon {
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
}

.faq-answer.active {
    max-height: 500px;
    padding: 0 var(--standard-gap) var(--standard-gap) var(--standard-gap);
}

.faq-answer p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.document-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--background);
    padding: 2rem;
}

.document-intro {
    padding-bottom: var(--standard-gap-big);
}

.document-intro p:first-child {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--foreground);
}

.document-intro p:last-child {
    color: var(--muted-foreground);
    margin-bottom: 0;
}

.document-section-item {
    margin-bottom: 3rem;
}

.document-section-item p {
    margin-bottom: var(--standard-gap);
    color: var(--muted-foreground);
}

.document-section-item p:last-child {
    margin-bottom: 0;
}

.document-section-item p strong {
    color: var(--foreground);
    font-weight: 600;
}

.document-section-item ul {
    margin: 1.5rem 0;
    padding-left: 2.5rem;
}

.document-section-item li {
    margin-bottom: 0.8rem;
    color: var(--muted-foreground);
}

.document-contact {
    padding-top: var(--standard-gap-big);
    text-align: center;
}

.document-contact h3 {
    color: var(--foreground);
    font-size: 1.2rem;
}

.document-contact p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    font-style: italic;
    margin-bottom: 0;
}

.document-contact a {
    color: var(--accent-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-bottom-color 0.3s ease;
}

.document-contact a:hover {
    border-bottom-color: var(--accent-color);
}

.footer-bottom {
  text-align: center;
  color: var(--muted-foreground);
  padding: 1rem 0;
  background: var(--section-background-2);
}

.footer-section {
  padding: 0;
}

.footer-cards {
    display: grid;
    grid-template-columns: minmax(250px, 1fr) minmax(250px, auto) auto;
    gap: 1rem;
}

.footer-card {
    border-radius: 16px;
    padding: 1.5rem;
}

.footer-cards > .footer-card:nth-child(3) {
    width: auto;
    max-width: none;
    justify-self: end;
}

.footer-card ul {
    list-style: none;
    padding: 0;
}

.footer-card ul li {
    line-height: var(--golden-ratio);
}

.footer-card:nth-of-type(2) {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr 1fr;
}

.footer-contact-buttons {
    display: flex;
    gap: var(--standard-gap-tiny);
    justify-content: center;
    margin: 1rem 0;
}

.footer-contact-btn {
    background-color: var(--button-background);
    border: none;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--foreground);
    font-size: 1.1rem;
    transition: background-color 0.3s, color 0.3s;
    cursor: pointer;
    text-decoration: none;
}

.footer-contact-btn:hover {
    background-color: var(--button-hover);
}

.footer-contact-btn svg {
    width: 1.1rem;
    height: 1.1rem;
    display: block;
}

.accent-btn {
    background: var(--accent-color);
    color: var(--background);
    width: 100%;
    max-width: 222px;
    border: none;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.03em;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
    box-shadow: 0 2px 12px rgba(110,183,238,0.10);
}

.accent-btn:hover, .accent-btn:focus {
    background: #8ccaf3;
    color: var(--background);
    box-shadow: 0 6px 24px rgba(110,183,238,0.16);
    transform: translateY(-1px) scale(1.02);
}

@media (max-width: 1100px) {
    .footer-cards > .footer-card:nth-child(1) {
        grid-column: 1 / -1;
    }
}

@media (max-width:675px) {
    .services, .process-steps, .about-grid, .status-grid, .footer-cards {
        grid-template-columns: 1fr;
    }
    .footer-cards > .footer-card:nth-child(3) {
        justify-self: center;
    }
}

@media (max-width: 330px) {
    .footer-card:nth-of-type(2) {
        grid-template-columns: 1fr;
    }
}

.status-value {
    font-size: 2.1rem;
    font-weight: 600;
    color: var(--foreground);
    text-align: center;
    margin-bottom: 0.2rem;
    letter-spacing: 0.01em;
}

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

.theme-button {
    background-color: var(--button-background);
    border: none;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--foreground);
    font-size: 1.1rem;
    transition: background-color 0.3s, color 0.3s;
    cursor: pointer;
    text-decoration: none;
    box-shadow: none;
    padding: 0;
    font-family: inherit;
    font-size: inherit;
    font-weight: normal;
    text-transform: none;
    margin: 0 auto;
}

.theme-button:hover {
    background-color: var(--button-hover);
}

.theme-button.active {
    background-color: var(--foreground);
    color: var(--background);
}

.theme-icon {
    width: 1.1rem;
    height: 1.1rem;
    fill: currentColor;
    stroke: currentColor;
    stroke-width: 1.5;
}

.cta-section {
    text-align: center;
    background-color: var(--section-background-3) !important;
}

.cta-section h2 {
    color: var(--background);
    text-transform: lowercase;
}

.cta-section p {
    color: var(--background);
}

/* Status Page Chart Styles */
.status-chart-flex {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 0;
}
.status-chart-row {
    display: flex;
    align-items: flex-end;
}
.status-y-labels {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 56px;
    height: 50px;
    margin-right: 8px;
}
.status-x-labels {
    display: flex;
    margin-left: 64px;
    margin-top: 2px;
}
.status-legend {
    display: flex;
    align-items: center;
    margin-left: 56px;
    font-size: 10px;
    color: #888;
    margin-top: 2px;
}
.status-legend-color {
    width: 12px;
    height: 8px;
    border-radius: 2px;
    margin-right: 4px;
    display: inline-block;
}
.status-legend-color.load1 { background: #e74c3c; }
.status-legend-color.load5 { background: #f1c40f; margin-left: 12px; }
.status-legend-color.load15 { background: #2ecc71; margin-left: 12px; }
.status-legend-color.bans { background: var(--accent-color); }
.status-legend-label {
    margin-right: 8px;
}
.status-x-desc {
    margin-left: 56px;
    font-size: 10px;
    color: #888;
}
.status-bars {
    display: flex;
    align-items: flex-end;
    height: 50px;
}
.status-bar {
    position: relative;
    width: 8px;
    margin-right: 2px;
    display: inline-block;
}
.status-bar-inner {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 8px;
    background: #3498db;
    border-radius: 2px 2px 0 0;
}
.status-svg-wrap {
    position: relative;
    width: 300px;
    height: 50px;
}
.status-x-label {
    width: 10px;
    font-size: 9px;
    color: #888;
    text-align: center;
}
.status-y-label {
    height: 10px;
    line-height: 1;
    font-size: 10px;
    text-align: right;
    color: #888;
}
.status-bar-x-label {
    width: 8px;
    margin-right: 2px;
    font-size: 9px;
    color: #888;
    text-align: center;
}

.process-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.8em;
    height: 1.8em;
    margin-right: 0.5em;
    font-size: 1em;
    font-weight: 600;
    color: var(--foreground);
    background: transparent;
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    letter-spacing: 0;
    transition: color 0.2s, border-color 0.2s;
}