/* --- Global Styles & Variables --- */
:root {
    /* Refined Color Palette for Luxury Tech Feel */
    --bg-dark: #000102; /* Deeper black */
    --bg-medium: #090f1a; /* Darker, slightly bluer medium */
    --bg-light-translucent: rgba(15, 22, 40, 0.94); /* Slightly adjusted alpha */
    --text-light: #edf2f7; /* Slightly brighter light text */
    --text-medium: #b8c8e0; /* Adjusted medium text */
    --text-dark: #708098; /* Adjusted dark text */

    --accent-primary: #00e0ff; /* Bright Cyan */
    --accent-secondary: #a0f0ff; /* Lighter Cyan */
    --accent-alt: #c08aff; /* Refined Purple */
    --accent-alt-light: #e0cfff;

    /* Enhanced Gold for Luxury Accents */
    --accent-gold: #e0b84f; /* Brighter, slightly desaturated gold */
    --accent-gold-light: #f8e08c;
    --accent-gold-glow: rgba(224, 184, 79, 0.6); /* Specific glow for gold */

    /* Refined Glow Effects */
    --accent-glow-primary: rgba(0, 224, 255, 0.6);
    --accent-glow-secondary: rgba(160, 240, 255, 0.7);
    --accent-glow-alt: rgba(192, 138, 255, 0.6);

    --border-color: #556888; /* Adjusted border */
    --border-darker: #3a4a60; /* Darker border */

    /* Animated Background Gradient */
    --animated-grad-1: rgba(0, 224, 255, 0.05);
    --animated-grad-2: rgba(192, 138, 255, 0.06);
    --animated-grad-3: rgba(224, 184, 79, 0.05); /* Gold in animation */

    /* Static Background Layers (dots + base) */
    --static-bg-color: var(--bg-dark);
    --dot-pattern-color: rgba(156, 146, 172, 0.03); /* Even subtler dots */

    --font-primary: monospace;
    --font-secondary: monospace;

    /* Sharper Clip Path for Modules */
    --clip-path-module: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
    --clip-path-module-small: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));

    --transition-smooth: 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    --transition-fast: 0.25s ease-out;
    --animation-delay-step: 0.08s; /* Stagger animation delay */
}

/* --- Base & Body Styling --- */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
    background-color: var(--static-bg-color);
    color: var(--text-light);
    font-family: var(--font-secondary);
    line-height: 1.7; /* Adjusted line height */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    /* Subtle Animated Background */
    background-image:
        /* Animated Gradient Overlay */
        linear-gradient(45deg, var(--animated-grad-1), var(--animated-grad-2), var(--animated-grad-3), var(--animated-grad-1)),
        /* Dot Pattern */
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3E%3Cpath fill='rgba(156, 146, 172, 0.03)' d='M1 1h1v1H1V1zm2 2h1v1H3V3zm2 2h1v1H5V5zm2 2h1v1H7V7z'%3E%3C/path%3E%3C/svg%3E"),
        /* Base Color */
        linear-gradient(var(--static-bg-color), var(--static-bg-color));
    background-size: 400% 400%, 12px 12px, cover; /* Size for animation, dots, base */
    background-attachment: fixed, fixed, fixed;
    background-position: 0% 50%, 0 0, 0 0;
    animation: subtleGradientShift 30s ease infinite;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* --- Container --- */
.container {
    width: 90%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

/* --- Typography & Links --- */
a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: color var(--transition-fast), text-shadow var(--transition-fast), filter var(--transition-fast);
    text-shadow: 0 0 5px var(--accent-glow-primary);
    display: inline-flex;
    align-items: center;
    gap: 0.4em;
    filter: brightness(1.0);
    word-break: break-word;
}
a:hover, a:focus {
    color: var(--accent-secondary);
    text-shadow: 0 0 8px var(--accent-glow-secondary), 0 0 15px var(--accent-glow-secondary);
    filter: brightness(1.1);
}
a:focus-visible {
    outline: 2px solid var(--accent-primary);
    outline-offset: 3px;
    box-shadow: 0 0 0 4px rgba(0, 224, 255, 0.3);
}
/* General Text */
p {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1.1rem;
}

/* Headings */
h1, h2, h3 {
    font-family: var(--font-primary);
    font-weight: 400;
    letter-spacing: 2px; /* Default spacing */
    position: relative;
}

h1 { /* Header Main Title */
    font-size: clamp(2rem, 5.5vw, 3.5rem); /* Responsive size */
    text-align: center;
    padding: 0.5rem 0;
    margin: 0;
    letter-spacing: 4px;
    animation: subtleTextPulse 6s infinite ease-in-out;
}
h1 a { color: inherit; text-shadow: none; text-decoration: none; }
h1 .gradient-text {
    background: linear-gradient(90deg, var(--accent-secondary), var(--accent-primary) 35%, var(--accent-gold-light) 70%, var(--accent-gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 0 15px var(--accent-glow-primary));
}

/* Section Headers (Homepage H2) */
h2 {
    font-size: clamp(1.8rem, 4.5vw, 2.8rem);
    color: var(--accent-primary);
    border-bottom: 1px solid var(--border-darker);
    padding-bottom: 1rem;
    margin: 3rem 0 2.5rem 0; /* Top, LR, Bottom */
    text-shadow: 0 0 8px var(--accent-glow-primary);
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    gap: 0.5em;
}
/* Decorative Brackets for H2 */
h2::before, h2::after {
    content: '[';
    speak: never;
    display: inline-block;
    color: var(--accent-alt);
    font-weight: 400;
    text-shadow: 0 0 6px var(--accent-glow-alt);
    font-size: 0.8em;
    opacity: 0.8;
    animation: bracketPulse 5s infinite ease-in-out;
}
h2::after { content: ']'; speak: never; }

/* Subheadings (e.g., Content Page H3) */
h3 {
    font-size: clamp(1.3rem, 3vw, 1.6rem);
    color: var(--accent-secondary);
    margin: 2rem 0 1rem 0;
    text-shadow: 0 0 6px var(--accent-glow-secondary);
    border-bottom: 1px solid rgba(85, 104, 136, 0.5); /* Lighter border */
    padding-bottom: 0.6rem;
}

/* --- Header --- */
.header-main {
    background: linear-gradient(180deg, rgba(9, 15, 26, 0.97), rgba(0, 1, 2, 0.96)); /* Slightly bluer top */
    padding: 1.5rem 0;
    border-bottom: 3px solid transparent; /* Use transparent base for border-image */
    border-image: linear-gradient(90deg, var(--accent-alt) 0%, var(--accent-primary) 30%, var(--accent-gold) 70%, var(--accent-alt) 100%) 1;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.6), 0 0 15px var(--accent-glow-primary) inset;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: headerBorderPulse 8s infinite linear;
}
.header-container { display: flex; flex-direction: column; align-items: center; justify-content: center; }
.header-main .contact-info {
    text-align: center;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    margin-top: 0.8rem;
    color: var(--text-medium);
    letter-spacing: 2px;
    text-transform: uppercase;
}
.header-main .contact-info a { color: var(--accent-secondary); text-shadow: none; }
.header-main .contact-info a:hover { color: var(--accent-primary); text-shadow: 0 0 8px var(--accent-glow-primary); }
.header-main .contact-info a[href^="mailto:"],
.header-main .contact-info a[href^="mailto:"] span,
.contact-info-footer a[href^="mailto:"],
.contact-info-footer a[href^="mailto:"] span,
a[href^="mailto:"] {
    text-transform: none !important;
}
/* --- Homepage: Disclosure Section --- */
.disclosure-section {
    background: rgba(15, 22, 40, 0.8); /* Use translucent bg */
    border: 1px solid var(--border-darker);
    border-left: 4px solid; /* Accent border on left */
    border-image: linear-gradient(180deg, var(--accent-alt), var(--accent-primary), var(--accent-gold)) 1;
    padding: 2rem 2.5rem;
    margin: 2.5rem auto;
    max-width: 900px; /* Limit width */
    width: 85%; /* Percentage width */
    border-radius: 6px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5), inset 0 1px 0px rgba(255, 255, 255, 0.03), inset 0 0 10px rgba(0, 224, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    clip-path: var(--clip-path-module); /* Apply clip path */
}
.disclosure-section h2 {
    font-size: clamp(1.5rem, 3.5vw, 2rem); /* Smaller H2 size */
    margin: 0 0 1.5rem 0; /* Reset top/bottom margin */
    padding-bottom: 0.8rem;
    color: var(--accent-secondary);
    border-bottom-color: rgba(85, 104, 136, 0.6);
    text-shadow: 0 0 6px var(--accent-glow-secondary);
}
/* Hide brackets specifically for disclosure H2 */
.disclosure-section h2::before, .disclosure-section h2::after { display: none; }
.disclosure-section p {
    color: var(--text-light); /* Lighter text for emphasis */
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    line-height: 1.8;
    margin-bottom: 0; /* Remove bottom margin on last element */
}

/* --- Homepage: Domain Grid --- */
.domain-grid { margin-bottom: 3rem; /* Spacing below grid section */ }
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem; /* Consistent gap */
    margin-bottom: 2.5rem; /* Space before contact info */
}

/* Enhanced Domain Item Styling */
.domain-item {
    background: linear-gradient(145deg, rgba(9, 15, 26, 0.85), rgba(15, 22, 40, 0.9));
    border: 1px solid var(--border-darker);
    padding: 2rem 1.8rem;
    clip-path: var(--clip-path-module);
    text-align: center;
    position: relative;
    overflow: hidden; /* Needed for pseudo-element effects */
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), background var(--transition-smooth);
    animation: slideUpFadeIn 0.6s var(--transition-smooth) backwards;
    animation-delay: calc(var(--delay-index) * var(--animation-delay-step)); /* Staggered animation */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.04);
    cursor: default; /* Indicate it's not directly clickable (unless linked later) */
}
.domain-item::before { /* GUI Indicator Element */
    content: '';
    position: absolute;
    top: 12px;
    right: 12px;
    width: 10px;
    height: 10px;
    background-color: var(--accent-primary);
    border-radius: 50%;
    opacity: 0.7;
    box-shadow: 0 0 8px var(--accent-glow-primary);
    animation: pulseIndicator 3s infinite ease-in-out;
    transition: background-color var(--transition-fast), box-shadow var(--transition-fast);
}
.domain-item-text {
    font-family: var(--font-primary);
    font-size: clamp(1.3rem, 3vw, 1.6rem);
    color: var(--text-light);
    display: block;
    transition: color var(--transition-fast), text-shadow var(--transition-fast);
    text-shadow: 0 0 3px rgba(237, 242, 247, 0.5); /* Subtle text shadow */
    letter-spacing: 1px;
}

/* Domain Item Hover/Focus State */
.domain-item:hover, .domain-item:focus-within { /* Use focus-within if items might contain focusable elements */
    transform: translateY(-6px) scale(1.02);
    background: linear-gradient(145deg, rgba(15, 22, 40, 0.95), rgba(20, 30, 50, 0.98));
    border-color: var(--accent-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px var(--accent-glow-primary), inset 0 0 10px var(--accent-glow-primary);
}
.domain-item:focus-within {
    outline: 2px solid var(--accent-primary);
    outline-offset: 3px;
}
.domain-item:hover::before {
    background-color: var(--accent-gold); /* Change indicator to gold on hover */
    box-shadow: 0 0 12px var(--accent-gold-glow);
    animation: pulseIndicatorGold 2s infinite ease-in-out; /* Different pulse */
}
.domain-item:hover .domain-item-text {
    color: var(--accent-gold-light); /* Text becomes gold on hover */
    text-shadow: 0 0 8px var(--accent-gold-glow), 0 0 15px var(--accent-gold-glow);
}

.contact-info-grid { /* Styling for contact info below the grid */
    text-align: center;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    margin-top: 2rem;
    color: var(--text-medium);
    letter-spacing: 1.5px;
}
.contact-info-grid a { color: var(--accent-secondary); }
.contact-info-grid a:hover { color: var(--accent-primary); text-shadow: 0 0 10px var(--accent-glow-primary); }

/* --- Content Page Specific Styles (Example - Kept for reference if style.css is global) --- */
.content-page {
    background: var(--bg-light-translucent);
    border: 1px solid var(--border-darker);
    padding: 2.5rem 3rem; /* Default large screen padding */
    margin: 3rem 0; /* Default large screen margin */
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6), inset 0 1px 0px rgba(255, 255, 255, 0.05), inset 0 0 8px rgba(0, 216, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.content-page h2 { /* Override general H2 styles for content pages */
    color: var(--accent-secondary);
    border-bottom: 1px solid var(--border-darker);
    padding-bottom: 0.8rem;
    margin-top: 0;
    margin-bottom: 1.8rem;
    text-shadow: 0 0 8px var(--accent-glow-primary);
    font-size: clamp(1.6rem, 5vw, 2.5rem);
    font-family: var(--font-primary);
    letter-spacing: 3px;
    animation: none; /* Override pulse animation */
}
.content-page h2::before, .content-page h2::after { display: none; } /* Hide brackets */
.content-page h3 {
    font-family: var(--font-primary);
    color: var(--accent-primary);
    margin-top: 2.2rem; margin-bottom: 1rem;
    font-size: clamp(1.2rem, 3vw, 1.4rem);
    letter-spacing: 2px;
    text-shadow: 0 0 6px var(--accent-glow-primary);
    border-bottom: 1px solid rgba(53, 64, 85, 0.5); padding-bottom: 0.5rem;
}
.content-page h3:first-of-type { margin-top: 0; }
/* ... other content page styles remain the same ... */
.content-page p, .content-page ul, .content-page ol {
    color: var(--text-medium); font-family: var(--font-secondary);
    margin-bottom: 1.2rem; font-size: clamp(1rem, 1.8vw + 0.7rem, 1.1rem); line-height: 1.7;
}
.content-page ul, .content-page ol { padding-left: 1.5rem; }
.content-page li { margin-bottom: 0.6rem; }
.content-page a { color: var(--accent-primary); text-decoration: underline; font-weight: 400; text-shadow: none; }
.content-page a:hover { text-decoration: underline; color: var(--accent-secondary); text-shadow: 0 0 6px var(--accent-glow-secondary); }
.content-page strong { color: var(--accent-secondary); font-weight: 700; }
.content-page em { font-style: normal; color: #c8d8e8; }
.content-page hr { border: 0; border-top: 1px solid var(--border-darker); margin: 2rem 0; }
.content-page .last-updated { text-align: right; font-size: 0.85em; margin-top: 2rem; color: var(--text-dark); opacity: 0.9; }
.content-page .acceptance { text-align: center; font-size: 0.9em; opacity: 0.8; margin-top: 1rem; }

/* --- Footer --- */
.footer-main {
    background: linear-gradient(180deg, var(--bg-medium), var(--bg-dark));
    padding: 3rem 0 2rem 0; /* Increased top padding */
    border-top: 2px solid transparent; /* Base for gradient */
    border-image: linear-gradient(90deg, var(--accent-primary) 0%, var(--accent-gold) 50%, var(--accent-primary) 100%) 1;
    margin-top: 5rem; /* Increased spacing before footer */
    font-size: 1rem;
    color: var(--text-medium);
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.7); /* Refined shadow */
    position: relative; /* For potential pseudo-elements */
}
.footer-content { text-align: center; }
.footer-content p { margin-bottom: 1rem; }


/* Footer Links Styling (CSS Separators) */
.footer-links {
    margin-bottom: 2rem; /* Increased spacing */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem 1.5rem; /* Row gap, Column gap */
    padding: 0;
    list-style: none;
}
.footer-links a {
    color: var(--accent-secondary);
    text-decoration: none;
    text-shadow: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast), text-shadow var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 1.5px; /* Slightly more spacing */
    white-space: nowrap;
    position: relative; /* Needed for pseudo-element */
    padding: 0.2rem 0.5rem; /* Add some padding for easier clicking */
}
.footer-links a:hover, .footer-links a:focus {
    color: var(--accent-primary);
    text-shadow: 0 0 8px var(--accent-glow-primary);
}
.footer-links a:focus-visible {
    outline: 2px solid var(--accent-primary);
    outline-offset: 3px;
}
/* CSS Separator */
.footer-links a:not(:last-child)::after {
    content: "|";
    position: absolute;
    right: -1rem; /* Position relative to the link */
    top: 50%;
    transform: translateY(-50%);
    color: var(--border-darker);
    opacity: 0.6;
    pointer-events: none;
    display: inline-block; /* Keep visible by default */
}

/* Footer Contact Info */
.contact-info-footer {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem; /* Increased spacing */
    color: var(--text-medium);
}
.contact-info-footer a {
    color: var(--accent-secondary); text-decoration: none; text-shadow: none;
    display: inline-flex; align-items: center;
    transition: color var(--transition-fast), text-shadow var(--transition-fast);
}
.contact-info-footer a:hover, .contact-info-footer a:focus {
    color: var(--accent-primary); text-shadow: 0 0 8px var(--accent-glow-primary);
}
.contact-info-footer a:focus-visible {
    outline: 2px solid var(--accent-primary);
    outline-offset: 3px;
}
.copyright {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: var(--text-medium);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* --- Error Page (404) --- */
.content-page.error-page {
    text-align: center;
    padding: 4rem 3rem;
}

/* --- Legal Documents Page --- */
.legal-content {
    padding-top: 3rem;
    padding-bottom: 3rem;
    text-align: center;
}
.legal-links-main {
    margin-top: 2rem;
    font-size: 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

/* --- Animations --- */
@keyframes subtleGradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes pulseIndicator {
    0%, 100% { transform: scale(1); opacity: 0.7; box-shadow: 0 0 8px var(--accent-glow-primary); }
    50% { transform: scale(0.9); opacity: 0.9; box-shadow: 0 0 12px var(--accent-glow-primary); }
}
@keyframes pulseIndicatorGold { /* Separate animation for gold hover */
    0%, 100% { transform: scale(1); opacity: 0.8; box-shadow: 0 0 10px var(--accent-gold-glow); }
    50% { transform: scale(0.9); opacity: 1; box-shadow: 0 0 15px var(--accent-gold-glow); }
}

@keyframes slideUpFadeIn {
    from { opacity: 0; transform: translateY(30px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes subtleTextPulse {
    0%, 100% { text-shadow: 0 0 8px var(--accent-glow-primary), 0 0 1px var(--text-light); filter: brightness(1); }
    50% { text-shadow: 0 0 12px var(--accent-glow-primary), 0 0 4px var(--accent-glow-secondary), 0 0 2px var(--text-light); filter: brightness(1.05); }
}

@keyframes bracketPulse {
     0%, 100% { opacity: 0.8; transform: scale(1); }
     50% { opacity: 1; transform: scale(1.05); text-shadow: 0 0 10px var(--accent-glow-alt); }
}

@keyframes headerBorderPulse { /* Subtle animation for header border */
    0% { border-image-source: linear-gradient(90deg, var(--accent-alt) 0%, var(--accent-primary) 30%, var(--accent-gold) 70%, var(--accent-alt) 100%); }
    25% { border-image-source: linear-gradient(90deg, var(--accent-alt) 20%, var(--accent-primary) 50%, var(--accent-gold) 80%, var(--accent-alt) 100%); }
    50% { border-image-source: linear-gradient(90deg, var(--accent-alt) 0%, var(--accent-primary) 20%, var(--accent-gold) 50%, var(--accent-alt) 80%); }
    75% { border-image-source: linear-gradient(90deg, var(--accent-alt) -10%, var(--accent-primary) 30%, var(--accent-gold) 60%, var(--accent-alt) 90%); }
    100% { border-image-source: linear-gradient(90deg, var(--accent-alt) 0%, var(--accent-primary) 30%, var(--accent-gold) 70%, var(--accent-alt) 100%); }
}

/* --- Responsive Adjustments --- */

/* Large devices (desktops, 1024px and up) */
@media (min-width: 1024px) {
    .footer-links { flex-wrap: nowrap; } /* Prevent wrapping */
    .footer-links a:not(:last-child)::after { display: inline-block; } /* Ensure separator shows */
}

/* Medium devices (tablets, between 768px and 1023px) */
@media (max-width: 1023px) {
    .container { padding: 0 2rem; } /* More padding */
    .disclosure-section { width: 90%; padding: 1.8rem 2rem; }
    .domain-item { padding: 1.8rem 1.5rem; }
    .footer-links { gap: 0.6rem 1.2rem; } /* Adjust gap */
    .footer-links a:not(:last-child)::after { right: -0.8rem; } /* Adjust separator position */
    /* Separator might still be visible or hidden based on wrapping */
}

/* Small devices (landscape phones, large portrait phones, ~768px and down) */
@media (max-width: 768px) {
    body { line-height: 1.65; } /* Slightly adjust line height */
    .container { width: 92%; padding: 0 1.5rem; }
    h1 { font-size: clamp(1.8rem, 6vw, 2.8rem); letter-spacing: 3px; }
    h2 { font-size: clamp(1.6rem, 4.5vw, 2.2rem); margin-top: 2.5rem; letter-spacing: 2px;}
    h2::before, h2::after { font-size: 0.7em; } /* Smaller brackets */

    .header-main { padding: 1.2rem 0; }
    .disclosure-section { width: 92%; clip-path: var(--clip-path-module-small); padding: 1.5rem 1.8rem; margin: 2rem auto; }
    .grid-container { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.8rem; }
    .domain-item { padding: 1.8rem 1.5rem; clip-path: var(--clip-path-module-small); }
    .domain-item::before { top: 10px; right: 10px; width: 8px; height: 8px; }
    .domain-item-text { font-size: clamp(1.2rem, 2.8vw, 1.5rem); }

    .footer-main { padding: 2.5rem 0 1.5rem; margin-top: 4rem; }
    .footer-links { gap: 0.5rem 1rem; }
    .footer-links a { font-size: 0.85rem; letter-spacing: 1px; }
    /* Hide separator when links wrap heavily */
    .footer-links a:not(:last-child)::after { display: none; } /* Hide separator completely on smaller screens */
    .contact-info-footer { font-size: 0.95rem; letter-spacing: 1.5px; }
    .copyright { font-size: 0.85rem; letter-spacing: 1.5px; }
}

/* Extra Small devices (portrait phones, ~600px and down) */
@media (max-width: 600px) {
    .container { width: 94%; padding: 0 1rem; }
    h1 { font-size: clamp(1.7rem, 7vw, 2.4rem); letter-spacing: 2px; }
    h2 { font-size: 1.5rem; margin-top: 2rem; margin-bottom: 1.5rem; }
    h2::before, h2::after { display: none; } /* Hide brackets on smallest screens */

    .header-main {
        padding: 1rem 0;
        /* Consider removing sticky position if it causes layout issues */
        /* position: static; */
        /* backdrop-filter: none; */ /* Remove blur if performance is an issue */
        /* -webkit-backdrop-filter: none; */
    }
    .header-main .contact-info { font-size: 0.85rem; }

    .disclosure-section {
        clip-path: none; /* Remove clip path */
        border-radius: 6px; /* Standard radius */
        width: 94%;
        padding: 1.2rem 1.3rem;
        margin: 1.5rem auto;
        border-left-width: 3px; /* Slightly thinner border */
    }
     .disclosure-section p { font-size: 0.9rem; line-height: 1.7; }

    .grid-container { grid-template-columns: 1fr; gap: 1.5rem; }
    .domain-item {
        clip-path: none; /* Remove clip path */
        border-radius: 8px; /* Standard radius */
        font-size: 1.3rem;
        padding: 1.5rem 1.2rem;
    }
     .domain-item::before { top: 8px; right: 8px; width: 7px; height: 7px; }
     .domain-item:hover, .domain-item:focus-within { transform: translateY(-4px) scale(1.01); } /* Less dramatic hover */

    .contact-info-grid { font-size: 0.95rem; margin-top: 1.5rem; }

    .footer-main { margin-top: 3rem; padding: 2rem 0 1.2rem 0; }
    .footer-links { margin-bottom: 1.5rem; gap: 0.4rem 0.8rem; } /* Adjust gap */
    .footer-links a { font-size: 0.8rem; padding: 0.5rem 0.75rem; min-height: 44px; display: inline-flex; align-items: center; }

    .contact-info-footer { font-size: 0.9rem; letter-spacing: 1.5px; margin-bottom: 1.2rem; }
    .copyright { font-size: 0.8rem; letter-spacing: 1.5px; margin-top: 1.5rem; }
}

/* --- Skip Link (Accessibility) --- */
.skip-link {
    position: absolute;
    left: -999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.skip-link:focus {
    left: 1rem;
    top: 1rem;
    width: auto;
    height: auto;
    background: var(--accent-primary);
    color: var(--bg-dark);
    padding: 0.5rem 0.75rem;
    border: 2px solid var(--accent-primary);
    z-index: 1000;
    box-shadow: 0 0 20px var(--accent-glow-primary);
    font-weight: 400;
    text-shadow: none;
}

/* --- Visually Hidden (Screen Reader Only) --- */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
    padding: 0;
    margin: -1px;
}

/* --- Forced Colors / High Contrast Mode --- */
@media (forced-colors: active) {
    .gradient-text {
        color: CanvasText;
        background: none;
        -webkit-background-clip: border-box;
        background-clip: border-box;
        filter: none;
    }
}

/* --- Reduced Motion (Accessibility) --- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
}
