/* ═══════════════════════════════════════════════════
   WorldHumanoids.com — Private Acquisition Landing
   Design System v2.0 — February 2026
   ═══════════════════════════════════════════════════ */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #050709;
    --bg-secondary: #0a0d12;
    --bg-card: rgba(12, 18, 30, 0.65);
    --bg-card-solid: #0c121e;
    --accent: #00e5ff;
    --accent-dim: rgba(0, 229, 255, 0.1);
    --accent-glow: rgba(0, 229, 255, 0.25);
    --accent-purple: #7c3aed;
    --accent-purple-dim: rgba(124, 58, 237, 0.15);
    --text-primary: #edf2f7;
    --text-secondary: #7b8fa3;
    --text-muted: #4a5a6a;
    --border: rgba(255, 255, 255, 0.05);
    --border-hover: rgba(0, 229, 255, 0.25);
    --gradient-1: linear-gradient(135deg, #00e5ff 0%, #0070ff 50%, #7c3aed 100%);
    --gradient-2: linear-gradient(135deg, #0b1120 0%, #1a1340 100%);
    --gradient-text: linear-gradient(135deg, #00e5ff 0%, #3b82f6 40%, #7c3aed 100%);
    --blur: blur(16px);
    --radius: 20px;
    --radius-sm: 12px;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ─── Atmospheric Background ─── */
.bg-grid {
    position: fixed;
    inset: 0;
    z-index: -3;
    opacity: 0.025;
    background-image:
        linear-gradient(rgba(0, 229, 255, 0.4) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 229, 255, 0.4) 1px, transparent 1px);
    background-size: 72px 72px;
    animation: gridShift 30s linear infinite;
}

@keyframes gridShift {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(72px, 72px);
    }
}

.hero-image-bg {
    position: fixed;
    top: 0;
    right: -5%;
    width: 55%;
    height: 100%;
    z-index: -1;
    opacity: 0.14;
    background: url('../assets/humanoid_hero.png') no-repeat center right;
    background-size: cover;
    mask-image: linear-gradient(to right, transparent 10%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.7) 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 10%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.7) 100%);
    pointer-events: none;
}

.globe-bg {
    position: fixed;
    top: 40%;
    left: -15vw;
    width: 70vw;
    height: 70vw;
    max-width: 800px;
    max-height: 800px;
    background: url('../assets/futuristic_globe.png') no-repeat center center;
    background-size: contain;
    z-index: -2;
    opacity: 0.25;
    mix-blend-mode: screen;
    pointer-events: none;
    animation: globeFloat 24s ease-in-out infinite;
    mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 1) 35%, rgba(0, 0, 0, 0) 65%);
    -webkit-mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 1) 35%, rgba(0, 0, 0, 0) 65%);
}

@keyframes globeFloat {

    0%,
    100% {
        transform: translateY(0) scale(1) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) scale(1.02) rotate(3deg);
    }
}

/* Cinematic light leak */
.light-leak {
    position: fixed;
    top: -20%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.04) 0%, transparent 70%);
    z-index: -2;
    pointer-events: none;
}

.light-leak-2 {
    position: fixed;
    bottom: 10%;
    left: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.035) 0%, transparent 70%);
    z-index: -2;
    pointer-events: none;
}

/* Floating orbs */
.orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -2;
    animation: orbFloat 20s ease-in-out infinite;
    will-change: transform;
}

.orb-1 {
    width: 550px;
    height: 550px;
    background: rgba(0, 229, 255, 0.06);
    top: -12%;
    right: -8%;
    animation-delay: 0s;
}

.orb-2 {
    width: 450px;
    height: 450px;
    background: rgba(124, 58, 237, 0.04);
    bottom: 5%;
    left: -8%;
    animation-delay: -8s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: rgba(0, 112, 255, 0.035);
    top: 45%;
    right: 15%;
    animation-delay: -4s;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(25px, -15px) scale(1.03);
    }

    50% {
        transform: translate(-10px, 25px) scale(0.97);
    }

    75% {
        transform: translate(15px, 10px) scale(1.02);
    }
}

/* ─── Layout ─── */
.container {
    position: relative;
    z-index: 1;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ─── Top Navigation ─── */
.topbar {
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
}

.logo {
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 2px;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.topbar-badge {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-dim);
    padding: 7px 16px;
    border-radius: 100px;
    border: 1px solid rgba(0, 229, 255, 0.18);
}

.topbar-status {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

.pulse-dot {
    width: 7px;
    height: 7px;
    background: #00ff88;
    border-radius: 50%;
    animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.5);
    }

    50% {
        opacity: 0.6;
        box-shadow: 0 0 0 10px rgba(0, 255, 136, 0);
    }
}

/* ─── Hero Section ─── */
.hero {
    padding: 130px 0 100px;
    text-align: center;
}

.for-sale-label {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    opacity: 0.5;
    margin-bottom: 8px;
}

.hero-label {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.hero-domain-box {
    margin-bottom: 12px;
}

.hero-domain {
    font-size: clamp(3rem, 8vw, 5.8rem);
    font-weight: 800;
    letter-spacing: -3px;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.05;
}

.hero-tld {
    font-size: clamp(3rem, 8vw, 5.8rem);
    font-weight: 200;
    color: rgba(255, 255, 255, 0.25);
    line-height: 1.05;
}

.hero-tagline {
    font-size: 19px;
    color: var(--text-secondary);
    max-width: 680px;
    margin: 36px auto 0;
    font-weight: 300;
    line-height: 1.75;
}

/* ─── Private Acquisition Card ─── */
.private-card {
    max-width: 620px;
    margin: 64px auto 0;
    padding: 56px 48px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.private-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-1);
    opacity: 0.8;
}

.private-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center top, rgba(0, 229, 255, 0.04), transparent 70%);
    pointer-events: none;
}

.private-tag {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    display: inline-block;
    padding: 6px 18px;
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 100px;
    margin-bottom: 28px;
    background: var(--accent-dim);
}

.private-title {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    line-height: 1.3;
}

.private-desc {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 36px;
    font-weight: 300;
}

.private-cta {
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.private-cta:hover {
    gap: 16px;
}

.private-cta .arrow {
    display: inline-block;
    transition: var(--transition);
    font-size: 16px;
}

/* ─── Glass Card System ─── */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.glass-card:hover {
    border-color: var(--border-hover);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 229, 255, 0.05);
    transform: translateY(-4px);
}

/* ─── Stats Section ─── */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 110px 0;
}

.stat-item {
    padding: 44px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: var(--gradient-1);
    opacity: 0.5;
}

.stat-number {
    font-size: 38px;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 0.3px;
    font-weight: 400;
}

/* ─── Section Headers ─── */
.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-tag {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 18px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 18px;
    letter-spacing: -1.5px;
    line-height: 1.15;
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.7;
}

/* ─── Use Cases / Strategic Cards ─── */
.use-cases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 120px;
}

.use-card {
    padding: 40px;
}

.use-icon {
    width: 52px;
    height: 52px;
    background: var(--accent-dim);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
    border: 1px solid rgba(0, 229, 255, 0.12);
}

.use-title {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.use-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.75;
    font-weight: 300;
}

/* ─── Owner Bio Section ─── */
.owner-section {
    margin-bottom: 120px;
}

.owner-card {
    max-width: 780px;
    margin: 0 auto;
    padding: 56px;
    position: relative;
    overflow: hidden;
    display: flex;
    gap: 40px;
    align-items: center;
}

.owner-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-1);
}

.owner-avatar {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 28px;
    color: #fff;
    box-shadow: 0 0 40px rgba(0, 229, 255, 0.2);
    padding: 3px;
    position: relative;
}

.owner-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 15%;
    display: block;
}

.owner-info {
    flex: 1;
}

.owner-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}

.owner-role {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.owner-bio {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.75;
    font-weight: 300;
    margin-bottom: 20px;
}

.owner-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.owner-link {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.owner-link:hover {
    color: var(--accent);
}

.owner-link .link-icon {
    font-size: 14px;
    opacity: 0.6;
}

/* ─── Timeline / Market Momentum ─── */
.momentum {
    margin-bottom: 120px;
}

.momentum-items {
    display: grid;
    gap: 16px;
    max-width: 750px;
    margin: 0 auto;
}

.momentum-item {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    padding: 32px 36px;
}

.momentum-year {
    font-family: 'Space Mono', monospace;
    font-size: 13px;
    font-weight: 700;
    padding-top: 3px;
    min-width: 52px;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.momentum-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 300;
}

.momentum-text strong {
    color: var(--text-primary);
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

/* ─── Bundle / Portfolio Section ─── */
.bundle {
    background: var(--gradient-2);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 28px;
    padding: 72px 56px;
    text-align: center;
    margin-bottom: 120px;
    position: relative;
    overflow: hidden;
}

.bundle::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top right, rgba(0, 229, 255, 0.06), transparent 60%);
    pointer-events: none;
}

.bundle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.3), transparent);
}

.bundle-content {
    position: relative;
    z-index: 1;
}

.bundle-tag {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #a78bfa;
    margin-bottom: 20px;
    display: inline-block;
    padding: 6px 18px;
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: 100px;
    background: var(--accent-purple-dim);
}

.bundle-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.bundle-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 300;
    max-width: 520px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.bundle-domains {
    display: flex;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap;
    margin: 36px 0;
}

.bundle-domain {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    padding: 16px 36px;
    font-family: 'Space Mono', monospace;
    font-size: 15px;
    transition: var(--transition);
}

.bundle-domain.highlight {
    border-color: rgba(0, 229, 255, 0.35);
    color: var(--accent);
    background: var(--accent-dim);
}

.bundle-desc {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 36px;
    font-weight: 300;
    line-height: 1.7;
}

/* ─── Contact / CTA Section ─── */
.cta-section {
    text-align: center;
    padding: 100px 0 80px;
    border-top: 1px solid var(--border);
}

.cta-section .section-title {
    margin-bottom: 12px;
}

.cta-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 300;
    margin-bottom: 0;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

.contact-container {
    max-width: 680px;
    margin: 56px auto 0;
    text-align: left;
}

.contact-form {
    display: grid;
    gap: 20px;
    background: var(--bg-card);
    backdrop-filter: var(--blur);
    padding: 48px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-1);
    opacity: 0.6;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: grid;
    gap: 8px;
}

.form-group label {
    font-size: 12px;
    color: var(--text-muted);
    font-family: 'Space Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.form-input {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    outline: none;
    transition: var(--transition);
    font-weight: 300;
}

.form-input::placeholder {
    color: var(--text-muted);
    font-weight: 300;
}

.form-input:focus {
    border-color: rgba(0, 229, 255, 0.4);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.06);
}

textarea.form-input {
    min-height: 140px;
    resize: vertical;
    line-height: 1.6;
}

/* ─── Buttons ─── */
.btn {
    display: inline-block;
    width: 100%;
    padding: 20px 40px;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    border-radius: var(--radius-sm);
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-1);
    color: #fff;
    border: none;
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(0, 229, 255, 0.25), 0 0 0 1px rgba(0, 229, 255, 0.1);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-secondary);
    border: 1px solid var(--border);
    margin-top: 12px;
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-dim);
}

.btn-bundle {
    display: inline-block;
    padding: 18px 56px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
}

.btn-bundle:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(167, 139, 250, 0.4);
    box-shadow: 0 12px 32px rgba(124, 58, 237, 0.15);
    transform: translateY(-2px);
}

.escrow-note {
    margin-top: 40px;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 300;
}

.escrow-note a {
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition);
}

.escrow-note a:hover {
    opacity: 0.8;
}

.form-disclaimer {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
    margin-top: 4px;
    font-weight: 300;
    line-height: 1.6;
}

/* ─── Footer ─── */
footer {
    padding: 48px 0 40px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-main {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 10px;
    font-weight: 400;
}

.footer-main a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-main a:hover {
    color: var(--accent);
}

.footer-credit {
    font-size: 12px;
    color: var(--text-muted);
    opacity: 0.6;
    font-weight: 300;
    margin-bottom: 8px;
}

.footer-credit a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-credit a:hover {
    color: var(--accent);
    opacity: 1;
}

.footer-escrow {
    font-size: 12px;
    color: var(--text-muted);
    opacity: 0.5;
    font-weight: 300;
}

.footer-escrow a {
    color: var(--accent);
    text-decoration: none;
    opacity: 0.7;
    transition: var(--transition);
}

.footer-escrow a:hover {
    opacity: 1;
}

/* ─── Divider ─── */
.section-divider {
    width: 80px;
    height: 1px;
    background: var(--gradient-1);
    margin: 0 auto;
    opacity: 0.4;
}

/* ─── Reveal Animations ─── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.35s;
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
    .stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .topbar {
        padding: 18px 0;
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
    }

    .hero {
        padding: 80px 0 60px;
    }

    /* Mobile: Switch to high-contrast portrait robot, center-bottom */
    .hero-image-bg {
        opacity: 0.22;
        width: 100%;
        right: 0;
        top: auto;
        bottom: 0;
        height: 70%;
        background: url('../assets/humanoid_mobile.png') no-repeat center bottom;
        background-size: contain;
        mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
        -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
        filter: contrast(1.3) saturate(1.4) brightness(1.1);
    }

    .private-card {
        padding: 40px 28px;
    }

    .globe-bg {
        top: 25%;
        left: -40%;
        width: 150vw;
        height: 150vw;
        opacity: 0.15;
    }

    .owner-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 28px;
    }

    .owner-avatar {
        width: 88px;
        height: 88px;
    }

    .owner-card::before {
        width: 100%;
        height: 2px;
        bottom: auto;
        left: 0;
        right: 0;
        top: 0;
    }

    .owner-links {
        justify-content: center;
    }

    .bundle {
        padding: 48px 28px;
    }

    .bundle-domains {
        gap: 20px;
    }

    .contact-form {
        padding: 32px 24px;
    }

    .stat-item {
        padding: 32px 16px;
    }

    .stat-number {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .stats {
        grid-template-columns: 1fr;
    }

    .hero-domain,
    .hero-tld {
        font-size: 2.4rem;
        letter-spacing: -1px;
    }

    .bundle-domains {
        gap: 16px;
    }
}