:root {
    --color-primary-dark: #060d18;
    --color-secondary-dark: #0c1322;
    --color-surface: rgba(255, 255, 255, 0.06);
    --color-surface-elevated: rgba(255, 255, 255, 0.09);
    --color-accent: #C5EB4C;
    --color-accent-hover: #d4f06a;
    --color-accent-dim: rgba(197, 235, 76, 0.08);
    --color-light: #F0F0F0;
    --color-white: #FFFFFF;

    --color-blue: #1E6BFF;
    --color-blue-hover: #4A85FF;
    --color-blue-dim: rgba(30, 107, 255, 0.08);
    --color-blue-deep: #021131;

    --color-text-dark: #f1f5f9;
    --color-text-body: #b0bfd0;
    --color-text-muted: #8494a7;

    --color-border: rgba(255, 255, 255, 0.10);
    --color-border-hover: rgba(255, 255, 255, 0.18);
    --color-border-accent: rgba(30, 107, 255, 0.30);

    --color-success: #22c55e;
    --color-error: #ef4444;

    --font-family: 'Poppins', sans-serif;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.6);
    --shadow-accent: 0 4px 25px rgba(197, 235, 76, 0.2);
    --shadow-accent-lg: 0 8px 40px rgba(197, 235, 76, 0.3);
    --shadow-glow: 0 0 60px rgba(197, 235, 76, 0.08);

    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-pill: 50px;

    --section-padding-y: clamp(80px, 10vw, 140px);
    --section-padding-y-sm: clamp(60px, 8vw, 100px);
    --section-gap: clamp(2rem, 4vw, 4rem);

    --color-light-bg: #ffffff;
    --color-light-bg-alt: #f8f9fb;
    --color-light-text: #0f172a;
    --color-light-text-body: #475569;
    --color-light-text-muted: #94a3b8;
    --color-light-border: rgba(0, 0, 0, 0.08);
    --color-light-border-hover: rgba(0, 0, 0, 0.15);
    --color-light-surface: #f1f5f9;
    --color-accent-on-light: #7DA824;
}

:root {
    scroll-behavior: auto;
}

::selection {
    background: rgba(30, 107, 255, 0.3);
}

.material-symbols-rounded {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    vertical-align: middle;
    font-size: 1.2em;
    line-height: 1;
}

h1, .text-h1 {
    font-family: var(--font-family);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

h2, .text-h2 {
    font-family: var(--font-family);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

h3, .text-h3 {
    font-family: var(--font-family);
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h4, .text-h4 {
    font-family: var(--font-family);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.3;
}

.text-subtitle-bold {
    font-family: var(--font-family);
    font-size: 17px;
    font-weight: 700;
    line-height: normal;
}

p, .text-body {
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
}

.nav-link, .text-nav {
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
}

.text-label {
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
}

.text-tag {
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 700;
    line-height: 120%;
}

.text-description, small, .small {
    font-family: var(--font-family);
    font-size: 13px;
    font-weight: 400;
    line-height: normal;
}

html, body {
    font-family: var(--font-family);
    background: var(--color-primary-dark);
    color: var(--color-text-dark);
    min-height: 100vh;
    overflow-x: hidden;
}

a, .btn-link {
    color: var(--color-accent);
    transition: color var(--transition-fast);
}

a:hover, .btn-link:hover {
    color: var(--color-accent-hover);
}

.btn {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 13px;
    border-radius: var(--radius-pill);
    padding: 0.7rem 2rem;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.btn-primary {
    color: var(--color-primary-dark);
    background: var(--color-accent);
    border-color: var(--color-accent);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
    color: var(--color-primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(197, 235, 76, 0.15);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-outline-primary {
    color: var(--color-accent);
    border-color: rgba(197, 235, 76, 0.35);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(197, 235, 76, 0.15);
}

.btn-outline-secondary {
    color: var(--color-text-body);
    border-color: var(--color-border-hover);
    background: transparent;
}

.btn-outline-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--color-text-dark);
}

.btn-lg {
    padding: 1rem 2.75rem;
    font-size: 14px;
}

.btn:focus, .btn:active:focus {
    box-shadow: 0 0 0 0.1rem rgba(197, 235, 76, 0.15), 0 0 0 0.25rem rgba(197, 235, 76, 0.08);
}

.btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem rgba(30, 107, 255, 0.15), 0 0 0 0.25rem rgba(30, 107, 255, 0.08);
}


.sidebar { display: none; }
.top-row { display: none; }

.page {
    position: relative;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
    background: transparent;
}

.content {
    padding: 0;
    background: transparent;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--color-text-dark);
}

p {
    color: var(--color-text-body);
}

.text-muted {
    color: var(--color-text-muted) !important;
}

h1:focus { outline: none; }

.form-control, .form-select {
    background-color: rgba(255, 255, 255, 0.07);
    border: 1px solid var(--color-border-hover);
    color: var(--color-text-dark);
    border-radius: var(--radius-md);
    padding: 0.85rem 1rem;
    font-family: var(--font-family);
    font-size: 14px;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast);
}

.form-control:focus, .form-select:focus {
    background-color: rgba(255, 255, 255, 0.09);
    border-color: rgba(30, 107, 255, 0.5);
    color: var(--color-text-dark);
    box-shadow: 0 0 0 3px rgba(30, 107, 255, 0.1);
}

.form-control::placeholder {
    color: var(--color-text-muted);
    font-weight: 400;
}

/* The native dropdown popup is drawn by the OS. Without an explicit dark colour
   scheme it renders light, which left our near-white option text unreadable. */
.form-select {
    color-scheme: dark;
}

.form-select option {
    background-color: var(--color-secondary-dark);
    color: var(--color-text-dark);
}

.form-select option:checked,
.form-select option:hover {
    background-color: var(--color-blue);
    color: var(--color-white);
}

.form-label {
    color: var(--color-text-dark);
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 0.5rem;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}

.card {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    color: var(--color-text-dark);
    box-shadow: none;
    border-radius: var(--radius-lg);
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.card:hover {
    border-color: rgba(255, 255, 255, 0.12);
}

.alert-success {
    background-color: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.2);
    color: #86efac;
}

.alert-danger {
    background-color: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid var(--color-success);
}

.invalid {
    outline: 1px solid var(--color-error);
}

.validation-message {
    color: var(--color-error);
}

.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

.blazor-error-boundary::after {
    content: "An error has occurred."
}

.darker-border-checkbox.form-check-input {
    border-color: #929292;
}

.bg-light {
    background-color: rgba(255, 255, 255, 0.06) !important;
}

.bg-white {
    background-color: rgba(255, 255, 255, 0.04) !important;
}

.text-accent {
    color: var(--color-accent) !important;
}

.text-primary {
    color: var(--color-accent) !important;
}

.text-success {
    color: var(--color-success) !important;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-on-scroll.reveal-left {
    transform: translateX(-24px);
}

.reveal-on-scroll.reveal-left.revealed {
    transform: translateX(0);
}

.reveal-on-scroll.reveal-right {
    transform: translateX(24px);
}

.reveal-on-scroll.reveal-right.revealed {
    transform: translateX(0);
}

.reveal-on-scroll.reveal-scale {
    transform: scale(0.9);
}

.reveal-on-scroll.reveal-scale.revealed {
    transform: scale(1);
}

.stagger-child {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.stagger-child.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Set for one frame when a reveal is being restored after Blazor patched the class away, so the
   section reappears silently instead of replaying its entrance fade. */
.reveal-on-scroll.reveal-no-transition,
.stagger-child.reveal-no-transition {
    transition: none;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes subtlePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.section-divider {
    width: 40px;
    height: 3px;
    background: var(--color-blue);
    border-radius: 2px;
    margin: 0 auto 2.5rem;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-primary-dark);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    border: 2px solid var(--color-primary-dark);
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.20);
}

* {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.12) var(--color-primary-dark);
}

.gradient-text {
    background: linear-gradient(135deg, var(--color-text-dark) 0%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-accent {
    background: linear-gradient(135deg, var(--color-accent), #a8d935);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-accent);
    padding: 0.35rem 0.85rem;
    border: 1px solid rgba(197, 235, 76, 0.18);
    border-radius: var(--radius-pill);
    background: rgba(197, 235, 76, 0.04);
    margin-bottom: 1.5rem;
}

.section-label::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
    animation: subtlePulse 2s ease-in-out infinite;
}

.section-label-side {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    pointer-events: none;
}

.section-label-side span {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.15);
    font-family: var(--font-family);
}

.services-section .section-label-side span,
.testimonials-section .section-label-side span {
    color: rgba(0, 0, 0, 0.08);
}

@media (max-width: 991px) {
    .section-label-side { display: none; }
}

.text-highlight {
    background: var(--color-blue);
    color: var(--color-white);
    padding: 0.05em 0.3em;
    border-radius: 4px;
    -webkit-text-fill-color: var(--color-white);
    font-weight: inherit;
}

.section-header-with-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.section-header-with-nav h2 {
    margin-bottom: 0;
}

.section-nav-arrows {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.nav-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--color-light-border);
    background: var(--color-light-bg);
    color: var(--color-light-text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    padding: 0;
}

.nav-arrow:hover {
    background: var(--color-primary-dark);
    color: var(--color-white);
    border-color: var(--color-primary-dark);
}

.nav-arrow .material-symbols-rounded {
    font-size: 20px;
}

@media (max-width: 768px) {
    .section-header-with-nav { flex-direction: column; gap: 1rem; text-align: center; }
    .section-nav-arrows { display: none; }
}

hr {
    border-color: var(--color-border);
    opacity: 1;
}

img {
    max-width: 100%;
}

.badge {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.04em;
    border-radius: var(--radius-pill);
    padding: 0.35em 0.75em;
}

.badge.bg-primary {
    background: rgba(197, 235, 76, 0.12) !important;
    color: var(--color-accent) !important;
}

.badge.bg-success {
    background: rgba(34, 197, 94, 0.12) !important;
    color: #86efac !important;
}

.tooltip-inner {
    background: var(--color-surface-elevated);
    color: var(--color-text-dark);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 13px;
    padding: 0.5rem 0.75rem;
}

.list-group-item {
    background: transparent;
    border-color: var(--color-border);
    color: var(--color-text-body);
}

.table {
    color: var(--color-text-body);
    border-color: var(--color-border);
}

.table > thead {
    color: var(--color-text-dark);
}

.table > :not(caption) > * > * {
    background-color: transparent;
    border-bottom-color: var(--color-border);
}

.modal-content {
    background: var(--color-secondary-dark);
    border: 1px solid var(--color-border);
    color: var(--color-text-dark);
    border-radius: var(--radius-xl);
}

.modal-header {
    border-bottom-color: var(--color-border);
}

.modal-footer {
    border-top-color: var(--color-border);
}

.btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}

.service-hero {
    padding: 40px 0;
    background: var(--color-primary-dark);
    color: var(--color-text-dark);
}

.service-hero h1 { color: var(--color-text-dark); }
.service-hero .lead { color: var(--color-text-body); }
.service-hero .lead.text-muted { color: var(--color-text-body) !important; }
.service-hero .text-primary { color: var(--color-accent) !important; }
.service-hero-icon { transition: transform var(--transition-base); }
.service-hero-cta { padding: 0.9rem 2.5rem; }

.service-details {
    background: var(--color-secondary-dark);
}

/* Intro copy above the phone showcase, so the text is spread either side of the visuals. */
.service-intro {
    background: var(--color-secondary-dark);
    position: relative;
}

.service-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
}

.service-description h2 { color: var(--color-text-dark); }
.service-description p { line-height: 1.8; color: var(--color-text-body); }

.service-features-detail h2 { color: var(--color-text-dark); }

.service-features-detail .feature-item {
    transition: transform var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
    border-left: 3px solid var(--color-blue);
    background: var(--color-light-bg) !important;
    color: var(--color-light-text);
}

.service-features-detail .feature-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
    background: var(--color-light-bg) !important;
    border-left-color: var(--color-blue-hover);
}

.service-features-detail .feature-item h4 { color: var(--color-light-text); }
.service-features-detail .feature-item .text-primary { color: var(--color-accent-on-light) !important; }
.service-features-detail .feature-item .text-muted { color: var(--color-light-text-muted) !important; }

.service-pricing .card {
    border-left: 4px solid var(--color-blue);
    background: var(--color-light-bg);
    border: 1px solid var(--color-light-border);
    color: var(--color-light-text);
    box-shadow: var(--shadow-sm);
}

.service-pricing h2 { color: var(--color-light-text); }
.service-pricing .text-primary { color: var(--color-blue-deep) !important; }
.service-pricing .text-muted { color: var(--color-light-text-muted) !important; }

@media (max-width: 768px) {
    .service-hero { padding: 30px 0; }
}

/* ---------- Legal pages (terms, privacy) ---------- */

.legal-page {
    background: var(--color-primary-dark);
    padding: clamp(90px, 11vw, 140px) 0 clamp(80px, 10vw, 130px);
    position: relative;
    overflow: hidden;
}

.legal-page .container {
    max-width: 860px;
}

.legal-page h1 {
    color: var(--color-text-dark);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin-bottom: 0.75rem;
}

.legal-updated {
    color: var(--color-text-muted);
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.legal-page h2 {
    color: var(--color-text-dark);
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin: 2.75rem 0 1rem;
    padding-bottom: 0.6rem;
    position: relative;
}

.legal-page h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--color-blue);
    border-radius: 2px;
}

.legal-page h2:first-of-type {
    margin-top: 0;
}

.legal-page p,
.legal-page li {
    color: var(--color-text-body);
    font-size: 0.95rem;
    line-height: 1.85;
}

.legal-page p {
    margin-bottom: 1rem;
}

.legal-page ul {
    padding-left: 1.15rem;
    margin-bottom: 1rem;
}

.legal-page li {
    margin-bottom: 0.5rem;
}

.legal-page a {
    color: var(--color-accent);
    text-decoration: none;
    border-bottom: 1px solid rgba(197, 235, 76, 0.35);
    transition: color var(--transition-fast), border-color var(--transition-fast);
}

.legal-page a:hover {
    color: var(--color-accent-hover);
    border-bottom-color: var(--color-accent-hover);
}

/* ---------- Academy articles (migrated WordPress content) ---------- */
/* Reuses .legal-page's typography (h1/h2/p/ul/a) since both are long-form dark-background
   content pages, with its own additions for the breadcrumb, back-link and comparison tables
   that legal pages don't need. */

.academy-breadcrumb {
    font-size: 0.8rem;
    letter-spacing: 0.03em;
    color: var(--color-text-muted);
    margin-bottom: 1.25rem;
}

.academy-breadcrumb a {
    color: var(--color-text-muted);
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.academy-breadcrumb a:hover {
    color: var(--color-accent);
    border-bottom-color: var(--color-accent);
}

.academy-breadcrumb span[aria-hidden] {
    margin: 0 0.4rem;
}

.academy-video {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-bottom: 2rem;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.academy-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.academy-article .academy-lead {
    color: var(--color-text-dark);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.academy-article table {
    width: 100%;
    margin: 1.5rem 0;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.academy-article th,
.academy-article td {
    padding: 0.65rem 0.85rem;
    border: 1px solid var(--color-border);
    text-align: left;
    color: var(--color-text-body);
}

.academy-article th {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text-dark);
    font-weight: 600;
}

.academy-article .table-responsive {
    overflow-x: auto;
}

.academy-back {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
}

.academy-hub .container {
    max-width: 1080px;
}

.academy-hub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.academy-hub-card {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    text-decoration: none;
    border-bottom: 1px solid var(--color-border);
    transition: border-color var(--transition-fast), background var(--transition-fast), transform var(--transition-fast);
}

.academy-hub-card:hover {
    border-color: var(--color-border-accent);
    background: var(--color-surface-elevated);
    transform: translateY(-2px);
}

.academy-hub-card-title {
    color: var(--color-text-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

.academy-hub-card-text {
    color: var(--color-text-muted);
    font-size: 0.82rem;
    line-height: 1.5;
}

.legal-contact {
    margin-top: 3rem;
    padding: 1.75rem 2rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--color-border);
}

.legal-contact p:last-child {
    margin-bottom: 0;
}

/* Marks details that still have to be completed before the site goes live. */
.legal-todo {
    color: var(--color-white);
    background: var(--color-blue);
    padding: 0.05em 0.4em;
    border-radius: 4px;
    font-weight: 600;
}

/* ---------- Phone showcase (service detail pages) ---------- */

.service-showcase {
    background: var(--color-primary-dark);
    padding: clamp(70px, 9vw, 120px) 0;
    position: relative;
    overflow: hidden;
}

.service-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
}

.service-showcase h2 {
    color: var(--color-text-dark);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    letter-spacing: -0.03em;
}

.showcase-intro {
    color: var(--color-text-body);
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 560px;
    margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
}

.phone-row {
    display: flex;
    justify-content: center;
    gap: clamp(1.25rem, 3vw, 2.75rem);
}

.phone-mockup {
    flex: 0 0 232px;
    width: 232px;
}

.phone-frame {
    position: relative;
    padding: 10px;
    border-radius: 34px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}

.phone-mockup:hover .phone-frame {
    transform: translateY(-6px);
    box-shadow: 0 32px 70px rgba(0, 0, 0, 0.55);
}

.phone-notch {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 68px;
    height: 5px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.20);
    z-index: 2;
}

.phone-screen {
    aspect-ratio: 9 / 19.5;
    border-radius: 26px;
    background: var(--color-secondary-dark);
    border: 1px dashed rgba(30, 107, 255, 0.30);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    text-align: center;
    padding: 1.5rem 1.25rem;
    overflow: hidden;
}

.phone-screen .material-symbols-rounded {
    font-size: 2.1rem;
    color: var(--color-accent);
    opacity: 0.8;
}

.phone-screen-label {
    color: var(--color-text-dark);
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.35;
}

.phone-screen-hint {
    color: var(--color-text-muted);
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.phone-caption {
    margin: 1.1rem 0 0;
    text-align: center;
    color: var(--color-text-body);
    font-size: 0.8rem;
    line-height: 1.55;
}

@media (max-width: 767px) {
    .phone-row {
        justify-content: flex-start;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        padding-bottom: 0.75rem;
        margin-left: -12px;
        margin-right: -12px;
        padding-left: 12px;
        padding-right: 12px;
    }

    .phone-row::-webkit-scrollbar { height: 4px; }
    .phone-row::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.05); border-radius: 2px; }
    .phone-row::-webkit-scrollbar-thumb { background: rgba(30, 107, 255, 0.3); border-radius: 2px; }

    .phone-mockup {
        flex: 0 0 200px;
        width: 200px;
        scroll-snap-align: center;
    }
}

/* A case page that keeps its screens as one swipeable strip at every width, instead of wrapping
   them into a grid on desktop the way .phone-row-wrap does. It repeats the mobile rule above
   unscoped, so it has to sit after that media query to win on equal specificity; the negative
   margins that bleed the strip to the viewport edges stay mobile-only. */
.phone-row-slider {
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(30, 107, 255, 0.35) rgba(255, 255, 255, 0.05);
    padding-bottom: 1rem;
}

.phone-row-slider::-webkit-scrollbar { height: 6px; }
.phone-row-slider::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.05); border-radius: 3px; }
.phone-row-slider::-webkit-scrollbar-thumb { background: rgba(30, 107, 255, 0.35); border-radius: 3px; }
.phone-row-slider::-webkit-scrollbar-thumb:hover { background: rgba(30, 107, 255, 0.55); }

.phone-row-slider .phone-mockup {
    scroll-snap-align: center;
}

/* A slider short enough that every screen already fits still reads as a centred row rather than
   one shoved against the left edge: it shrinks to its content and the auto margins centre it,
   and as soon as the screens do overflow the 100% cap hands it straight back to the scroll strip
   that flex-start is there for. Scoped to >=768px so the mobile rule keeps the negative margins
   that bleed the strip to the viewport edges. */
@media (min-width: 768px) {
    .phone-row-slider {
        width: fit-content;
        max-width: 100%;
        margin-inline: auto;
    }
}

/* ---------- Case screenshots (use-case cards + case pages) ---------- */

/* The dashed screen is deliberately empty: dropping in the real screenshot means replacing
   the labels inside .case-phone-screen with a single .case-phone-shot image, and the frame,
   the ratio and the spacing all stay as they are. */
/* A real screenshot brings its own status bar and notch, so the mock notch is hidden. */
.phone-frame:has(.case-phone-shot) .phone-notch {
    display: none;
}

.case-phone-screen:has(.case-phone-shot) {
    padding: 0;
    gap: 0;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.10);
}

.case-phone-shot {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ---------- Pre-framed device shots ---------- */

/* Our case screenshots are exported with the device already rendered into the PNG: own bezel,
   own status bar, transparent around it. Those replace the whole .phone-frame instead of sitting
   inside it -- nesting one would draw a second bezel around the first and cover-crop the sides of
   the phone away, because the export is roughly 9/17.8 and .phone-screen is 9/19.5. The shadow is
   a drop-shadow rather than a box-shadow so it follows the rounded corners in the alpha channel
   instead of the square element box. */
.device-shot {
    display: block;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 24px 55px rgba(0, 0, 0, 0.5));
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Some exports arrive on a square canvas with the phone centred and transparent padding either
   side, rather than trimmed to the device. Measured on the /betting/mini-games shots, the phone
   sits at x:124-375 of 500, so it is the same 252-wide device as the trimmed exports with 124px
   of empty space added left and right. Cover-cropping to a 252/500 box scales the source 1:1 and
   keeps exactly that column, so these render at the same size as their trimmed siblings in the
   same row and the drop-shadow still follows the bezel. Cropping in CSS keeps the uploaded files
   untouched and costs no quality. */
.device-shot-padded {
    aspect-ratio: 252 / 500;
    object-fit: cover;
}

.phone-mockup:hover .device-shot,
.use-case-card:hover .device-shot {
    transform: translateY(-6px);
}

/* Case pages that show more than three screens wrap the row into a grid. The width cap is what
   keeps it at three per row: a full 1140px container fits four, which leaves a lopsided 4 + 2 for
   six screens. Scoped to >=768px so the mobile rule above still turns the row into a swipeable
   strip, margins and all. */
@media (min-width: 768px) {
    .phone-row-wrap {
        flex-wrap: wrap;
        row-gap: clamp(2rem, 4vw, 3rem);
        max-width: 800px;
        margin-inline: auto;
    }

    /* Four screens rather than six: at the 800px cap three would fit and leave a lopsided 3 + 1,
       so tighten the cap to two per line and let it wrap 2 + 2. */
    .phone-row-pairs {
        max-width: 560px;
    }
}

/* A service page with a single screenshot: the one shot carries the whole band, so it runs wider
   than the 232px used in a three-up row, and it stays centred instead of joining the swipeable
   strip the mobile rule turns .phone-row into -- there is nothing to swipe to. */
.phone-row-single {
    justify-content: center;
}

.phone-row-single .phone-mockup {
    flex: 0 0 300px;
    width: 300px;
}

@media (max-width: 767px) {
    .phone-row-single {
        justify-content: center;
        overflow-x: visible;
    }

    .phone-row-single .phone-mockup {
        flex: 0 0 240px;
        width: 240px;
    }
}

.service-detail-card {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.06);
    height: 100%;
    background: var(--color-light-bg);
    border-radius: var(--radius-xl);
    box-shadow: none;
}

.service-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-blue), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-detail-card::after {
    display: none;
}

.service-detail-card:hover::before {
    opacity: 1;
}

.service-detail-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 0, 0, 0.10);
    background: var(--color-light-bg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08) !important;
}

.service-detail-card .card-body {
    position: relative;
    z-index: 2;
    background: transparent;
    color: var(--color-light-text);
    padding: 2rem !important;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Bootstrap Icons and Material Symbols render at different heights for the same
   font-size, which pushed one card's feature list out of line with the others.
   A fixed icon box keeps every card header — and everything below it — aligned. */
.service-detail-card .service-icon-large-mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
}

.service-detail-card .service-icon-large-mobile .material-symbols-rounded,
.service-detail-card .service-icon-large-mobile .bi {
    font-size: 1.9rem;
    line-height: 1;
}

@media (min-width: 992px) {
    /* Reserve the same room for every description so the check lists line up. */
    .service-detail-card .card-text {
        min-height: 74px;
    }
}

.service-detail-card .card-title {
    color: var(--color-light-text);
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.service-detail-card .card-text {
    color: var(--color-light-text-body);
    font-size: 14px;
    line-height: 1.75;
}

.service-detail-card .text-primary { color: var(--color-light-text) !important; }
.service-detail-card .text-success { color: var(--color-accent-on-light) !important; }
.service-detail-card .text-muted { color: var(--color-light-text-muted) !important; }

.service-icon-large,
.service-icon-large-mobile {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), color 0.4s ease;
}

.service-detail-card:hover .service-icon-large,
.service-detail-card:hover .service-icon-large-mobile {
    transform: scale(1.08);
}

.service-features {
    flex: 1;
}

.service-features ul li {
    font-size: 13px;
    padding: 0.2rem 0;
    color: var(--color-light-text-body);
    transition: transform var(--transition-fast), color var(--transition-fast);
}

.service-features ul li:hover {
    transform: translateX(4px);
    color: var(--color-light-text);
}

.service-features .material-symbols-rounded {
    color: var(--color-accent-on-light) !important;
}

.service-card-bg { display: none; }

/* Pricing Section - Shared (Home + Services) */
.pricing-section {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1.25rem 0;
    background: var(--color-light-surface);
    margin-left: -2rem;
    margin-right: -2rem;
    padding-left: 2rem;
    padding-right: 2rem;
    position: relative;
    margin-top: auto;
}

.pricing-section .h5 {
    color: var(--color-light-text);
    font-weight: 500;
    font-size: 1.1rem;
    letter-spacing: -0.01em;
}

.service-detail-card .btn-primary {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-primary-dark);
    font-weight: 700;
    padding: 0.65rem 1rem;
    font-size: 13px;
}

.service-detail-card .btn-outline-primary {
    border-color: var(--color-accent-on-light);
    color: var(--color-accent-on-light);
    font-weight: 600;
    padding: 0.55rem 1rem;
    font-size: 13px;
    /* Sits above the stretched "Learn More" overlay so it stays independently clickable. */
    position: relative;
    z-index: 2;
}

/* Anywhere on the card follows the "Learn More" link. Two of our own .btn rules get
   in the way of Bootstrap's stretched-link: position: relative would anchor the
   ::after overlay to the button instead of the card, and overflow: hidden would clip
   it. Both are released here, along with the shimmer ::before that relied on them. */
.service-detail-card .stretched-link {
    position: static;
    overflow: visible;
}

.service-detail-card .stretched-link::before {
    display: none;
}

.service-detail-card:has(.stretched-link) .card-body {
    cursor: pointer;
}

.service-detail-card .btn-outline-primary:hover {
    background: var(--color-accent);
    color: var(--color-primary-dark);
    border-color: var(--color-accent);
}

/* Contact section — rendered by the shared ContactForm component, so it lives here
   instead of in page-scoped CSS. */
.contact-section {
    background: var(--color-primary-dark);
    padding: clamp(100px, 12vw, 160px) 0;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
}

.contact-section::after {
    content: '';
    position: absolute;
    top: 20%;
    right: -5%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(30, 107, 255, 0.02) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-section .card {
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.04);
    color: var(--color-text-dark);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.contact-section .card::before {
    display: none;
}

.contact-section h2 {
    color: var(--color-text-dark);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.05;
}

.contact-section .contact-intro {
    color: var(--color-text-body);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.contact-section .btn-primary.btn-lg {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-primary-dark);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.06em;
    padding: 1rem 3rem;
    border-radius: var(--radius-pill);
}

.contact-section .btn-primary.btn-lg::before {
    display: none;
}

.contact-section .btn-primary.btn-lg:hover {
    background: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
    color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(197, 235, 76, 0.25);
}

.contact-section .container {
    max-width: 1400px;
}

@media (max-width: 768px) {
    .service-detail-card .card-title {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 1.2rem;
    }
    .service-detail-card .card-body { padding: 1rem !important; }
    /* The Bootstrap p-4/p-5 utilities on the contact form, pricing and about-intro cards were
       sized for desktop and eat a lot of a phone's width in padding alone. */
    .card-body.p-4 { padding: 1.15rem !important; }
    .card-body.p-5 { padding: 1.5rem !important; }
    .service-header-mobile { display: flex !important; }
    .service-icon-large-mobile { flex-shrink: 0; }
    .service-header-mobile .card-title {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        flex: 1;
        min-width: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .reveal-on-scroll { opacity: 1; transform: none; }
    .stagger-child { opacity: 1; transform: none; }
}

/* ---------- About preview ----------
   Shared by the Betting & Gaming and Software & AI landing pages, so it lives here rather
   than in either page's scoped sheet. */


/* Deliberately tighter than the other bands: this sits between the visitor and the
   demo form, so it makes its point and gets out of the way. */
.about-preview {
    background: var(--color-primary-dark);
    padding: clamp(56px, 7vw, 90px) 0;
    position: relative;
    overflow: hidden;
}

.about-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
}

.about-preview .container {
    max-width: 1400px;
    position: relative;
    z-index: 1;
}

.about-preview h2 {
    color: var(--color-text-dark);
    font-size: clamp(1.7rem, 2.6vw, 2.3rem);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.1;
}

.about-preview-text {
    color: var(--color-text-body);
    font-size: 0.98rem;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.about-preview-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.founders-photo {
    max-width: 280px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s ease;
}

.founders-photo:hover {
    transform: translateY(-4px);
    border-color: var(--color-border-accent);
}

.founders-photo img {
    display: block;
    width: 100%;
    height: auto;
}

.founders-caption {
    margin: 0.85rem 0 0;
    max-width: 280px;
    color: var(--color-text-muted);
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    text-align: center;
}

@media (max-width: 991px) {
    .founders-photo { margin: 0 auto; }
    .founders-caption { margin: 0.85rem auto 0.5rem; }
}

/* ---------- Status pages (404, error) ---------- */

.status-page {
    background: var(--color-primary-dark);
    padding: clamp(100px, 13vw, 160px) 0 clamp(90px, 11vw, 140px);
    min-height: 55vh;
    display: flex;
    align-items: center;
}

.status-content {
    max-width: 620px;
    margin: 0 auto;
}

.status-code {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: clamp(4rem, 12vw, 6.5rem);
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 0.5rem;
}

.status-page h1 {
    color: var(--color-text-dark);
    font-size: clamp(1.7rem, 3.2vw, 2.4rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.status-lead {
    color: var(--color-text-body);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 480px;
    margin: 0 auto 2rem;
}

.status-request-id {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    margin-bottom: 2rem;
}

.status-request-id code {
    background: rgba(255, 255, 255, 0.06);
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    color: var(--color-text-body);
}

.status-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.status-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    text-align: left;
}

.status-link-card {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: transform var(--transition-base), border-color var(--transition-base), background var(--transition-base);
}

.status-link-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--color-border-accent);
    text-decoration: none;
}

.status-link-card .material-symbols-rounded {
    font-size: 1.75rem;
    color: var(--color-accent);
    flex-shrink: 0;
}

.status-link-card strong {
    display: block;
    color: var(--color-text-dark);
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.status-link-card small {
    display: block;
    color: var(--color-text-muted);
    font-size: 0.78rem;
    line-height: 1.4;
}

@media (max-width: 576px) {
    .status-links {
        grid-template-columns: 1fr;
    }
}
