/* styles.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Color Palette - High-tech scientific agriculture (Data + Agro) */
    --bg-main: #050a0f;
    --bg-secondary: #08121b;
    --bg-card: rgba(8, 22, 33, 0.65);
    --border-color: rgba(0, 224, 255, 0.12);
    --border-hover: rgba(0, 224, 255, 0.35);
    
    --color-primary: #00f2fe;       /* Tech Cyan */
    --color-secondary: #00ff87;     /* Nature Green / Energy Lime */
    --color-gold: #d4af37;          /* Premium Accent */
    --color-text-main: #f0fdfa;
    --color-text-muted: #8ba3b5;
    --color-white: #ffffff;
    
    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Shadows & Transitions */
    --shadow-premium: 0 20px 45px rgba(0, 0, 0, 0.55), 0 0 50px rgba(0, 242, 254, 0.02);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    background-color: var(--bg-main);
    color: var(--color-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

/* Background Glowing Orbs & Tech Grid */
.background-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.07) 0%, rgba(8, 30, 50, 0.01) 50%, transparent 100%);
    top: -150px;
    left: -100px;
    z-index: 0;
    pointer-events: none;
    filter: blur(80px);
    animation: floatOrb 18s ease-in-out infinite alternate;
}

.background-glow-secondary {
    position: absolute;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(0, 255, 135, 0.05) 0%, rgba(5, 40, 25, 0.01) 50%, transparent 100%);
    bottom: -150px;
    right: -100px;
    z-index: 0;
    pointer-events: none;
    filter: blur(90px);
    animation: floatOrb 22s ease-in-out infinite alternate-reverse;
}

/* Subtle digital grid overlay for data theme */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(0, 242, 254, 0.015) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(0, 242, 254, 0.015) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
    pointer-events: none;
}

@keyframes floatOrb {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(40px, 40px) scale(1.15);
    }
}

header {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 2rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 242, 254, 0.25);
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--bg-main);
    font-size: 1.3rem;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
    color: var(--color-white);
}

.logo-text span {
    color: var(--color-primary);
}

.badge-premium-pack {
    background: rgba(214, 175, 55, 0.08);
    border: 1px solid rgba(214, 175, 55, 0.25);
    color: var(--color-gold);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(8px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.badge-premium-pack svg {
    fill: var(--color-gold);
}

/* Main Container */
main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 2rem;
    z-index: 10;
    position: relative;
}

/* Hero Section */
.hero {
    text-align: center;
    margin-bottom: 3.5rem;
    max-width: 850px;
}

.tagline {
    color: var(--color-primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 1.25rem;
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(0, 242, 254, 0.05);
    border-radius: 4px;
    border: 1px solid rgba(0, 242, 254, 0.1);
}

/* Domain Dual display container */
.domains-display-box {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.domain-main-title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 7.5vw, 5.2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    background: linear-gradient(135deg, var(--color-white) 40%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 20px rgba(0, 0, 0, 0.4));
}

.domain-extensions-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.domain-badge {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--color-text-muted);
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    font-weight: 600;
    padding: 0.4rem 1.2rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
}

.domain-badge.active-primary {
    border-color: rgba(0, 242, 254, 0.3);
    background: rgba(0, 242, 254, 0.06);
    color: var(--color-primary);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.05);
}

.domain-badge.active-secondary {
    border-color: rgba(0, 255, 135, 0.25);
    background: rgba(0, 255, 135, 0.04);
    color: var(--color-secondary);
    box-shadow: 0 0 15px rgba(0, 255, 135, 0.03);
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--color-text-muted);
    font-weight: 300;
    max-width: 700px;
    margin: 1.5rem auto 0;
}

/* Domain Highlights Grid */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    width: 100%;
    margin-bottom: 4rem;
}

.highlight-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.25rem 2rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    box-shadow: var(--shadow-premium);
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.04) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.highlight-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-hover);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.65), 0 0 30px rgba(0, 242, 254, 0.04);
}

.highlight-card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 242, 254, 0.06);
    border: 1px solid rgba(0, 242, 254, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.5rem;
    transition: var(--transition-smooth);
}

.highlight-card:hover .card-icon {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--bg-main);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.45);
    transform: rotate(5deg);
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-white);
}

.card-text {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    font-weight: 300;
}

/* Contact & Action Section */
.action-section {
    width: 100%;
    max-width: 650px;
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(4, 15, 23, 0.85) 100%);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-premium), inset 0 1px 1px rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
}

.action-section:hover {
    border-color: rgba(0, 242, 254, 0.28);
}

.action-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--color-white);
}

.action-subtitle {
    color: var(--color-text-muted);
    font-size: 1rem;
    margin-bottom: 2.25rem;
    font-weight: 300;
}

.email-display-container {
    display: flex;
    align-items: center;
    background: rgba(2, 6, 10, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.email-display-container:hover {
    border-color: rgba(0, 242, 254, 0.22);
    background: rgba(2, 6, 10, 0.85);
}

.email-icon {
    color: var(--color-primary);
    margin-right: 1rem;
    display: flex;
    align-items: center;
}

.email-text {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--color-white);
    letter-spacing: 0.5px;
    flex-grow: 1;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.btn-copy {
    background: rgba(0, 242, 254, 0.06);
    border: 1px solid rgba(0, 242, 254, 0.18);
    color: var(--color-primary);
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.btn-copy:hover {
    background: var(--color-primary);
    color: var(--bg-main);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.35);
}

.btn-copy svg {
    fill: currentColor;
}

.btn-primary-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--bg-main);
    border: none;
    border-radius: 16px;
    padding: 1.1rem 2rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 242, 254, 0.22);
    margin-bottom: 1.5rem;
}

.btn-primary-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 242, 254, 0.38);
    filter: brightness(1.08);
}

.btn-primary-action svg {
    fill: var(--bg-main);
    transition: var(--transition-smooth);
}

.btn-primary-action:hover svg {
    transform: translate(3px, -3px);
}

.transaction-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--color-text-muted);
    font-size: 0.85rem;
    font-weight: 400;
}

.transaction-guarantee svg {
    fill: var(--color-secondary);
}

/* Clipboard Toast notification */
.toast {
    position: fixed;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    background: #081d28;
    border: 1px solid var(--color-primary);
    color: var(--color-text-main);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 100;
    opacity: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 20px rgba(0, 242, 254, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.toast.show {
    bottom: 30px;
    opacity: 1;
}

/* Footer styling */
footer {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    z-index: 10;
    position: relative;
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

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

.footer-link:hover {
    color: var(--color-primary);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    header {
        padding: 1.5rem 1.5rem 0.5rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    main {
        padding: 1.5rem;
    }
    
    .hero {
        margin-bottom: 2.5rem;
    }
    
    .domain-extensions-container {
        gap: 0.5rem;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 3rem;
    }
    
    .action-section {
        padding: 2rem 1.5rem;
    }
    
    footer {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .footer-links {
        justify-content: center;
    }
}
