* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #08090c;
    --fg: #e5e7eb;
    --fg-muted: #6b7f94;
    --accent: #38bdf8;
    --border: #1f2937;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg);
    color: var(--fg);
    font-size: 16px;
    line-height: 1.6;
    font-weight: 300;
}

::selection {
    background: var(--accent);
    color: var(--bg);
}

/* Skip to content link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    padding: 0.5rem 1rem;
    background: var(--accent);
    color: var(--bg);
    font-family: 'Space Mono', monospace;
    font-size: 0.8rem;
    text-decoration: none;
    border-radius: 0 0 4px 4px;
    z-index: 200;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 0;
}

/* Focus styles */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.logo:focus-visible {
    outline-offset: 4px;
}

.status-badge:focus-visible {
    outline-offset: 4px;
    border-radius: 12px;
}

#constellation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.75;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 4rem;
    background: transparent;
    transition: background 0.4s ease, backdrop-filter 0.4s ease;
}

nav.scrolled {
    background: rgba(8, 9, 12, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.logo {
    font-family: 'Space Mono', monospace;
    font-size: 1rem;
    font-weight: 700;
    color: var(--fg);
    text-decoration: none;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    color: var(--fg);
    text-decoration: none;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.5;
}

/* Main content */
main {
    position: relative;
    z-index: 1;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 4rem;
    position: relative;
}

.hero-content {
    max-width: 900px;
}

.tagline {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: var(--fg-muted);
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.hero h1 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
}

.hero-sub {
    font-size: 1.125rem;
    color: var(--fg-muted);
    max-width: 500px;
    line-height: 1.7;
}

.scroll-hint {
    position: absolute;
    bottom: 4rem;
    left: 4rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.scroll-hint span {
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--fg-muted);
}

.scroll-line {
    width: 60px;
    height: 1px;
    background: var(--border);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--fg);
    animation: scroll-anim 2s ease-in-out infinite;
}

@keyframes scroll-anim {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

/* Section label */
.section-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--fg-muted);
    display: flex;
    gap: 2rem;
    margin-bottom: 4rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

/* Work/Services */
.work {
    padding: 10rem 4rem;
    border-top: 1px solid var(--border);
}

.services-list {
    display: flex;
    flex-direction: column;
}

.service-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 4rem;
    padding: 4rem 0;
    border-bottom: 1px solid var(--border);
    transition: background 0.3s;
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.02);
}

.service-number {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    color: var(--fg-muted);
}

.service-content h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.service-content p {
    color: var(--fg-muted);
    max-width: 600px;
    line-height: 1.8;
}

/* Stats */
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--border);
}

.stat {
    padding: 6rem 4rem;
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat:last-child {
    border-right: none;
}

.stat-value {
    font-family: 'Space Mono', monospace;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.stat-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--fg-muted);
}

/* About */
.about {
    padding: 10rem 4rem;
    border-top: 1px solid var(--border);
}

.about-content {
    max-width: 800px;
}

.large-text {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.about-content p:last-child {
    color: var(--fg-muted);
}

/* Contact */
.contact {
    padding: 10rem 4rem;
    border-top: 1px solid var(--border);
    min-height: 80vh;
    display: flex;
    flex-direction: column;
}

.contact-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-content h2 {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 300;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.contact-content > p {
    color: var(--fg-muted);
    margin-bottom: 3rem;
}

.email-link {
    font-family: 'Space Mono', monospace;
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: var(--fg);
    text-decoration: none;
    padding-bottom: 0.25rem;
    border-bottom: 1px solid var(--fg);
    transition: border-color 0.3s, color 0.3s;
    width: fit-content;
}

.email-link:hover {
    color: var(--accent);
    border-color: var(--accent);
}

/* Footer */
footer {
    padding: 2rem 4rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer span {
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    color: var(--fg-muted);
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.05em;
    color: var(--fg-muted);
}

.footer-status {
    border: none;
    padding: 0;
    border-radius: 0;
}

.status-badge-fixed {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 50;
    background: transparent;
    overflow: hidden;
    transition: opacity 0.3s ease;
}

#badge-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: inherit;
    pointer-events: none;
}

.status-badge-fixed.hidden {
    opacity: 0;
    pointer-events: none;
}

.status-badge-lines {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.status-badge-line {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite;
}

.status-dot-operational { background: #22c55e; }
.status-dot-investigating { background: #38bdf8; }
.status-dot-degraded { background: #eab308; }
.status-dot-outage { background: #ef4444; }

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
    50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

.status-dot-investigating {
    animation: pulse-blue 2s ease-in-out infinite;
}

@keyframes pulse-blue {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.4); }
    50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(56, 189, 248, 0); }
}

.status-dot-degraded {
    animation: pulse-yellow 2s ease-in-out infinite;
}

@keyframes pulse-yellow {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(234, 179, 8, 0.4); }
    50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(234, 179, 8, 0); }
}

.status-dot-outage {
    animation: pulse-red 2s ease-in-out infinite;
}

@keyframes pulse-red {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4); }
    50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(239, 68, 68, 0); }
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        padding: 1.5rem 2rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .hero {
        padding: 0 2rem;
    }

    .scroll-hint {
        left: 2rem;
        bottom: 2rem;
    }

    .work,
    .about,
    .contact {
        padding: 6rem 2rem;
    }

    .service-item {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 3rem 0;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .stat {
        padding: 3rem 2rem;
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .stat:last-child {
        border-bottom: none;
    }

    footer {
        padding: 2rem;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Fade in animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered service items */
.service-item:nth-child(1) { transition-delay: 0s; }
.service-item:nth-child(2) { transition-delay: 0.15s; }
.service-item:nth-child(3) { transition-delay: 0.3s; }

/* Status page link badges */
a.status-badge {
    text-decoration: none;
    color: inherit;
}

a.status-badge:hover {
    opacity: 0.8;
}

/* Nav active state */
.nav-links a.nav-active {
    color: var(--accent);
}

/* Status page */
.status-page {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    padding: 8rem 4rem 4rem;
}

.status-state {
    max-width: 1000px;
    margin: 0 auto;
}

/* Auth state */
.status-auth-content {
    text-align: center;
    padding: 10rem 0;
}

.status-auth-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.status-auth-content p {
    color: var(--fg-muted);
    margin-bottom: 3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.ms-sign-in-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--fg);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s;
}

.ms-sign-in-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--fg-muted);
}

/* Loading state */
.status-loading-content {
    text-align: center;
    padding: 10rem 0;
}

.loading-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    margin: 0 auto 1.5rem;
    animation: loading-pulse 1.5s ease-in-out infinite;
}

@keyframes loading-pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}

.status-loading-content p {
    color: var(--fg-muted);
    font-family: 'Space Mono', monospace;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

/* Error state */
.status-error-content {
    text-align: center;
    padding: 10rem 0;
}

.status-error-content h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.status-error-content p {
    color: var(--fg-muted);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Status buttons */
.status-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--fg);
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s;
}

.status-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--fg-muted);
}

.status-btn-ghost {
    background: transparent;
    border-color: transparent;
}

.status-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border);
}

/* Dashboard */
.status-account-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.status-account-bar span {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    color: var(--fg-muted);
    letter-spacing: 0.05em;
}

.status-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 2rem;
}

.status-header h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    letter-spacing: -0.02em;
}

.status-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.status-timestamp {
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    color: var(--fg-muted);
    letter-spacing: 0.05em;
}

/* Summary badge */
.status-summary {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 3rem;
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    letter-spacing: 0.03em;
}

.summary-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.summary-dot-operational { background: #22c55e; box-shadow: 0 0 8px rgba(34, 197, 94, 0.4); }
.summary-dot-investigating { background: #38bdf8; box-shadow: 0 0 8px rgba(56, 189, 248, 0.4); }
.summary-dot-degraded { background: #eab308; box-shadow: 0 0 8px rgba(234, 179, 8, 0.4); }
.summary-dot-outage { background: #ef4444; box-shadow: 0 0 8px rgba(239, 68, 68, 0.4); }

.status-summary-operational { border-color: rgba(34, 197, 94, 0.2); }
.status-summary-investigating { border-color: rgba(56, 189, 248, 0.2); }
.status-summary-degraded { border-color: rgba(234, 179, 8, 0.2); }
.status-summary-outage { border-color: rgba(239, 68, 68, 0.2); }

/* Service grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 4rem;
}

.service-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--bg);
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.service-card-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.service-card-dot-operational { background: #22c55e; }
.service-card-dot-advisory { background: #38bdf8; }
.service-card-dot-investigating { background: #38bdf8; }
.service-card-dot-degraded { background: #eab308; }
.service-card-dot-outage { background: #ef4444; }

.service-card-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}

.service-card-name {
    font-size: 1.05rem;
    font-weight: 500;
    color: #fff;
    letter-spacing: -0.01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.service-card-status {
    font-family: 'Space Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.service-card-status-operational { color: #22c55e; }
.service-card-status-advisory { color: #38bdf8; }
.service-card-status-investigating { color: #38bdf8; }
.service-card-status-degraded { color: #eab308; }
.service-card-status-outage { color: #ef4444; }

/* Incidents */
.incidents-section {
    margin-bottom: 4rem;
}

.incidents-section h2 {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.incidents-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.incident-card {
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.incident-summary {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    list-style: none;
}

.incident-summary::-webkit-details-marker {
    display: none;
}

.incident-summary::marker {
    content: '';
}

.incident-header {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.incident-classification {
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #eab308;
    padding: 0.15rem 0.5rem;
    border: 1px solid rgba(234, 179, 8, 0.3);
    border-radius: 4px;
}

.incident-classification-advisory {
    color: #38bdf8;
    border-color: rgba(56, 189, 248, 0.3);
}

.incident-card-advisory {
    border-color: rgba(56, 189, 248, 0.15);
}

/* Advisories section */
.advisories-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    list-style: none;
    padding: 0.25rem 0;
}

.advisories-header::-webkit-details-marker {
    display: none;
}

.advisories-header::marker {
    content: '';
}

.advisories-header h2 {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 0;
}

.advisories-count {
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    color: #38bdf8;
    letter-spacing: 0.05em;
}

#advisories-toggle > .incidents-list {
    margin-top: 1.5rem;
}

.incident-service {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--fg);
    padding: 0.15rem 0;
}

.incident-title {
    font-size: 0.95rem;
    font-weight: 400;
}

.incident-details {
    padding: 0 1.5rem 1.5rem;
    border-top: 1px solid var(--border);
}

.incident-impact {
    color: var(--fg-muted);
    font-size: 0.9rem;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.incident-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 1rem;
}

.timeline-entry {
    padding: 1.25rem;
    border-top: 1px solid var(--border);
}

.timeline-entry-latest {
    background: rgba(255, 255, 255, 0.02);
}

.timeline-date-bar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.timeline-date {
    font-family: 'Space Mono', monospace;
    font-size: 0.8rem;
    color: var(--fg);
    letter-spacing: 0.05em;
}

.timeline-badge {
    font-family: 'Space Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--accent);
    padding: 0.1rem 0.4rem;
    border: 1px solid rgba(56, 189, 248, 0.3);
    border-radius: 3px;
}

.timeline-sections {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.timeline-section-label {
    display: block;
    font-family: 'Space Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--fg-muted);
    margin-bottom: 0.15rem;
}

.timeline-section-body {
    font-size: 0.85rem;
    color: var(--fg-muted);
    line-height: 1.6;
    white-space: pre-line;
}

.timeline-content {
    font-size: 0.85rem;
    color: var(--fg-muted);
    line-height: 1.6;
}

/* Responsive — status page */
@media (max-width: 768px) {
    .status-page {
        padding: 6rem 2rem 2rem;
    }

    .status-header {
        flex-direction: column;
        gap: 1rem;
    }

    .status-actions {
        width: 100%;
        justify-content: space-between;
    }

    .status-account-bar {
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .status-auth-content,
    .status-loading-content,
    .status-error-content {
        padding: 6rem 0;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .fade-in {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .scroll-line::after {
        animation: none;
    }

    .status-dot {
        animation: none;
    }

    .loading-pulse {
        animation: none;
        opacity: 1;
    }

    /* Static stars are shown via JS - no need to hide canvas */
}

/* Print styles */
@media print {
    #constellation,
    .status-badge-fixed,
    #badge-canvas,
    .scroll-hint {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
    }

    nav,
    footer,
    .section-label,
    .service-number,
    .stat-label,
    .email-link,
    a {
        color: #000;
    }

    .hero-sub,
    .service-content p,
    .about-content p:last-child,
    .contact-content > p,
    .stat-label,
    footer span {
        color: #333;
    }

    nav {
        position: static;
        background: none;
        backdrop-filter: none;
    }

    .hero {
        min-height: auto;
        padding: 2rem;
    }

    .work,
    .about,
    .contact {
        padding: 2rem;
    }

    .stat {
        padding: 1rem 2rem;
    }

    .service-item,
    .stat,
    .work,
    .about,
    .contact,
    .stats,
    footer {
        border-color: #ccc;
    }
}
