/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #1a1a2e;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d1b4e 50%, #1a1a2e 100%);
    overflow: hidden;
}

.hero-stars {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(2px 2px at 20px 30px, #fff, transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(1px 1px at 90px 40px, #fff, transparent),
        radial-gradient(2px 2px at 160px 120px, rgba(255, 255, 255, 0.9), transparent),
        radial-gradient(1px 1px at 230px 80px, #fff, transparent),
        radial-gradient(2px 2px at 300px 150px, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(1px 1px at 350px 60px, #fff, transparent),
        radial-gradient(2px 2px at 420px 180px, rgba(255, 255, 255, 0.8), transparent);
    background-size: 500px 200px;
    animation: twinkle 8s ease-in-out infinite;
}

.hero-magic {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(147, 51, 234, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 60%, rgba(251, 191, 36, 0.15) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 80%, rgba(147, 51, 234, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 20px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(251, 191, 36, 0.15);
    border: 1px solid rgba(251, 191, 36, 0.3);
    color: #fbbf24;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 40px;
    animation: fadeInDown 0.8s ease-out;
}

.badge-icon {
    font-size: 1rem;
    animation: spin 4s linear infinite;
}

.domain-name {
    font-family: 'Cinzel', serif;
    font-size: clamp(3.5rem, 12vw, 8rem);
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.the {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.wiz {
    background: linear-gradient(135deg, #fbbf24, #f59e0b, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 60px rgba(251, 191, 36, 0.5);
}

.tld {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    font-size: 0.4em;
}

.tagline {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 0.15em;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.price-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease-out 0.45s both;
}

.price-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.price-value {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(251, 191, 36, 0.4);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.feature-icon {
    color: #fbbf24;
    font-weight: bold;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1a1a2e;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(251, 191, 36, 0.3);
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(251, 191, 36, 0.4);
}

.cta-icon {
    animation: pulse 2s ease-in-out infinite;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: fadeIn 1s ease-out 1s both;
}

.scroll-wand {
    width: 4px;
    height: 50px;
    background: linear-gradient(to bottom, #fbbf24, transparent);
    border-radius: 2px;
    position: relative;
}

.wand-spark {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: #fbbf24;
    border-radius: 50%;
    box-shadow: 0 0 20px #fbbf24;
    animation: wandMove 2s ease-in-out infinite;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header.light h2,
.section-header.light p {
    color: #fff;
}

.section-header.light .section-tag {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
}

.section-tag {
    display: inline-block;
    background: rgba(147, 51, 234, 0.1);
    color: #9333ea;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
}

.section-header h2 {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a2e;
}

.section-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Name Section */
.name-section {
    padding: 100px 0;
    background: #f8fafc;
}

.name-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.name-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.name-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.name-card.main {
    text-align: center;
    padding: 50px 40px;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d1b4e 100%);
    border: none;
}

.name-card.main h3,
.name-card.main p {
    color: #fff;
}

.name-card.main h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.name-card.main p {
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.name-icon {
    font-size: 2.5rem;
    color: #fbbf24;
    margin-bottom: 20px;
}

.name-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.name-grid .name-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a1a2e;
}

.name-grid .name-card p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
}

/* Value Section */
.value-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d1b4e 100%);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 35px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: rgba(251, 191, 36, 0.3);
}

.value-number {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 15px;
    opacity: 0.8;
}

.value-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.value-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Audience Section */
.audience-section {
    padding: 100px 0;
    background: #fff;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.audience-card {
    background: #f8fafc;
    padding: 35px;
    border-radius: 16px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.audience-card:hover {
    background: #fff;
    border-color: #9333ea;
    box-shadow: 0 20px 40px rgba(147, 51, 234, 0.1);
    transform: translateY(-5px);
}

.audience-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1), rgba(251, 191, 36, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.audience-icon svg {
    stroke: #9333ea;
}

.audience-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a2e;
}

.audience-card p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.7;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    color: #1a1a2e;
}

.stat-value {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 5px;
}

.stat-detail {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Story Section */
.story-section {
    padding: 100px 0;
    background: #f8fafc;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-text h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a2e;
}

.story-lead {
    font-size: 1.2rem;
    color: #475569;
    margin-bottom: 20px;
    line-height: 1.8;
}

.story-text p {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.8;
}

.story-text strong {
    color: #9333ea;
}

.story-text blockquote {
    margin: 30px 0;
    padding: 25px 30px;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.05), rgba(251, 191, 36, 0.05));
    border-left: 4px solid #9333ea;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: #475569;
    font-size: 1.1rem;
}

.story-text blockquote cite {
    display: block;
    margin-top: 10px;
    font-style: normal;
    font-size: 0.9rem;
    color: #9333ea;
}

.story-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.magic-orb {
    position: relative;
    width: 280px;
    height: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.orb-inner {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d1b4e 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow:
        0 0 60px rgba(147, 51, 234, 0.4),
        inset 0 0 40px rgba(251, 191, 36, 0.1);
    z-index: 2;
}

.orb-text {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.orb-ring {
    position: absolute;
    border: 2px solid rgba(147, 51, 234, 0.3);
    border-radius: 50%;
    animation: orbRotate 10s linear infinite;
}

.orb-ring:nth-child(2) {
    width: 220px;
    height: 220px;
    animation-duration: 8s;
}

.orb-ring:nth-child(3) {
    width: 250px;
    height: 250px;
    animation-duration: 12s;
    animation-direction: reverse;
}

.orb-ring:nth-child(4) {
    width: 280px;
    height: 280px;
    animation-duration: 15s;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: #fff;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #1a1a2e;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #9333ea;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(147, 51, 234, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #9333ea, #7c3aed);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(147, 51, 234, 0.3);
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(147, 51, 234, 0.4);
}

.btn-icon {
    animation: pulse 2s ease-in-out infinite;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d1b4e 100%);
    padding: 60px 0;
    text-align: center;
}

.footer-domain {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-the {
    color: rgba(255, 255, 255, 0.6);
}

.footer-wiz {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-net {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
}

.footer-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.footer-stars {
    color: #fbbf24;
    font-size: 1.2rem;
    letter-spacing: 10px;
    margin-bottom: 20px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

@keyframes twinkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes wandMove {
    0%, 100% { top: 0; opacity: 1; }
    100% { top: 40px; opacity: 0; }
}

@keyframes orbRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .value-grid,
    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .story-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .story-visual {
        order: -1;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .value-grid,
    .audience-grid,
    .name-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-features {
        flex-direction: column;
        gap: 15px;
    }

    .hero {
        min-height: 100svh;
    }

    .scroll-indicator {
        display: none;
    }

    .magic-orb {
        width: 220px;
        height: 220px;
    }

    .orb-inner {
        width: 140px;
        height: 140px;
    }

    .orb-text {
        font-size: 1.5rem;
    }

    .orb-ring:nth-child(2) {
        width: 170px;
        height: 170px;
    }

    .orb-ring:nth-child(3) {
        width: 195px;
        height: 195px;
    }

    .orb-ring:nth-child(4) {
        width: 220px;
        height: 220px;
    }
}

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

    .cta-button {
        padding: 16px 32px;
        font-size: 1rem;
    }

    .value-card,
    .audience-card,
    .name-card {
        padding: 28px;
    }

    .story-text h2 {
        font-size: 2rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* Focus styles */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid #9333ea;
    outline-offset: 2px;
}

/* Selection */
::selection {
    background: #9333ea;
    color: white;
}
