/* ==========================================================================
   Branduals New Design System
   Used by MainLayout.razor and /final page
   ========================================================================== */

/* --------------------------------------------------------------------------
   Custom Properties
   -------------------------------------------------------------------------- */
:root {
    --brand-orange: #FF6100;
    --brand-orange-light: #ff7a2f;
    --brand-orange-dark: #e65800;

    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-brand: 'Ladislav', 'Inter', sans-serif;

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   Hide reCAPTCHA badge (attribution in footer per Google TOS)
   -------------------------------------------------------------------------- */
.grecaptcha-badge {
    visibility: hidden !important;
}

/* --------------------------------------------------------------------------
   Selection
   -------------------------------------------------------------------------- */
::selection {
    background: var(--brand-orange);
    color: #fff;
}

/* --------------------------------------------------------------------------
   Scrollbar
   -------------------------------------------------------------------------- */
.site-main::-webkit-scrollbar,
html::-webkit-scrollbar {
    width: 6px;
}
.site-main::-webkit-scrollbar-track,
html::-webkit-scrollbar-track {
    background: #000;
}
.site-main::-webkit-scrollbar-thumb,
html::-webkit-scrollbar-thumb {
    background: var(--brand-orange);
}

/* --------------------------------------------------------------------------
   Fixed Background + Noise
   -------------------------------------------------------------------------- */
.site-bg {
    position: fixed;
    inset: 0;
    z-index: -100;
    background: linear-gradient(to bottom, #000000 0%, #0a0a0a 40%, #1a1a1a 70%, #eeeeee 100%);
}

.noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.04;
    z-index: 9998;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 40px;
    mix-blend-mode: difference;
}

.site-nav-logo {
    font-family: var(--font-brand);
    font-size: 26px;
    font-weight: 700;
    color: var(--brand-orange);
    text-decoration: none;
    transition: opacity 0.2s;
}

.site-nav-logo:hover {
    opacity: 0.9;
}

.site-nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.site-nav-links a {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}

.site-nav-links a:hover {
    color: var(--brand-orange);
}

.site-nav-signin {
    background: #fff;
    color: #000 !important;
    padding: 8px 20px;
    transition: background 0.2s, color 0.2s !important;
}

.site-nav-signin:hover {
    background: var(--brand-orange) !important;
    color: #fff !important;
}

.site-nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.site-nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: transform 0.3s, opacity 0.3s;
}

/* --------------------------------------------------------------------------
   Mobile Menu
   -------------------------------------------------------------------------- */
.site-mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 99;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.site-mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
}

.site-mobile-menu-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.site-mobile-menu-inner a {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}

.site-mobile-menu-inner a:hover {
    color: var(--brand-orange);
}

.site-mobile-signin {
    background: var(--brand-orange);
    color: #fff !important;
    padding: 12px 32px;
    margin-top: 16px;
    font-size: 14px !important;
    letter-spacing: 0.15em;
}

/* --------------------------------------------------------------------------
   Main Content
   -------------------------------------------------------------------------- */
.site-main {
    position: relative;
    z-index: 1;
}

/* --------------------------------------------------------------------------
   Section Base
   -------------------------------------------------------------------------- */
.section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 96px;
    overflow: hidden;
    z-index: 10;
}

.section--short {
    min-height: auto;
    padding: 80px 96px;
}

.section--white {
    background: #fff;
    color: #000;
}

.section-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

/* --------------------------------------------------------------------------
   Scroll Animations
   -------------------------------------------------------------------------- */
[data-animate] {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

[data-animate="delay-1"] {
    transition-delay: 0.1s;
}

[data-animate="delay-2"] {
    transition-delay: 0.2s;
}

[data-animate="delay-3"] {
    transition-delay: 0.3s;
}

/* --------------------------------------------------------------------------
   Typography - New Site
   -------------------------------------------------------------------------- */
.heading-display {
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.04em;
    line-height: 0.85;
}

.heading-display--hero {
    font-size: clamp(56px, 10vw, 160px);
}

.heading-display--large {
    font-size: clamp(48px, 8vw, 128px);
}

.heading-display--section {
    font-size: clamp(36px, 5vw, 72px);
}

.heading-display--sub {
    font-size: clamp(28px, 3vw, 48px);
}

.text-orange {
    color: var(--brand-orange);
}

.text-body {
    font-family: var(--font-body);
    font-size: 20px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.text-body--dark {
    color: rgba(0, 0, 0, 0.6);
}

.text-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn-brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--brand-orange);
    color: #fff;
    padding: 16px 32px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s, background 0.2s;
}

.btn-brand:hover {
    transform: scale(1.03);
}

.btn-contrast {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #000;
    padding: 16px 32px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}

.btn-contrast:hover {
    background: var(--brand-orange);
    color: #fff;
}

.btn-large {
    padding: 24px 48px;
    font-size: 20px;
}

/* --------------------------------------------------------------------------
   Divider
   -------------------------------------------------------------------------- */
.divider-brand {
    width: 64px;
    height: 4px;
    background: var(--brand-orange);
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(18px, 2vw, 28px);
    font-weight: 500;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: -0.02em;
    max-width: 640px;
    margin-bottom: 40px;
}

/* --------------------------------------------------------------------------
   Intelligence Sphere Visualization
   -------------------------------------------------------------------------- */
.viz-container {
    position: relative;
    width: 100%;
    aspect-ratio: 7 / 6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.viz-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

/* Parallax depth layers - slow drifting */
.viz-layer-far {
    animation: viz-drift-far 35s ease-in-out infinite alternate;
}

.viz-layer-mid {
    animation: viz-drift-mid 28s ease-in-out infinite alternate;
}

.viz-layer-near {
    animation: viz-drift-near 22s ease-in-out infinite alternate;
}

@keyframes viz-drift-far {
    0% { transform: translate(0, 0); }
    100% { transform: translate(6px, -8px); }
}

@keyframes viz-drift-mid {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-5px, 4px); }
}

@keyframes viz-drift-near {
    0% { transform: translate(0, 0); }
    100% { transform: translate(3px, -3px); }
}

/* Scanning sweep rotation */
.viz-scan {
    animation: viz-scan-rotate 10s linear infinite;
}

@keyframes viz-scan-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Node pulsing */
.viz-pulse {
    animation: viz-pulse-a 3.5s ease-in-out infinite;
}

.viz-pulse-b {
    animation: viz-pulse-a 3.5s ease-in-out infinite;
    animation-delay: 1.7s;
}

@keyframes viz-pulse-a {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Core breathing */
.viz-breathe {
    animation: viz-breathe 5s ease-in-out infinite;
}

.viz-breathe-core {
    animation: viz-breathe-core 4s ease-in-out infinite;
}

@keyframes viz-breathe {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes viz-breathe-core {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* Floating accent shapes */
.viz-float {
    animation: viz-float-a 7s ease-in-out infinite;
}

.viz-float-b {
    animation: viz-float-a 7s ease-in-out infinite;
    animation-delay: 3.5s;
}

@keyframes viz-float-a {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(-6px); opacity: 0.6; }
}

/* --------------------------------------------------------------------------
   Philosophy Section
   -------------------------------------------------------------------------- */
.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.philosophy-prose p {
    margin-bottom: 24px;
}

.temporal-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.temporal-feature svg {
    flex-shrink: 0;
    color: var(--brand-orange);
}

.temporal-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
}

.temporal-list li {
    font-family: var(--font-body);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    padding: 4px 0;
}

.temporal-list li::before {
    content: '•';
    color: var(--brand-orange);
    margin-right: 8px;
}

/* --------------------------------------------------------------------------
   Opinionated Section
   -------------------------------------------------------------------------- */
.opinionated-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 96px;
}

.constraints-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.constraints-list li {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--brand-orange);
    padding: 12px 0;
}

/* --------------------------------------------------------------------------
   Product Grid (Bento)
   -------------------------------------------------------------------------- */
.product-heading {
    text-align: right;
    margin-bottom: 48px;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 4px;
}

.bento-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 48px;
    transition: background 0.5s, color 0.5s;
    position: relative;
    overflow: hidden;
}

.bento-card:hover {
    background: var(--brand-orange);
}

.bento-card:hover .bento-card-icon {
    color: #fff;
}

.bento-card:hover .bento-card-title {
    color: #fff;
}

.bento-card:hover .bento-card-desc {
    color: rgba(255, 255, 255, 0.8);
}

.bento-card--featured {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-card-icon {
    color: var(--brand-orange);
    margin-bottom: 24px;
    transition: color 0.5s;
}

.bento-card-title {
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    transition: color 0.5s;
}

.bento-card--featured .bento-card-title {
    font-size: 36px;
}

.bento-card:not(.bento-card--featured) .bento-card-title {
    font-size: 20px;
}

.bento-card-desc {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.5s;
}

.bento-card--featured .bento-card-desc {
    font-size: 18px;
}

/* --------------------------------------------------------------------------
   Temporal Engine Section
   -------------------------------------------------------------------------- */
.temporal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 96px;
    align-items: center;
}

.temporal-left {
    position: relative;
}

.temporal-ghost {
    position: absolute;
    left: -48px;
    top: -40px;
    font-family: var(--font-display);
    font-size: clamp(120px, 16vw, 240px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.06em;
    opacity: 0.04;
    pointer-events: none;
    user-select: none;
    line-height: 1;
}

.temporal-features {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 48px;
}

.temporal-feature-item {
    display: flex;
    gap: 24px;
    border-left: 4px solid var(--brand-orange);
    padding-left: 24px;
    padding-top: 4px;
    padding-bottom: 4px;
}

.temporal-feature-num {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--brand-orange);
    flex-shrink: 0;
}

.temporal-feature-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
}

.temporal-feature-desc {
    font-family: var(--font-body);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.45);
}

.temporal-visual {
    position: relative;
    aspect-ratio: 1;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.temporal-visual-number {
    font-family: var(--font-display);
    font-size: clamp(80px, 10vw, 144px);
    font-weight: 700;
    color: var(--brand-orange);
    line-height: 1;
}

.temporal-visual-label {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-top: 8px;
}

/* --------------------------------------------------------------------------
   Quote Section
   -------------------------------------------------------------------------- */
.quote-section {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.quote-text {
    font-family: var(--font-display);
    font-size: clamp(40px, 7vw, 96px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.04em;
    line-height: 0.95;
}

/* --------------------------------------------------------------------------
   Pricing Section
   -------------------------------------------------------------------------- */
.pricing-center {
    text-align: center;
}

.pricing-amount {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.75);
    margin: 24px 0 48px;
}

/* --------------------------------------------------------------------------
   Domain Reservation Section
   -------------------------------------------------------------------------- */
.reservation-section {
    background: #fff;
    color: #000;
    padding: 120px 96px;
    position: relative;
    z-index: 10;
}

.reservation-container {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.reservation-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.04em;
    line-height: 0.9;
    color: #000;
    margin-bottom: 16px;
}

.reservation-subtitle {
    font-family: var(--font-body);
    font-size: 20px;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 48px;
}

.domain-form {
    margin: 0 auto;
    max-width: 480px;
}

.domain-input-row {
    display: flex;
    align-items: stretch;
    border: 2px solid #000;
    margin-bottom: 12px;
}

.domain-input-row input {
    flex: 1;
    border: none;
    padding: 16px 20px;
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    outline: none;
    background: transparent;
    color: #000;
    min-width: 0;
}

.domain-input-row input::placeholder {
    color: rgba(0, 0, 0, 0.3);
}

.domain-suffix {
    display: flex;
    align-items: center;
    padding: 0 20px;
    font-family: var(--font-body);
    font-size: 18px;
    color: rgba(0, 0, 0, 0.4);
    white-space: nowrap;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.03);
}

.domain-status {
    font-family: var(--font-body);
    font-size: 14px;
    min-height: 24px;
    margin-bottom: 16px;
    text-align: left;
}

.domain-status.checking {
    color: rgba(0, 0, 0, 0.5);
}

.domain-status.available {
    color: #16a34a;
    font-weight: 600;
}

.domain-status.unavailable {
    color: #dc2626;
}

.domain-status.hint {
    color: rgba(0, 0, 0, 0.4);
}

.reservation-btn {
    width: 100%;
    padding: 16px;
    background: #000;
    color: #fff;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.reservation-btn:hover:not(:disabled) {
    background: var(--brand-orange);
}

.reservation-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.reservation-error {
    color: #dc2626;
    font-size: 14px;
    margin-top: 12px;
}

.reservation-rules {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.4);
    margin-top: 16px;
}

.reservation-signin {
    font-size: 15px;
    color: rgba(0, 0, 0, 0.5);
    margin-top: 32px;
}

.reservation-signin a {
    color: var(--brand-orange);
    font-weight: 600;
    text-decoration: none;
}

.reservation-signin a:hover {
    text-decoration: underline;
}

/* --------------------------------------------------------------------------
   Meandering SVG Line
   -------------------------------------------------------------------------- */
.meandering-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: visible;
    mask-image: linear-gradient(to bottom, black 0%, transparent 0%);
    -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 0%);
}

.meandering-line svg {
    width: 100%;
    height: 100%;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
    background: #eee;
    color: #000;
    padding: 96px 96px 0;
    position: relative;
    z-index: 10;
}

.site-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    max-width: 1400px;
    margin: 0 auto;
}

.site-footer-logo {
    font-family: var(--font-brand);
    font-size: 32px;
    font-weight: 700;
    color: var(--brand-orange);
    margin-bottom: 16px;
}

.site-footer-brand p {
    font-family: var(--font-body);
    font-size: 16px;
    color: rgba(0, 0, 0, 0.5);
    max-width: 360px;
    line-height: 1.6;
}

.site-footer-col h4 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.site-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer-col ul li {
    margin-bottom: 12px;
}

.site-footer-col a {
    font-family: var(--font-body);
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.site-footer-col a:hover {
    color: var(--brand-orange);
}

.site-footer-col p {
    font-family: var(--font-body);
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 8px;
}

.site-footer-bottom {
    display: flex;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 32px 0;
    margin-top: 64px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(0, 0, 0, 0.3);
}

/* --------------------------------------------------------------------------
   Responsive - Tablet (1024px)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .section {
        padding: 80px 48px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .opinionated-grid {
        grid-template-columns: 1fr;
        gap: 64px;
    }

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

    .bento-card--featured {
        grid-column: span 2;
        grid-row: span 1;
    }

    .temporal-grid {
        grid-template-columns: 1fr;
        gap: 64px;
    }

    .site-footer {
        padding: 64px 48px 0;
    }

    .site-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .reservation-section {
        padding: 80px 48px;
    }

    .site-nav {
        padding: 20px 24px;
    }
}

/* --------------------------------------------------------------------------
   Responsive - Mobile (768px)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
    .section {
        padding: 64px 24px;
    }

    .site-nav-links {
        display: none;
    }

    .site-nav-hamburger {
        display: flex;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-card--featured {
        grid-column: span 1;
        grid-row: span 1;
    }

    .bento-card {
        padding: 32px;
    }

    .site-footer {
        padding: 48px 24px 0;
    }

    .site-footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .site-footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .reservation-section {
        padding: 64px 24px;
    }

    .domain-input-row {
        flex-direction: column;
    }

    .domain-suffix {
        border-left: none;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        padding: 12px 20px;
        justify-content: center;
    }
}

/* --------------------------------------------------------------------------
   Responsive - Small (480px)
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
    .section {
        padding: 48px 16px;
    }

    .bento-card {
        padding: 24px;
    }

    .reservation-section {
        padding: 48px 16px;
    }

    .site-footer {
        padding: 32px 16px 0;
    }
}

/* --------------------------------------------------------------------------
   Reduced Motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    [data-animate] {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .dnn-node,
    .dnn-signal,
    .dnn-connection--active {
        animation: none;
    }

    #meandering-path {
        stroke-dasharray: none !important;
        stroke-dashoffset: 0 !important;
    }
}
