:root {
    --bg: #0A0E17; --oxford: #101622; --royal: #0B50DA; --lime: #CCFF00;
    --surface: #1A2235; --surface-light: #242E47; --text: #F9F9FF; --muted: #9CA3AF;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; display: flex; flex-direction: column; min-height: 100vh; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Typography & Utils */
h1, h2, h3 { line-height: 1.2; letter-spacing: -0.02em; }
.text-lime { color: var(--lime); }
.text-royal { color: var(--royal); font-weight: 900; }
.text-center { text-align: center; }

/* Buttons */
.btn { display: inline-block; background: var(--lime); color: var(--oxford); font-weight: 900; font-size: 1.125rem; padding: 1.25rem 2.5rem; border-radius: 8px; border: none; cursor: pointer; transition: 0.3s; box-shadow: 0 0 30px rgba(204, 255, 0, 0.3); width: 100%; }
.btn:hover { background: #B3E600; box-shadow: 0 0 40px rgba(204, 255, 0, 0.5); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--muted); border: 1px solid rgba(255,255,255,0.1); font-weight: 500; font-size: 1rem; width: 100%; padding: 0.75rem 1.5rem; border-radius: 8px; cursor: pointer; transition: 0.3s; }
.btn-outline:hover { color: var(--text); background: rgba(255,255,255,0.05); }
@media(min-width: 640px){ .btn, .btn-outline { width: auto; } }

/* Sections */
section { padding: 6rem 0; position: relative; }
.hero { background: var(--oxford); padding-bottom: 8rem; overflow: hidden; }

/* Glows Using Pseudo-elements */
.hero::before, .hero::after, .benefits::before { content: ''; position: absolute; border-radius: 50%; filter: blur(120px); pointer-events: none; }
.hero::before { top: -10%; left: -10%; width: 50vw; height: 50vw; background: rgba(11,80,218,0.2); }
.hero::after { bottom: -10%; right: -10%; width: 40vw; height: 40vw; background: rgba(204,255,0,0.1); filter: blur(100px); }

/* Layout */
.grid-2 { display: grid; gap: 4rem; align-items: center; position: relative; z-index: 1; }
@media(min-width: 1024px){ .grid-2 { grid-template-columns: 1fr 1fr; } }

/* Hero Content */
.badge { display: inline-block; padding: 6px 16px; background: rgba(11,80,218,0.2); color: var(--lime); border-radius: 20px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; border: 1px solid rgba(11,80,218,0.3); margin-bottom: 2rem; box-shadow: 0 0 15px rgba(11,80,218,0.3); }
.hero h1 { font-size: clamp(2.25rem, 4vw, 3.75rem); font-weight: 900; margin-bottom: 1.5rem; text-shadow: 0 10px 15px rgba(0,0,0,0.1); }
.hero p { font-size: clamp(1.125rem, 2vw, 1.25rem); color: #d1d5db; margin-bottom: 2rem; }
.offer { font-size: 0.875rem; color: var(--muted); display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 1rem; font-weight: 500; }

.hero-img-wrap { position: relative; display: flex; justify-content: center; }
.hero-img-wrap::before { content: ''; position: absolute; inset: 10%; background: rgba(11,80,218,0.15); filter: blur(80px); border-radius: 50%; }
.hero-img { position: relative; max-width: 100%; filter: drop-shadow(0 25px 50px rgba(0,0,0,0.5)); transition: 0.5s; z-index: 2; }
.hero-img:hover { transform: scale(1.05); }

/* Empathy */
.empathy { border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); text-align: center; }
.empathy h2 { font-size: clamp(1.875rem, 3vw, 3rem); font-weight: 800; margin-bottom: 1.5rem; }
.empathy p { max-width: 800px; margin: 0 auto; font-size: clamp(1.125rem, 2vw, 1.25rem); color: var(--muted); }

/* Benefits & Bento Grid */
.benefits::before { top: 50%; left: 50%; transform: translate(-50%, -50%); width: 80%; height: 80%; background: rgba(11,80,218,0.05); filter: blur(150px); }
.bento-grid { display: grid; gap: 1.5rem; margin: 4rem 0; position: relative; z-index: 1; }
@media(min-width: 768px){ .bento-grid { grid-template-columns: repeat(3, 1fr); } .span-2 { grid-column: span 2; } }

.card { background: linear-gradient(145deg, var(--surface), var(--oxford)); border: 1px solid rgba(255,255,255,0.05); border-radius: 1rem; padding: 2.5rem; box-shadow: 0 10px 30px rgba(0,0,0,0.2); transition: 0.3s; overflow: hidden; display: flex; flex-direction: column; }

/* Card Glows via radial-gradient to avoid extra HTML elements */
.card.glow-tr:hover { background: radial-gradient(circle at top right, rgba(11,80,218,0.2) 0%, transparent 50%), linear-gradient(145deg, var(--surface), var(--oxford)); transform: translateY(-5px); border-color: rgba(255,255,255,0.1); }
.card.glow-br:hover { background: radial-gradient(circle at bottom right, rgba(204,255,0,0.1) 0%, transparent 50%), linear-gradient(145deg, var(--surface), var(--oxford)); transform: translateY(-5px); border-color: rgba(255,255,255,0.1); }
.card.glow-bl:hover { background: radial-gradient(circle at bottom left, rgba(11,80,218,0.2) 0%, transparent 50%), linear-gradient(145deg, var(--surface), var(--oxford)); transform: translateY(-5px); border-color: rgba(255,255,255,0.1); }
.card:hover { transform: translateY(-5px); border-color: rgba(255,255,255,0.1); box-shadow: 0 20px 40px rgba(11,80,218,0.15); }

.icon-box { width: 56px; height: 56px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.icon-primary { background: rgba(11,80,218,0.2); border: 1px solid rgba(11,80,218,0.3); color: var(--lime); }
.icon-secondary { background: var(--surface-light); border: 1px solid rgba(255,255,255,0.1); color: #fff; }

.card h3 { font-size: 1.5rem; margin-bottom: 1rem; font-weight: 700; }
.span-2 h3 { font-size: 1.875rem; }
.card p { color: var(--muted); max-width: 36rem; }

/* CTA Panel */
.cta { max-width: 900px; margin: 0 auto; text-align: center; background: rgba(26,34,53,0.7); backdrop-filter: blur(20px); border: 1px solid rgba(11,80,218,0.3); border-radius: 1rem; padding: clamp(2.5rem, 4vw, 3.5rem); position: relative; overflow: hidden; }
.cta::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11,80,218,0.1), transparent 50%, rgba(11,80,218,0.1)); pointer-events: none; }
.cta p { font-size: clamp(1.25rem, 2vw, 1.5rem); font-weight: 600; margin-bottom: 2rem; position: relative; z-index: 1; }

/* Opt Out */
.opt-out { background: var(--oxford); padding: 5rem 0; text-align: center; border-top: 1px solid rgba(255,255,255,0.05); margin-top: auto; }
.opt-out h3 { font-size: 1.5rem; margin-bottom: 1rem; font-weight: 700; }
.opt-out p { color: var(--muted); margin-bottom: 2rem; }
