
/* Ensure there is a closing bracket above if this isn't the first rule */
:root {
  --bg-color: #0B0F19;
  --surface-color: #1A2235;
  --text-primary: #F8FAFC;
  --text-secondary: #94A3B8;
  --accent-glow: #38BDF8;
  --accent-purple: #818CF8;
  --border-color: #2E3B52;
}


/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #0B0F19 !important; 
    color: #F8FAFC;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header / Nav */
/*header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--text-primary);
    text-decoration: none;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-glow);
}
*/
/* Typography */
h1, h2, h3 {
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-glow), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 6rem 0;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(56,189,248,0.1) 0%, rgba(11,15,25,0) 70%);
    z-index: -1;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
}

.hero p {
    font-size: 1.2rem;
    color: #94A3B8;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-glow), var(--accent-purple));
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(56, 189, 248, 0.4);
}

/* Cards Grid */
.section-title {
				color: white;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 800;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.card {
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-glow);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.card ul {
    list-style: none;
    color: var(--text-secondary);
    font-size: 0.9rem;
				padding-left: 0;
}

.card ul li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.card ul li::before {
    content: '→';
    color: var(--accent-glow);
    margin-right: 10px;
}

/* Integration Banner */
.integration-banner {
    background: linear-gradient(135deg, #1A2235 0%, #0F1626 100%);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 3rem;
    margin: 4rem 0;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.integration-banner p {
    color: var(--text-secondary);
}

.tag {
    background: rgba(129, 140, 248, 0.1);
    color: var(--accent-purple);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    border-top: 1px solid var(--border-color);
    padding: 3rem 0;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 4rem;
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .integration-banner { flex-direction: column; text-align: center; gap: 1.5rem;}
    .nav-links { display: none; } /* Add a hamburger menu for mobile in production */
}
