:root{
--bg:#0b1120;
--bg-2:#0f172a;
--card:#111827;
--card-2:#0b1220;
--text:#e5e7eb;
--muted:#94a3b8;
--accent:#f59e0b;
--accent-2:#10b981;
--line:#1f2937;
--shadow:0 20px 60px rgba(2,6,23,0.5);
}

*{
box-sizing:border-box;
}

body{
font-family:"Manrope",sans-serif;
background:radial-gradient(1200px 600px at 20% -10%, #1e293b 0%, rgba(30,41,59,0) 60%),
radial-gradient(900px 500px at 100% 0%, #0b3b3b 0%, rgba(11,59,59,0) 55%),
var(--bg);
color:var(--text);
margin:0;
}

.hero{
background:linear-gradient(180deg, #020617 0%, #0b1120 100%);
padding:70px 20px 60px;
border-bottom:1px solid var(--line);
}

.hero-inner{
max-width:1100px;
margin:auto;
}

.eyebrow{
text-transform:uppercase;
letter-spacing:3px;
font-size:12px;
color:var(--accent);
margin:0 0 10px;
}

h1{
font-family:"Playfair Display",serif;
font-size:46px;
margin:0 0 12px;
}

.lead{
max-width:700px;
color:var(--muted);
font-size:18px;
line-height:1.6;
}

.hero-metrics{
display:flex;
gap:20px;
margin-top:25px;
flex-wrap:wrap;
}

.hero-metrics div{
background:rgba(255,255,255,0.04);
border:1px solid var(--line);
padding:12px 16px;
border-radius:999px;
font-size:14px;
}

.hero-metrics span{
color:var(--accent-2);
font-weight:700;
margin-right:6px;
}

.main{
max-width:1100px;
margin:-40px auto 0;
padding:0 20px 60px;
}

.card{
background:linear-gradient(180deg, var(--card) 0%, var(--card-2) 100%);
border:1px solid var(--line);
border-radius:16px;
padding:24px;
box-shadow:var(--shadow);
}

.capture{
margin-bottom:30px;
}

.section-title h2,
.section-title h3{
margin:0 0 6px;
}

.section-title p{
margin:0 0 18px;
color:var(--muted);
}

textarea{
width:100%;
min-height:140px;
padding:16px;
border-radius:12px;
border:1px solid #1f2937;
background:#0b1220;
color:var(--text);
font-size:15px;
resize:vertical;
outline:none;
}

textarea:focus{
border-color:var(--accent);
box-shadow:0 0 0 3px rgba(245,158,11,0.15);
}

.actions{
display:flex;
gap:12px;
margin-top:16px;
flex-wrap:wrap;
}

button{
padding:12px 18px;
border-radius:12px;
font-size:15px;
cursor:pointer;
border:1px solid transparent;
font-weight:600;
}

button.primary{
background:var(--accent-2);
color:#052e2b;
}

button.primary:hover{
filter:brightness(1.05);
}

button.ghost{
background:transparent;
border:1px solid var(--line);
color:var(--text);
}

button.ghost:hover{
border-color:var(--accent);
color:var(--accent);
}

.helper{
margin-top:10px;
color:var(--muted);
font-size:13px;
}

.results{
display:none;
}

.summary{
display:flex;
justify-content:space-between;
flex-wrap:wrap;
margin:20px 0;
}

.summary-item{
color:var(--muted);
font-size:14px;
}

.summary-item span{
color:var(--accent);
font-weight:700;
margin-right:6px;
}

.grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
}

ul{
list-style:none;
padding:0;
margin:0;
}

li{
padding:10px 12px;
background:#0b1629;
border-radius:10px;
margin-bottom:10px;
border:1px solid #1f2937;
font-size:14px;
}

li .tag{
background:rgba(245,158,11,0.15);
color:var(--accent);
padding:2px 8px;
border-radius:999px;
font-size:11px;
margin-left:8px;
}

.formatted textarea{
min-height:200px;
}

.muted{
color:var(--muted);
}

.cta{
max-width:900px;
margin:20px auto 60px;
text-align:center;
padding:0 20px;
}

.cta h2{
font-family:"Playfair Display",serif;
margin-bottom:8px;
}

footer{
text-align:center;
padding:20px;
border-top:1px solid var(--line);
background:#020617;
}

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

.sr-only{
position:absolute;
left:-10000px;
top:auto;
width:1px;
height:1px;
overflow:hidden;
}

@media (max-width:900px){
.grid{
grid-template-columns:1fr;
}

h1{
font-size:36px;
}
}

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

.card,
.hero-inner,
.cta{
animation:fadeInUp 0.6s ease both;
}
