:root {
    --bg-color: #050505;
    --card-bg: rgba(255, 255, 255, 0.03);
    --text-primary: #ffffff;
    --text-secondary: #9ca3af;
    --accent-color: #3b82f6;
    --accent-glow: rgba(59, 130, 246, 0.15);
    --border-color: rgba(255, 255, 255, 0.1);
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    --container-width: 900px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}

h1, h2, h3 {
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: -0.02em;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Layout */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 6rem 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

section:last-of-type {
    border-bottom: none;
}

/* Hero Section */
.hero {
    padding: 12rem 0 8rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, #a5a5a5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.04em;
}

.hero .subtitle {
    font-size: 1.5rem;
    color: #e5e5e5;
    font-weight: 400;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.hero .lead {
    font-size: 1.25rem;
    max-width: 640px;
    margin: 0 auto 3rem;
    color: var(--text-secondary);
    font-weight: 300;
}

.hero-contact {
    font-size: 1.125rem;
    margin-top: 3rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    display: inline-block;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-contact a {
    color: #fff;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-contact a:hover {
    border-bottom-color: #fff;
}

/* Typography Helpers */
h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

/* Assets Table */
.table-wrapper {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 4px 24px -1px rgba(0, 0, 0, 0.2);
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 1.5rem 2rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

tr:last-child td {
    border-bottom: none;
}

th {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    background-color: rgba(255, 255, 255, 0.02);
    font-weight: 600;
}

td.asset-name {
    font-family: 'Inter', monospace; /* Using Inter but styled like code */
    font-size: 1.1rem;
    color: #fff;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.note {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-secondary);
    opacity: 0.8;
}

/* Cards / Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.card {
    background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
}

.card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #fff;
}

.card p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Target Audience */
.list-check {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.list-check li {
    padding: 1rem 0;
    /* Removed padding-left: 2.5rem; */
    position: relative;
    font-size: 1.2rem;
    border-bottom: 1px solid var(--border-color);
    display: flex; /* Flex layout for icon alignment */
    align-items: center;
    gap: 1rem;
}

.list-check li:last-child {
    border-bottom: none;
}

.list-check li .icon {
    font-size: 1.5rem;
    /* No absolute positioning needed with flex */
}

/* Removed the ::before arrow */
.list-check li::before {
    content: none;
}

.highlight-text {
    text-align: center;
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    color: #fff;
    font-weight: 400;
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
}

/* Credibility & Pricing */
.credibility {
    text-align: center;
}

.credibility p {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 300;
}

.pricing {
    text-align: center;
    background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.02) 100%);
}

.pricing p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 1.5rem;
}

.pricing-note {
    font-size: 1.4rem;
    font-weight: 500;
    color: #fff;
    margin-top: 2rem;
}

/* Contact */
.contact {
    text-align: center;
    padding: 8rem 0;
}

.email-link {
    display: block;
    font-size: 2rem;
    color: #fff;
    margin: 2rem 0;
    font-weight: 700;
    letter-spacing: -0.02em;
    opacity: 0.9;
}

.email-link:hover {
    opacity: 1;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 8px;
}

.closing {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.6;
}

/* Footer */
footer {
    text-align: center;
    padding: 3rem 0;
    font-size: 0.875rem;
    color: #666;
    border-top: 1px solid var(--border-color);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }
    .hero .subtitle {
        font-size: 1.25rem;
    }
    
    .list-check {
        grid-template-columns: 1fr;
    }
    
    .email-link {
        font-size: 1.5rem;
    }
    
    section {
        padding: 4rem 0;
    }
}
