:root{
--bg:#0c1117;
--card:#151b23;
--ink:#e5e7eb;
--muted:#9ca3af;
--brand:#0f766e;
}

/* GLOBAL */

body{
margin:0;
background:var(--bg);
color:var(--ink);
font-family:system-ui,Segoe UI,Arial,sans-serif;
line-height:1.6;
}

.wrap{
max-width:1100px;
margin:auto;
padding:40px 20px;
}

.grid{
display:grid;
gap:30px;
}

@media(min-width:900px){
.grid.two{
grid-template-columns:1.2fr 1fr;
align-items:center;
}
}

/* CARDS */

.card{
background:var(--card);
border-radius:16px;
padding:24px;
border:1px solid #ffffff10;
}

h1,h2,h3{
margin-top:0;
}

/* TEXT */

.kicker{
color:#6ee7b7;
font-weight:600;
font-size:14px;
letter-spacing:.08em;
text-transform:uppercase;
}

.muted{
color:var(--muted);
}

/* LISTS */

.list-check{
padding-left:20px;
}

.list-check li{
margin-bottom:8px;
}

/* HEADER */

.site-header{
position:sticky;
top:0;
z-index:1000;
background:#0c1117;
display:flex;
align-items:center;
justify-content:space-between;
padding:18px 20px;
border-bottom:1px solid #ffffff10;
flex-wrap:wrap;
gap:10px;
}

.logo a{
color:white;
text-decoration:none;
}

.logo{
font-size:20px;
font-weight:700;
}

/* NAVIGATION */

.nav{
display:flex;
gap:15px;
align-items:center;
}

.nav a{
color:#a7f3d0;
text-decoration:none;
font-size:14px;
}

.nav a:hover{
opacity:.9;
}

/* BUTTON */

.primary-btn{
background:linear-gradient(#0a4882,#0c7653);
border-radius:14px;
padding:18px 20px;
color:#fff;
display:inline-block;
font:normal bold 18px/1 "Roboto",sans-serif;
text-decoration:none;
}

.primary-btn:hover{
opacity:.85;
}

/* MOBILE MENU BUTTON */

.menu-toggle{
display:none;
background:none;
border:none;
color:white;
font-size:24px;
cursor:pointer;
}

/* MOBILE NAV */

@media (max-width:768px){

.menu-toggle{
display:block;
}

.nav{
position:absolute;
top:70px;
right:0;
background:#0c1117;
flex-direction:column;
width:220px;
padding:20px;
display:none;
border-left:1px solid #ffffff10;
border-bottom:1px solid #ffffff10;
}

.nav.open{
display:flex;
}

}

/* FOOTER */

footer{
background:#0b1220;
color:#cbd5e1;
padding:30px 20px;
text-align:center;
}

footer a{
color:#a7f3d0;
text-decoration:none;
margin:0 10px;
font-size:14px;
}

.footer-org{
margin-top:10px;
}

.footer-copy{
margin-top:6px;
font-size:13px;
opacity:.8;
}

/* COMPARISON PAGE */

table{
width:100%;
border-collapse:collapse;
margin-top:20px;
}

th, td{
padding:14px;
border-bottom:1px solid #ffffff15;
text-align:left;
}

th{
color:#a7f3d0;
}

.fail{
color:#ef4444;
}

.win{
color:#22c55e;
font-weight:600;
}

.list{
padding-left:20px;
}

.list li{
margin-bottom:10px;
}


/* ABOUT PAGE */

.grid{
display:grid;
gap:20px;
}

@media(min-width:840px){
.grid.two{
grid-template-columns:1fr 1fr;
}
}

.list-check{
padding-left:20px;
}

.list-check li{
margin-bottom:8px;
}

/* CONTACT FORM */

.form-wrapper{
margin-top:30px;
}

.form-wrapper iframe{
width:100%;
height:900px;
border:none;
border-radius:12px;
}