/* Import Sophisticated Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Inter:wght@300;400;600&display=swap');

:root {
    --bg-dark: #0a0a0c;
    --card-bg: #111827;
    --accent-gold: #f59e0b; /* Warm City Lights */
    --mist: #94a3b8;
    --text-white: #f8fafc;
    --text-muted: #64748b;
    --border-glow: rgba(245, 158, 11, 0.2);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Cinzel', serif;
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(10, 10, 12, 0.2), rgba(10, 10, 12, 0.8)), url('assets/hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 250px;
    background: linear-gradient(transparent, var(--bg-dark));
}

.hero h1 {
    font-size: clamp(3rem, 15vw, 6.5rem);
    margin-bottom: 1rem;
    color: var(--text-white);
    text-shadow: 0 0 40px rgba(0, 0, 0, 0.7);
    animation: fadeInDown 1.5s ease-out;
}

.hero p {
    font-size: clamp(1rem, 3vw, 1.5rem);
    max-width: 1000px;
    font-weight: 300;
    color: var(--mist);
    margin-bottom: 2rem;
    letter-spacing: 1px;
    animation: fadeInUp 1.5s ease-out 0.5s both;
}

/* Main Content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 2rem;
}

.strategy-section {
    margin-bottom: 10rem;
    padding: 5rem;
    background: rgba(31, 41, 55, 0.3);
    border: 1px solid rgba(245, 158, 11, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.strategy-header {
    text-align: center;
    margin-bottom: 5rem;
}

.strategy-header h2 {
    font-size: 2.2rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 4rem;
}

.strategy-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.strategy-item .icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.strategy-item h4 {
    color: var(--accent-gold);
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
}

.strategy-item p {
    color: var(--mist);
    font-size: 1rem;
    line-height: 1.8;
}

.section-title {
    text-align: center;
    margin-bottom: 6rem;
}

.section-title h2 {
    font-size: 3rem;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.section-title .divider {
    width: 120px;
    height: 3px;
    background: var(--accent-gold);
    margin: 2rem auto;
}

/* Domain Grid */
.domain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.domain-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 4rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.domain-card:hover {
    transform: translateY(-20px);
    border-color: var(--accent-gold);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.domain-name {
    font-size: 1.6rem;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--accent-gold);
    margin-bottom: 2.5rem;
    font-family: 'Cinzel', serif;
}

.paypal-btn {
    display: block;
    width: 100%;
    background: var(--accent-gold);
    color: #000;
    text-decoration: none;
    padding: 1.2rem;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.paypal-btn:hover {
    background: #fff;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

/* Trust Section */
.trust-section {
    margin-top: 10rem;
    padding: 4rem;
    background: rgba(15, 23, 42, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.trust-header {
    text-align: center;
    margin-bottom: 4rem;
}

.trust-header h3 {
    font-size: 2.2rem;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.trust-header p {
    color: var(--accent-gold);
    font-size: 1.1rem;
    font-family: 'Cinzel', serif;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.trust-item {
    text-align: center;
}

.trust-item .icon {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    display: block;
}

.trust-item h4 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.trust-item p {
    color: var(--mist);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Brokered Section */
.brokered-by {
    text-align: center;
    padding: 6rem 2rem;
    background: #020617;
    border-top: 1px solid #1e293b;
}

.brokered-by p {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.brokered-by img {
    max-width: 280px;
    height: auto;
    filter: grayscale(1) invert(1) brightness(2);
    transition: filter 1s ease;
}

.brokered-by img:hover {
    filter: grayscale(0) invert(0) brightness(1);
}

footer {
    text-align: center;
    padding: 4rem;
    background: #000;
    color: #333;
    letter-spacing: 4px;
}

footer a { color: var(--accent-gold); text-decoration: none; }

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

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

@media (max-width: 768px) {
    .strategy-grid { grid-template-columns: 1fr; }
    .container { padding: 4rem 1.5rem; }
}
