/* ==========================================================================
   Base Foundation (reset, variables, typography)
   ========================================================================== */

/* Design Tokens */
:root {
    --branduals-orange: #ef4600;
    --branduals-orange-light: #ff6520;
    --branduals-orange-dark: #d63e00;
    --bg-primary: #1A1D23;
    --bg-card: #16191F;
    --bg-card-alt: #0F1116;
    --border-primary: #2E323A;
    --border-secondary: #1E2229;
    --text-primary: #FFFFFF;
    --text-secondary: #94A3B8;
    --text-tertiary: #64748B;
    --text-muted: #475569;
    --font-family-base: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    --font-family-brand: 'Ladislav', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    --container-max-width: 1280px;
    --transition-speed: 200ms;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scrollbar-gutter: stable;
    scroll-behavior: smooth;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: var(--font-family-base);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Base Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    outline: none !important;
}

h1 { font-size: 80px; letter-spacing: normal; }
h2 { font-size: 56px; letter-spacing: normal; }
h3 { font-size: 32px; }

p {
    margin: 0;
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-secondary);
}

a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-speed);
}

a:hover {
    color: var(--text-primary);
}

/* Utilities */
.text-muted {
    color: var(--text-tertiary);
}

.section-title-contrast {
    line-height: 1.3;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 80px;
    width: 100%;
}

.branduals-inline {
    font-family: var(--font-family-brand);
    color: var(--branduals-orange);
    font-weight: 600;
    transition: color var(--transition-speed) ease;
}

.branduals-inline:hover {
    color: var(--branduals-orange-light);
}


/* ==========================================================================
   Main Design System
   ========================================================================== */

/* ==========================================================================
   Branduals New Design System
   Used by MainLayout.razor and /final page
   ========================================================================== */

/* --------------------------------------------------------------------------
   Brand Font
   -------------------------------------------------------------------------- */
@font-face {
    font-family: 'Ladislav';
    src: url('/fonts/Ladislav_SemiBold.eot');
    src: url('/fonts/Ladislav_SemiBold.eot?#iefix') format('embedded-opentype'),
         url('/fonts/Ladislav_SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* --------------------------------------------------------------------------
   Custom Properties
   -------------------------------------------------------------------------- */
:root {
    --brand-orange: #ef4600;
    --brand-orange-light: #ff6520;
    --brand-orange-dark: #d63e00;

    --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: 20px 40px;
    background: rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(12px) saturate(1.2);
    -webkit-backdrop-filter: blur(12px) saturate(1.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.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-user {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.site-nav-signout {
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 14px;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    transition: color 0.2s, border-color 0.2s !important;
}

.site-nav-signout:hover {
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.4);
}

.site-mobile-user {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.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;
}

/* --------------------------------------------------------------------------
   User Menu
   -------------------------------------------------------------------------- */
.user-menu {
    position: relative;
}

.user-menu-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    padding: 0;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.user-menu-trigger:hover {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.user-menu-initials {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: var(--brand-orange);
    color: #fff;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
}

.user-menu-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-menu-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    min-width: 260px;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(20px) saturate(1.3);
    -webkit-backdrop-filter: blur(20px) saturate(1.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
    z-index: 200;
}

.user-menu-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-menu-header {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.user-menu-name {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.user-menu-email {
    font-family: var(--font-body);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
}

.user-menu-brands {
    padding: 12px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.user-menu-label {
    display: block;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.3);
    padding: 0 12px 8px;
}

.user-menu-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.15s;
}

.user-menu-brand:hover {
    background: rgba(255, 255, 255, 0.06);
}

.user-menu-brand-initial {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: rgba(239, 70, 0, 0.15);
    color: var(--brand-orange);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.user-menu-brand-name {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: #fff;
}

.user-menu-actions {
    padding: 8px;
}

.user-menu-action {
    display: block;
    padding: 8px 12px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

.user-menu-action:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.user-menu-signout {
    color: rgba(255, 255, 255, 0.4);
}

.user-menu-signout:hover {
    color: var(--brand-orange);
}

/* --------------------------------------------------------------------------
   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-content {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.site-main {
    position: relative;
    flex: 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-brand--hero {
    flex-direction: column;
    gap: 4px;
}

.btn-brand-sub {
    font-size: 11px;
    font-weight: 400;
    text-transform: none;
    opacity: 0.7;
    letter-spacing: 0.02em;
}

.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-left: 0;
    margin-bottom: 20px;
}

.hero-launch-notice {
    font-family: var(--font-body);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 40px;
    letter-spacing: 0.01em;
}

.hero-launch-notice a {
    color: var(--brand-orange);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.hero-launch-notice a:hover {
    color: var(--brand-orange-light);
}

/* --------------------------------------------------------------------------
   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;
}

.philosophy-practice {
    padding-top: 8px;
}

.practice-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.practice-list li {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.55);
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.practice-list li:last-child {
    border-bottom: none;
}

.practice-quote {
    display: block;
    font-style: italic;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 4px;
}

/* --------------------------------------------------------------------------
   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: rgba(239, 70, 0, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-color: rgba(239, 70, 0, 0.25);
}

.bento-card:hover .bento-card-icon {
    color: var(--brand-orange);
}

.bento-card:hover .bento-card-title {
    color: #fff;
}

.bento-card:hover .bento-card-desc {
    color: rgba(255, 255, 255, 0.7);
}

.bento-card--wide {
    grid-column: 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-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    transition: color 0.5s;
}

.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;
}

/* --------------------------------------------------------------------------
   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;
}

/* --------------------------------------------------------------------------
   Integrations Strip
   -------------------------------------------------------------------------- */
.integrations-strip {
    padding: 80px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.integrations-heading {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 48px;
}

.integrations-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.integrations-group {
    display: flex;
    align-items: center;
    gap: 48px;
}

.integrations-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.integrations-logo:hover {
    opacity: 1;
}

.integrations-logo span {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.4);
}

.integrations-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
}

.integrations-desc {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    max-width: 640px;
    margin: 0 auto;
}

.integrations-statements {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    max-width: 960px;
    margin: 0 auto;
    text-align: left;
}

.integrations-statement-headline {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
    line-height: 1.3;
}

.integrations-statement-body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 768px) {
    .integrations-logos {
        gap: 32px;
    }

    .integrations-group {
        gap: 32px;
    }

    .integrations-divider {
        display: none;
    }

    .integrations-statements {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
}

/* --------------------------------------------------------------------------
   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;
}

.quote-body {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.55);
    max-width: 720px;
    margin: 40px auto 0;
}

/* --------------------------------------------------------------------------
   Pricing Section (Home Page + /pricing)
   -------------------------------------------------------------------------- */
.pricing-header {
    text-align: center;
    margin-bottom: 64px;
}

.pricing-lead {
    font-family: var(--font-body);
    font-size: 20px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 24px auto 0;
}

.pricing-ea-banner {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--brand-orange);
    border: 1px solid rgba(239, 70, 0, 0.3);
    padding: 8px 20px;
    margin-bottom: 32px;
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 56px;
}

.pricing-toggle-btn {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 10px 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: transparent;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.pricing-toggle-btn:first-child {
    border-right: none;
}

.pricing-toggle-btn.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
}

.pricing-toggle-btn:hover:not(.active) {
    color: rgba(255, 255, 255, 0.7);
}

.pricing-toggle-save {
    font-size: 11px;
    color: var(--brand-orange);
    margin-left: 6px;
}

/* Tier Cards Grid */
.pricing-tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-tier {
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 48px 36px;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s;
}

.pricing-tier + .pricing-tier {
    border-left: none;
}

.pricing-tier:hover {
    border-color: rgba(255, 255, 255, 0.12);
}

.pricing-tier--featured {
    border-color: var(--brand-orange);
    position: relative;
}

.pricing-tier--featured:hover {
    border-color: var(--brand-orange);
}

.pricing-tier + .pricing-tier--featured,
.pricing-tier--featured + .pricing-tier {
    border-left: 1px solid var(--brand-orange);
}

.pricing-tier-badge {
    position: absolute;
    top: -1px;
    left: 36px;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #000;
    background: var(--brand-orange);
    padding: 4px 12px;
}

.pricing-tier-name {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 24px;
}

.pricing-tier-price {
    margin-bottom: 32px;
}

.pricing-tier-original {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.25);
    text-decoration: line-through;
    display: block;
    margin-bottom: 4px;
}

.pricing-tier-current {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #fff;
    line-height: 1;
}

.pricing-tier--featured .pricing-tier-current {
    color: var(--brand-orange);
}

.pricing-tier-period {
    font-family: var(--font-body);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.35);
    margin-left: 4px;
}

.pricing-tier-ea-label {
    display: block;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--brand-orange);
    margin-top: 8px;
}

.pricing-tier-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
    flex: 1;
}

.pricing-tier-features li {
    font-family: var(--font-body);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    padding: 7px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.pricing-tier-features li:last-child {
    border-bottom: none;
}

.pricing-tier-features .feature-highlight {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

.pricing-tier-cta .btn-brand,
.pricing-tier-cta .btn-tier {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 13px;
}

.btn-tier {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    padding: 14px 24px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    text-decoration: none;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.btn-tier:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.04);
}

/* Enterprise Line */
.pricing-enterprise {
    text-align: center;
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.pricing-enterprise-text {
    font-family: var(--font-body);
    font-size: 16px;
    color: rgba(255, 255, 255, 0.45);
}

.pricing-enterprise-text a {
    color: var(--brand-orange);
    font-weight: 600;
    text-decoration: none;
}

.pricing-enterprise-text a:hover {
    text-decoration: underline;
}

/* Footer Notes */
.pricing-footer {
    text-align: center;
    margin-top: 56px;
    padding-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.pricing-footer-statement {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    max-width: 560px;
    margin: 0 auto;
}

.pricing-footer-statement + .pricing-footer-statement {
    margin-top: 12px;
}

.pricing-footer-note {
    font-family: var(--font-body);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
}

.pricing-footer-note + .pricing-footer-note {
    margin-top: 4px;
}

.pricing-compare {
    font-family: var(--font-body);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 32px;
}

.pricing-compare a {
    color: var(--brand-orange);
    font-weight: 600;
    text-decoration: none;
}

.pricing-compare a:hover {
    text-decoration: underline;
}

/* Pricing page content - wider than legal-container */
.pricing-page-content {
    max-width: 1100px;
}

.pricing-page-heading {
    font-family: var(--font-display);
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.04em;
    color: #fff;
    margin-bottom: 48px;
    margin-top: 96px;
    padding-top: 16px;
    text-align: center;
}

.pricing-footer-cta {
    margin-top: 32px;
}

.pricing-storage-note {
    font-family: var(--font-body);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    margin-top: 16px;
}

.pricing-page-bottom-cta {
    text-align: center;
    margin-top: 64px;
    padding-bottom: 80px;
}

.pricing-matrix th:first-child {
    text-align: left;
}

/* --------------------------------------------------------------------------
   Pricing Page - Feature Comparison Matrix
   -------------------------------------------------------------------------- */
.pricing-matrix {
    max-width: 1100px;
    margin: 0 auto;
    border-collapse: collapse;
    width: 100%;
    table-layout: fixed;
}

.pricing-matrix col:first-child {
    width: 30%;
}

.pricing-matrix th,
.pricing-matrix td {
    font-family: var(--font-body);
    padding: 12px 16px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-matrix thead {
    position: sticky;
    top: 80px;
    z-index: 10;
}

.pricing-matrix th {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.6);
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: #0a0a0a;
}

.pricing-matrix td:first-child {
    text-align: left;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.pricing-matrix td {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.pricing-matrix .matrix-category td {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.45);
    padding-top: 32px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-matrix .matrix-check {
    color: var(--brand-orange);
}

.pricing-matrix .matrix-dash {
    color: rgba(255, 255, 255, 0.2);
}

/* --------------------------------------------------------------------------
   Pricing Page - FAQ (Collapsible)
   -------------------------------------------------------------------------- */
.pricing-faq {
    max-width: 720px;
    margin: 0 auto;
}

.pricing-faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pricing-faq-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.pricing-faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    padding: 24px 0;
    cursor: pointer;
    transition: color 0.2s;
}

.pricing-faq-q:hover {
    color: #fff;
}

.pricing-faq-q::after {
    content: '+';
    font-size: 20px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
    transition: transform 0.2s, color 0.2s;
}

.pricing-faq-item.open .pricing-faq-q::after {
    content: '\2212';
    color: var(--brand-orange);
}

.pricing-faq-a {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding-bottom: 0;
}

.pricing-faq-item.open .pricing-faq-a {
    max-height: 200px;
    padding-bottom: 24px;
}

/* --------------------------------------------------------------------------
   Start Page (Dark)
   -------------------------------------------------------------------------- */
.start-section-dark {
    padding: 0 96px 120px;
}

.start-container {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
}

/* Domain Form - Dark variant */
.domain-form-dark {
    margin: 0 auto;
    max-width: 480px;
}

.domain-input-row-dark {
    display: flex;
    align-items: stretch;
    border: none;
    margin-bottom: 12px;
    background: #fff;
    transition: box-shadow 0.2s;
}

.domain-input-row-dark:focus-within {
    box-shadow: 0 0 0 2px var(--brand-orange);
}

.domain-input-row-dark 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-dark input::placeholder {
    color: rgba(0, 0, 0, 0.3);
}

.domain-suffix-dark {
    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-dark {
    font-family: var(--font-body);
    font-size: 14px;
    min-height: 24px;
    margin-bottom: 16px;
    text-align: left;
}

.domain-status-dark.checking {
    color: rgba(255, 255, 255, 0.5);
}

.domain-status-dark.available {
    color: #4ade80;
    font-weight: 600;
}

.domain-status-dark.unavailable {
    color: #f87171;
}

.domain-status-dark.hint {
    color: rgba(255, 255, 255, 0.45);
}

.domain-status-dark.requires-approval {
    color: #60a5fa;
}

.domain-status-dark .requires-approval-hint {
    color: #60a5fa;
    font-weight: 600;
}

.domain-status-dark .requires-approval-hint a {
    color: #93bbfd;
    text-decoration: underline;
}

.start-btn {
    width: 100%;
    padding: 16px;
    background: var(--brand-orange);
    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: transform 0.2s, background 0.2s;
}

.start-btn:hover:not(:disabled) {
    transform: scale(1.02);
}

.start-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.start-error {
    color: #f87171;
    font-size: 14px;
    margin-top: 12px;
}

.start-rules {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 16px;
}

.start-compare {
    font-family: var(--font-body);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 40px;
}

.start-compare a {
    color: var(--brand-orange);
    font-weight: 600;
    text-decoration: none;
}

.start-compare a:hover {
    text-decoration: underline;
}

.start-signin {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 16px;
}

.start-signin a {
    color: var(--brand-orange);
    font-weight: 600;
    text-decoration: none;
}

.start-signin a:hover {
    text-decoration: underline;
}

/* --------------------------------------------------------------------------
   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);
}

.domain-status.requires-approval {
    color: #2563eb;
}

.domain-status .requires-approval-hint {
    color: #2563eb;
    font-weight: 600;
}

.domain-status .requires-approval-hint a {
    color: #1e40af;
    text-decoration: underline;
}

.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;
}

/* --------------------------------------------------------------------------
   Status Pages (Confirm, Unsubscribe, etc.)
   -------------------------------------------------------------------------- */
.status-page {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 24px 60px;
}

.status-container {
    max-width: 520px;
    text-align: center;
}

.status-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-icon--success {
    background: rgba(34, 197, 94, 0.1);
    color: #22C55E;
    border: 2px solid rgba(34, 197, 94, 0.2);
}

.status-icon--error {
    background: rgba(239, 68, 68, 0.1);
    color: #EF4444;
    border: 2px solid rgba(239, 68, 68, 0.2);
}

.status-icon--neutral {
    background: rgba(239, 70, 0, 0.1);
    color: var(--brand-orange);
    border: 2px solid rgba(239, 70, 0, 0.15);
}

.status-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.status-message {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
}

.status-submessage {
    font-family: var(--font-body);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 32px;
}

.status-btn {
    display: inline-block;
    padding: 14px 32px;
    background: var(--brand-orange);
    color: #fff;
    border: none;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}

.status-btn:hover {
    background: var(--brand-orange-light);
    transform: translateY(-1px);
}

.status-btn:active {
    transform: translateY(0);
}

.status-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.status-btn--muted {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.6);
}

.status-btn--muted:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.25);
    color: #fff;
}

.status-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 32px;
}

/* --------------------------------------------------------------------------
   Legal Pages (Terms, Privacy)
   -------------------------------------------------------------------------- */
.legal-page {
    flex: 1;
    padding: 140px 24px 80px;
    background: linear-gradient(to bottom, transparent 0%, #0a0a0a 15%, #0f0f0f 70%, #1a1a1a 90%, #333333 100%);
}

.legal-header {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 48px;
}

.legal-body {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
}

.legal-container {
    max-width: 720px;
}

.legal-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.legal-updated {
    font-family: var(--font-body);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.35);
}

/* Sidebar Navigation */
.legal-nav {
    position: absolute;
    right: calc(100% + 48px);
    top: 0;
    width: 160px;
    height: 100%;
}

.legal-nav-list {
    position: sticky;
    top: 100px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.legal-nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-family: var(--font-body);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.25);
    text-decoration: none;
    transition: color 0.2s;
    white-space: nowrap;
}

.legal-nav-link:hover {
    color: rgba(255, 255, 255, 0.6);
}

.legal-nav-link.active {
    color: var(--brand-orange);
}

.legal-nav-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    font-weight: 700;
    font-size: 11px;
    flex-shrink: 0;
    font-variant-numeric: tabular-nums;
}

/* Hide nav when not enough space (content 720 + nav 160 + gap 48 + margins) */
@media (max-width: 1100px) {
    .legal-nav {
        display: none;
    }
}

.legal-container h2 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-top: 40px;
    margin-bottom: 16px;
    scroll-margin-top: 100px;
}

.legal-container p {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
}

.legal-container ul {
    padding-left: 24px;
    margin-bottom: 16px;
}

.legal-container li {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 6px;
}

.legal-container a {
    color: var(--brand-orange);
    text-decoration: none;
    transition: color 0.2s;
}

.legal-container a:hover {
    color: var(--brand-orange-light);
}

.legal-container strong {
    color: rgba(255, 255, 255, 0.8);
}

/* --------------------------------------------------------------------------
   Standalone Pages (Pricing, Start — dark pages with sidebar nav)
   -------------------------------------------------------------------------- */
.page-dark {
    flex: 1;
    padding: 140px 24px 0;
    background: linear-gradient(to bottom, transparent 0%, #0a0a0a 15%, #0f0f0f 70%, #1a1a1a 90%, #333333 100%);
}

.page-header {
    max-width: 1100px;
    margin: 0 auto 48px;
    text-align: center;
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.04em;
    color: #fff;
    margin-top: 16px;
    margin-bottom: 8px;
}

.page-subtitle {
    font-family: var(--font-body);
    font-size: 16px;
    color: rgba(255, 255, 255, 0.55);
    max-width: 520px;
    margin: 0 auto;
}

.page-body {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.page-nav {
    position: absolute;
    right: calc(100% + 48px);
    top: 0;
    width: 160px;
    height: 100%;
}

.page-nav-list {
    position: sticky;
    top: 100px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-family: var(--font-body);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.25);
    text-decoration: none;
    transition: color 0.2s;
    white-space: nowrap;
}

.page-nav-link:hover {
    color: rgba(255, 255, 255, 0.6);
}

.page-nav-link.active {
    color: var(--brand-orange);
}

.page-nav-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    font-weight: 700;
    font-size: 11px;
    flex-shrink: 0;
    font-variant-numeric: tabular-nums;
}

/* Hide page nav when not enough space (content 1100 + nav 160 + gap 48 + margins) */
@media (max-width: 1500px) {
    .page-nav {
        display: none;
    }
}

.notfound-illustration {
    margin-bottom: 24px;
}

.notfound-illustration svg {
    display: block;
    margin: 0 auto;
}

.status-spinner {
    width: 40px;
    height: 40px;
    margin: 0 auto 24px;
    border: 3px solid rgba(239, 70, 0, 0.15);
    border-top-color: var(--brand-orange);
    border-radius: 50%;
    animation: status-spin 0.8s linear infinite;
}

@keyframes status-spin {
    to { transform: rotate(360deg); }
}

@media (max-width: 480px) {
    .status-actions {
        flex-direction: column;
    }
}

/* --------------------------------------------------------------------------
   Waitlist Section
   -------------------------------------------------------------------------- */
.waitlist-section {
    background: #fff;
    color: #000;
    padding: 120px 96px;
    position: relative;
    z-index: 10;
}

.waitlist-container {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.waitlist-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: 8px;
}

.waitlist-date {
    font-family: var(--font-display);
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 600;
    color: var(--brand-orange);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.waitlist-subtitle {
    font-family: var(--font-body);
    font-size: 18px;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.7;
    margin-bottom: 48px;
}

.waitlist-subtitle em {
    font-style: italic;
}

.waitlist-form-wrapper {
    max-width: 480px;
    margin: 0 auto;
}

.waitlist-form {
    width: 100%;
}

.waitlist-input-row {
    display: flex;
    align-items: stretch;
    border: 2px solid #000;
}

.waitlist-input {
    flex: 1;
    border: none;
    padding: 16px 20px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    outline: none;
    background: transparent;
    color: #000;
    min-width: 0;
}

.waitlist-input::placeholder {
    color: rgba(0, 0, 0, 0.3);
}

.waitlist-btn {
    padding: 16px 28px;
    background: #000;
    color: #fff;
    border: none;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}

.waitlist-btn:hover {
    background: var(--brand-orange);
}

.waitlist-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.waitlist-error {
    font-family: var(--font-body);
    font-size: 14px;
    color: #dc2626;
    margin-top: 12px;
    text-align: left;
}

.waitlist-proof {
    font-family: var(--font-body);
    font-size: 14px;
    color: rgba(0, 0, 0, 0.4);
    margin-top: 16px;
}

.waitlist-success {
    text-align: center;
}

.waitlist-success h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
}

.waitlist-success p {
    font-family: var(--font-body);
    font-size: 16px;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 4px;
}

.waitlist-success-note {
    font-size: 14px !important;
    color: rgba(0, 0, 0, 0.45) !important;
    margin-top: 12px !important;
}

/* --------------------------------------------------------------------------
   Meandering SVG Line
   -------------------------------------------------------------------------- */
.meandering-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 101;
    overflow: visible;
    mask-image: linear-gradient(to bottom, black 0%, transparent 0%), linear-gradient(to bottom, black 0%, black 86%, transparent 92%);
    -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 0%), linear-gradient(to bottom, black 0%, black 86%, transparent 92%);
    mask-composite: intersect;
    -webkit-mask-composite: source-in;
}

.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);
}

.site-footer-bottom a {
    color: rgba(0, 0, 0, 0.3);
    text-decoration: none;
    transition: color 0.2s;
}

.site-footer-bottom a:hover {
    color: var(--brand-orange);
}

/* --------------------------------------------------------------------------
   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--wide {
        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;
    }

    .waitlist-section {
        padding: 80px 48px;
    }

    .pricing-tiers {
        gap: 0;
    }

    .pricing-tier {
        padding: 36px 24px;
    }

    .pricing-tier-current {
        font-size: 40px;
    }

    .start-section-dark {
        padding: 0 48px 80px;
    }

    .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--wide {
        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;
    }

    .waitlist-section {
        padding: 64px 24px;
    }

    .waitlist-input-row {
        flex-direction: column;
    }

    .waitlist-btn {
        padding: 14px 20px;
    }

    .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;
    }

    .pricing-tiers {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .pricing-tier + .pricing-tier {
        border-left: 1px solid rgba(255, 255, 255, 0.06);
        border-top: none;
    }

    .pricing-tier--featured + .pricing-tier,
    .pricing-tier + .pricing-tier--featured {
        border-left: 1px solid var(--brand-orange);
    }

    .pricing-tier {
        padding: 36px 32px;
    }

    .pricing-matrix th:nth-child(n+4),
    .pricing-matrix td:nth-child(n+4) {
        display: none;
    }

    .start-section-dark {
        padding: 0 24px 64px;
    }

    .domain-input-row-dark {
        flex-direction: column;
    }

    .domain-suffix-dark {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        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;
    }

    .waitlist-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;
    }
}

/* ==========================================================================
   Page-Specific Styles (Product, Philosophy, Contact, Start)
   Migrated from legacy.css
   ========================================================================== */

/* Button - Primary (used by Product, Philosophy, Start pages) */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--branduals-orange);
    color: var(--text-primary);
    border: none;
    border-radius: 8px;
    padding: 0 32px;
    height: 48px;
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font-family-base);
    cursor: pointer;
    transition: background-color var(--transition-speed) ease,
                transform var(--transition-speed) ease,
                box-shadow var(--transition-speed) ease;
    white-space: nowrap;
    text-decoration: none;
}

.btn-primary:hover {
    background: var(--branduals-orange-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(239, 70, 0, 0.3);
}

.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Section Title (used by Product, Philosophy) */
.section-title {
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 48px;
    color: var(--text-primary);
}

/* --------------------------------------------------------------------------
   Philosophy Page - Flow Diagram
   -------------------------------------------------------------------------- */

.flow-diagram {
    max-width: 800px;
    margin: 0 auto 80px;
    padding: 0;
}

.flow-stage {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    padding: 28px 40px;
    text-align: center;
    margin-bottom: 0;
}

.flow-stage-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-tertiary);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.flow-stage-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-primary);
}

.flow-connector {
    width: 2px;
    height: 40px;
    background: var(--text-muted);
    margin: 0 auto;
}

.flow-stage-main {
    background: var(--bg-primary);
    border: 3px solid var(--branduals-orange);
    border-radius: 16px;
    padding: 44px 40px;
    margin: 0;
    transition: box-shadow var(--transition-speed) ease;
}

.flow-stage-main:hover {
    box-shadow: 0 0 30px rgba(239, 70, 0, 0.2);
}

.flow-stage-main .brand-name {
    font-family: var(--font-family-brand);
    font-size: 52px;
    font-weight: 700;
    color: var(--branduals-orange);
    margin-bottom: 12px;
}

.flow-stage-main .flow-stage-title {
    font-size: 18px;
    margin-bottom: 6px;
}

.flow-stage-main .flow-stage-subtitle {
    font-size: 13px;
    color: #CBD5E1;
}

/* --------------------------------------------------------------------------
   Product Page
   -------------------------------------------------------------------------- */

.product-section {
    padding: 60px 0;
    border-top: 1px solid var(--border-primary);
}

.product-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.product-lead {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.product-lead-large {
    font-size: 28px;
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 24px;
}

.product-lead-contrast {
    line-height: 1.5;
}

.product-lead-contrast .text-muted {
    font-weight: 400;
}

.product-detail {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.product-closing {
    font-size: 16px;
    color: var(--text-tertiary);
    font-style: italic;
}

.product-closing-highlight {
    font-size: 18px;
    color: var(--text-primary);
    font-weight: 500;
}

/* Access List */
.access-list {
    max-width: 700px;
    margin: 0 auto;
}

.access-list ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.access-list li {
    font-size: 16px;
    color: var(--text-secondary);
    padding: 12px 16px 12px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 8px;
    position: relative;
}

.access-list li::before {
    content: "\2022";
    color: var(--branduals-orange);
    position: absolute;
    left: 16px;
}

.access-conclusion {
    max-width: 600px;
    margin: 32px auto 0;
    text-align: center;
    font-size: 16px;
    color: var(--text-secondary);
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.feature-item {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 8px;
    padding: 16px 20px;
    text-align: left;
    transition: transform var(--transition-speed) ease,
                border-color var(--transition-speed) ease;
}

.feature-item span {
    font-size: 15px;
    color: var(--text-secondary);
}

.feature-item:hover {
    transform: translateY(-2px);
    border-color: rgba(239, 70, 0, 0.3);
}

/* Capability Grid */
.capability-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.capability-item {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    padding: 28px;
    text-align: left;
    transition: transform var(--transition-speed) ease,
                box-shadow var(--transition-speed) ease,
                border-color var(--transition-speed) ease;
}

.capability-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.capability-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
    color: var(--branduals-orange);
}

.capability-icon svg {
    width: 100%;
    height: 100%;
}

.capability-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.capability-item p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* --------------------------------------------------------------------------
   Contact Page
   -------------------------------------------------------------------------- */

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto 48px;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    padding: 32px;
}

.contact-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.contact-card p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.contact-card a.contact-email {
    font-size: 16px;
    color: var(--branduals-orange);
    font-weight: 500;
}

.contact-card a.contact-email:hover {
    color: var(--branduals-orange-light);
}

.contact-social {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid var(--border-primary);
}

.contact-social h3 {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 16px;
}

.social-links a {
    font-size: 16px;
    color: var(--text-secondary);
    padding: 8px 16px;
    border: 1px solid var(--border-primary);
    border-radius: 6px;
    transition: all var(--transition-speed);
}

.social-links a:hover {
    color: var(--branduals-orange);
    border-color: var(--branduals-orange);
}

.contact-social p {
    font-size: 14px;
    color: var(--text-tertiary);
}

/* --------------------------------------------------------------------------
   Start / Setup / Welcome Pages
   -------------------------------------------------------------------------- */

.start-container {
    max-width: 560px;
    margin: 0 auto;
    padding: 60px 0;
}

/* Setup Page */
.setup-reserved {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 24px;
    font-size: 14px;
    color: #22C55E;
}

.setup-form-group {
    margin-bottom: 24px;
}

.setup-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.setup-input {
    width: 100%;
    background: var(--bg-primary);
    border: 1px solid var(--border-primary);
    border-radius: 8px;
    padding: 16px 20px;
    font-size: 16px;
    color: var(--text-primary);
    font-family: var(--font-family-base);
    outline: none;
    transition: border-color var(--transition-speed);
}

.setup-input:focus {
    border-color: var(--branduals-orange);
}

.setup-form-group .hint {
    font-size: 13px;
    color: var(--text-tertiary);
    margin-top: 8px;
}

.setup-expiry {
    text-align: center;
    font-size: 14px;
    color: var(--text-tertiary);
    margin-top: 24px;
}

/* Welcome Page */
.welcome-container {
    max-width: 560px;
    margin: 0 auto;
    padding: 60px 0;
    text-align: center;
}

.welcome-icon {
    width: 64px;
    height: 64px;
    background: rgba(34, 197, 94, 0.1);
    border: 2px solid #22C55E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    color: #22C55E;
}

.welcome-title {
    font-size: 32px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.welcome-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.welcome-domain {
    font-size: 20px;
    color: var(--branduals-orange);
    font-weight: 500;
    margin-bottom: 40px;
}

.welcome-tips {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    padding: 32px;
    text-align: left;
    margin-bottom: 32px;
}

.welcome-tips h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.welcome-tips ol {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: tips;
}

.welcome-tips li {
    font-size: 15px;
    color: var(--text-secondary);
    padding: 12px 0 12px 32px;
    position: relative;
    counter-increment: tips;
}

.welcome-tips li::before {
    content: counter(tips) ".";
    position: absolute;
    left: 0;
    color: var(--branduals-orange);
    font-weight: 600;
}

.welcome-cta {
    margin-bottom: 32px;
}

.welcome-help {
    font-size: 14px;
    color: var(--text-tertiary);
}

.welcome-help a {
    color: var(--branduals-orange);
}

/* --------------------------------------------------------------------------
   Blazor Error UI
   -------------------------------------------------------------------------- */

#blazor-error-ui {
    background: #b32121;
    color: white;
    padding: 1rem 1.5rem;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: none;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 1.5rem;
    top: 0.75rem;
}

/* --------------------------------------------------------------------------
   Responsive - Page-Specific
   -------------------------------------------------------------------------- */

@media (max-width: 1024px) {
    .container { padding: 0 40px; }
    h1 { font-size: 64px; }
    h2 { font-size: 48px; }
    .capability-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    h1 { font-size: 36px; }
    h2 { font-size: 28px; }
    h3 { font-size: 22px; }
    p { font-size: 16px; }

    .section-title { font-size: 28px; margin-bottom: 32px; }
    .product-lead-large { font-size: 22px; }
    .feature-grid { grid-template-columns: 1fr; }
    .capability-grid { grid-template-columns: 1fr; gap: 16px; }
    .contact-grid { grid-template-columns: 1fr; }
    .access-list ul { grid-template-columns: 1fr; }

    .flow-stage { padding: 20px 24px; }
    .flow-stage-title { font-size: 20px; }
    .flow-stage-main { padding: 32px 24px; }
    .flow-stage-main .brand-name { font-size: 36px; }
    .flow-stage-main .flow-stage-title { font-size: 16px; }

    .btn-primary { width: 100%; height: 52px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    h1 { font-size: 28px; }
    h2 { font-size: 24px; }
    .flow-stage-main .brand-name { font-size: 28px; }
}

/* ==========================================================================
   Cookie Consent Banner
   ========================================================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: rgba(22, 25, 31, 0.95);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-top: 1px solid var(--border-primary);
    padding: 20px 0;
    animation: cookieBannerSlideUp 0.4s ease-out;
}

@keyframes cookieBannerSlideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.cookie-banner-content {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.cookie-banner-content p {
    flex: 1;
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-banner-content a {
    color: var(--branduals-orange);
    text-decoration: none;
}

.cookie-banner-content a:hover {
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn-reject,
.cookie-btn-accept {
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    white-space: nowrap;
}

.cookie-btn-reject {
    background: transparent;
    border: 1px solid var(--border-primary);
    color: var(--text-secondary);
}

.cookie-btn-reject:hover {
    border-color: var(--text-tertiary);
    color: var(--text-primary);
}

.cookie-btn-accept {
    background: var(--branduals-orange);
    border: 1px solid var(--branduals-orange);
    color: white;
}

.cookie-btn-accept:hover {
    background: var(--branduals-orange-light);
    border-color: var(--branduals-orange-light);
}

@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        padding: 0 24px;
        text-align: center;
        gap: 16px;
    }
    .cookie-banner-actions {
        width: 100%;
        justify-content: center;
    }
}
