@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@400&display=swap');

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}

:root{
--canvas:#f7f7f4;
--canvas-soft:#fafaf7;
--surface-card:#ffffff;
--surface-strong:#e6e5e0;
--primary:#f54e00;
--primary-active:#d04200;
--ink:#26251e;
--body:#5a5852;
--body-strong:#26251e;
--muted:#807d72;
--muted-soft:#a09c92;
--on-primary:#ffffff;
--hairline:#e6e5e0;
--hairline-soft:#efeee8;
--hairline-strong:#cfcdc4;
--semantic-success:#1f8a65;
--semantic-error:#cf2d56;
--rounded-xs:4px;
--rounded-sm:6px;
--rounded-md:8px;
--rounded-lg:12px;
--rounded-xl:16px;
--rounded-pill:9999px;
}

html{scroll-behavior:smooth}

body{
background-color:var(--canvas);
color:var(--body);
font-family:'Inter',system-ui,'Helvetica Neue',Helvetica,Arial,sans-serif;
font-size:16px;
font-weight:400;
line-height:1.5;
}

code,pre,.mono{
font-family:'JetBrains Mono',monospace;
font-size:13px;
}

a{color:var(--ink);text-decoration:none}
a:hover{color:var(--primary)}

img{max-width:100%;height:auto;display:block}

.container{max-width:1200px;margin:0 auto;padding:0 24px}

/* NAV */
.site-nav{
background:var(--canvas);
border-bottom:1px solid var(--hairline);
position:sticky;
top:0;
z-index:100;
height:64px;
display:flex;
align-items:center;
}
.nav-inner{
display:flex;
align-items:center;
justify-content:space-between;
width:100%;
}
.nav-logo{
font-size:18px;
font-weight:600;
color:var(--ink);
letter-spacing:-0.3px;
display:flex;
align-items:center;
gap:8px;
}
.nav-logo span{color:var(--primary)}
.nav-links{
display:flex;
align-items:center;
gap:28px;
list-style:none;
}
.nav-links a{
font-size:14px;
font-weight:500;
color:var(--body);
transition:color 0.15s;
}
.nav-links a:hover{color:var(--ink)}
.nav-hamburger{
display:none;
flex-direction:column;
gap:5px;
background:none;
border:none;
cursor:pointer;
padding:4px;
}
.nav-hamburger span{
display:block;
width:22px;
height:2px;
background:var(--ink);
border-radius:2px;
transition:all 0.2s;
}
.nav-mobile{
display:none;
position:fixed;
top:64px;
left:0;
right:0;
background:var(--canvas);
border-bottom:1px solid var(--hairline);
padding:16px 24px;
z-index:99;
}
.nav-mobile.open{display:block}
.nav-mobile ul{list-style:none;display:flex;flex-direction:column;gap:16px}
.nav-mobile a{font-size:15px;font-weight:500;color:var(--ink)}

/* HERO */
.hero{padding:80px 0 60px}
.hero-label{
display:inline-block;
font-size:11px;
font-weight:600;
letter-spacing:0.88px;
text-transform:uppercase;
color:var(--muted);
background:var(--surface-strong);
padding:4px 10px;
border-radius:var(--rounded-pill);
margin-bottom:24px;
}
.hero h1{
font-size:72px;
font-weight:400;
line-height:1.1;
letter-spacing:-2.16px;
color:var(--ink);
max-width:800px;
margin-bottom:20px;
}
.hero-sub{
font-size:18px;
color:var(--body);
max-width:560px;
line-height:1.55;
margin-bottom:40px;
}
.hero-img{
margin-top:48px;
border-radius:var(--rounded-lg);
overflow:hidden;
border:1px solid var(--hairline);
}
.hero-img img{
width:100%;
height:460px;
object-fit:cover;
}

/* SECTIONS */
section{padding:80px 0}

.section-label{
font-size:11px;
font-weight:600;
letter-spacing:0.88px;
text-transform:uppercase;
color:var(--muted);
margin-bottom:16px;
}
.section-title{
font-size:36px;
font-weight:400;
line-height:1.2;
letter-spacing:-0.72px;
color:var(--ink);
margin-bottom:16px;
}
.section-lead{
font-size:16px;
color:var(--body);
max-width:600px;
line-height:1.55;
margin-bottom:48px;
}

/* CARDS */
.card-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
}
.card-grid-2{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
}
.card{
background:var(--surface-card);
border:1px solid var(--hairline);
border-radius:var(--rounded-lg);
padding:24px;
}
.card-img{
border-radius:var(--rounded-md);
overflow:hidden;
margin-bottom:20px;
}
.card-img img{
width:100%;
height:200px;
object-fit:cover;
}
.card-tag{
font-size:11px;
font-weight:600;
letter-spacing:0.88px;
text-transform:uppercase;
color:var(--muted);
margin-bottom:8px;
}
.card h3{
font-size:18px;
font-weight:600;
line-height:1.35;
color:var(--ink);
margin-bottom:10px;
}
.card p{
font-size:14px;
color:var(--body);
line-height:1.5;
}
.card-link{
display:inline-block;
margin-top:16px;
font-size:14px;
font-weight:500;
color:var(--primary);
}
.card-link:hover{color:var(--primary-active)}

/* ARTICLE CARD */
.article-card{
background:var(--surface-card);
border:1px solid var(--hairline);
border-radius:var(--rounded-lg);
overflow:hidden;
}
.article-card-img img{
width:100%;
height:220px;
object-fit:cover;
}
.article-card-body{padding:24px}
.article-card-meta{
font-size:11px;
font-weight:600;
letter-spacing:0.88px;
text-transform:uppercase;
color:var(--muted);
margin-bottom:10px;
}
.article-card h3{
font-size:20px;
font-weight:600;
line-height:1.3;
color:var(--ink);
margin-bottom:10px;
}
.article-card p{
font-size:14px;
color:var(--body);
line-height:1.55;
}
.article-card-footer{
padding:16px 24px;
border-top:1px solid var(--hairline-soft);
}
.read-link{
font-size:13px;
font-weight:500;
color:var(--primary);
}

/* STATS BAND */
.stats-band{background:var(--surface-card);border-top:1px solid var(--hairline);border-bottom:1px solid var(--hairline)}
.stats-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
}
.stat-item{
padding:40px 32px;
border-right:1px solid var(--hairline);
}
.stat-item:last-child{border-right:none}
.stat-num{
font-size:36px;
font-weight:400;
letter-spacing:-0.72px;
color:var(--ink);
margin-bottom:6px;
}
.stat-desc{
font-size:14px;
color:var(--body);
}

/* DIVIDER */
.divider{border:none;border-top:1px solid var(--hairline);margin:0}

/* INFO BAND */
.info-band{background:var(--surface-card);border-top:1px solid var(--hairline);border-bottom:1px solid var(--hairline)}
.info-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:48px;
align-items:center;
}
.info-img{border-radius:var(--rounded-lg);overflow:hidden;border:1px solid var(--hairline)}
.info-img img{width:100%;height:340px;object-fit:cover}
.info-content h2{
font-size:26px;
font-weight:400;
line-height:1.25;
letter-spacing:-0.325px;
color:var(--ink);
margin-bottom:16px;
}
.info-content p{
font-size:15px;
color:var(--body);
line-height:1.6;
margin-bottom:14px;
}

/* CONTACT FORM */
.form-section{background:var(--canvas)}
.form-wrap{
max-width:640px;
margin:0 auto;
background:var(--surface-card);
border:1px solid var(--hairline);
border-radius:var(--rounded-lg);
padding:40px;
}
.form-group{margin-bottom:20px}
.form-group label{
display:block;
font-size:14px;
font-weight:500;
color:var(--ink);
margin-bottom:6px;
}
.form-group input,
.form-group textarea{
width:100%;
background:var(--surface-card);
border:1px solid var(--hairline-strong);
border-radius:var(--rounded-md);
padding:12px 16px;
font-size:15px;
color:var(--ink);
font-family:inherit;
height:44px;
transition:border-color 0.15s;
outline:none;
}
.form-group textarea{height:120px;resize:vertical}
.form-group input:focus,
.form-group textarea:focus{border-color:var(--primary)}
.form-group input::placeholder,
.form-group textarea::placeholder{color:var(--muted-soft)}
.btn-primary{
display:inline-flex;
align-items:center;
justify-content:center;
background:var(--primary);
color:var(--on-primary);
font-size:14px;
font-weight:500;
padding:10px 24px;
height:40px;
border-radius:var(--rounded-md);
border:none;
cursor:pointer;
transition:background 0.15s;
}
.btn-primary:hover{background:var(--primary-active)}
.btn-primary:disabled{opacity:0.6;cursor:not-allowed}
.form-msg{
margin-top:16px;
font-size:14px;
padding:12px 16px;
border-radius:var(--rounded-md);
display:none;
}
.form-msg.success{
background:#e8f5f0;
color:var(--semantic-success);
border:1px solid #b3ddd0;
display:block;
}
.form-msg.error{
background:#fdeef1;
color:var(--semantic-error);
border:1px solid #f5b8c4;
display:block;
}

/* ARTICLE PAGE */
.article-hero{padding:60px 0 40px}
.article-hero h1{
font-size:48px;
font-weight:400;
line-height:1.15;
letter-spacing:-1.2px;
color:var(--ink);
max-width:760px;
margin-bottom:20px;
}
.article-meta{
font-size:13px;
color:var(--muted);
margin-bottom:32px;
display:flex;
gap:16px;
align-items:center;
flex-wrap:wrap;
}
.article-meta span{display:flex;align-items:center;gap:4px}
.article-cover{
border-radius:var(--rounded-lg);
overflow:hidden;
border:1px solid var(--hairline);
margin-bottom:48px;
}
.article-cover img{width:100%;height:480px;object-fit:cover}
.article-body{max-width:720px}
.article-body h2{
font-size:26px;
font-weight:400;
letter-spacing:-0.325px;
color:var(--ink);
margin:40px 0 16px;
}
.article-body h3{
font-size:20px;
font-weight:600;
color:var(--ink);
margin:28px 0 12px;
}
.article-body p{
font-size:16px;
color:var(--body);
line-height:1.65;
margin-bottom:18px;
}
.article-body ul,.article-body ol{
margin:0 0 18px 24px;
}
.article-body li{
font-size:16px;
color:var(--body);
line-height:1.65;
margin-bottom:6px;
}
.article-body a{color:var(--primary)}
.article-body a:hover{color:var(--primary-active)}
.article-body blockquote{
border-left:3px solid var(--primary);
padding:16px 20px;
margin:24px 0;
background:var(--canvas-soft);
border-radius:0 var(--rounded-md) var(--rounded-md) 0;
font-size:15px;
color:var(--body-strong);
line-height:1.6;
}
.article-body .data-box{
background:var(--surface-card);
border:1px solid var(--hairline);
border-radius:var(--rounded-lg);
padding:24px;
margin:28px 0;
}
.article-body .data-box h4{
font-size:13px;
font-weight:600;
letter-spacing:0.88px;
text-transform:uppercase;
color:var(--muted);
margin-bottom:12px;
}
.article-body .data-box ul{margin:0;padding:0;list-style:none}
.article-body .data-box li{
font-size:14px;
color:var(--body);
padding:8px 0;
border-bottom:1px solid var(--hairline-soft);
display:flex;
justify-content:space-between;
}
.article-body .data-box li:last-child{border-bottom:none}
.article-ref{
font-size:12px;
color:var(--muted);
margin-top:4px;
}
.article-layout{
display:grid;
grid-template-columns:1fr 300px;
gap:48px;
align-items:start;
}
.article-sidebar{position:sticky;top:88px}
.sidebar-card{
background:var(--surface-card);
border:1px solid var(--hairline);
border-radius:var(--rounded-lg);
padding:24px;
margin-bottom:20px;
}
.sidebar-card h4{
font-size:13px;
font-weight:600;
letter-spacing:0.88px;
text-transform:uppercase;
color:var(--muted);
margin-bottom:14px;
}
.sidebar-card ul{list-style:none;padding:0}
.sidebar-card li{
padding:8px 0;
border-bottom:1px solid var(--hairline-soft);
}
.sidebar-card li:last-child{border-bottom:none}
.sidebar-card a{
font-size:14px;
color:var(--body);
}
.sidebar-card a:hover{color:var(--primary)}

/* PAGE (about/privacy/terms) */
.page-hero{padding:60px 0 40px}
.page-hero h1{
font-size:48px;
font-weight:400;
letter-spacing:-1.2px;
color:var(--ink);
margin-bottom:12px;
}
.page-hero p{font-size:16px;color:var(--body)}
.page-body{max-width:760px;padding-bottom:80px}
.page-body h2{
font-size:26px;
font-weight:400;
letter-spacing:-0.325px;
color:var(--ink);
margin:36px 0 14px;
}
.page-body h3{
font-size:18px;
font-weight:600;
color:var(--ink);
margin:24px 0 10px;
}
.page-body p{
font-size:15px;
color:var(--body);
line-height:1.65;
margin-bottom:14px;
}
.page-body ul,.page-body ol{
margin:0 0 16px 24px;
}
.page-body li{
font-size:15px;
color:var(--body);
line-height:1.6;
margin-bottom:4px;
}
.page-body a{color:var(--primary)}

/* FOOTER */
.site-footer{
background:var(--canvas);
border-top:1px solid var(--hairline);
padding:64px 0 48px;
}
.footer-grid{
display:grid;
grid-template-columns:2fr 1fr 1fr 1fr 1fr;
gap:32px;
margin-bottom:48px;
}
.footer-brand p{
font-size:14px;
color:var(--body);
line-height:1.55;
margin-top:12px;
max-width:220px;
}
.footer-col h5{
font-size:12px;
font-weight:600;
letter-spacing:0.88px;
text-transform:uppercase;
color:var(--muted);
margin-bottom:16px;
}
.footer-col ul{list-style:none;padding:0}
.footer-col li{margin-bottom:10px}
.footer-col a{
font-size:14px;
color:var(--body);
}
.footer-col a:hover{color:var(--ink)}
.footer-bottom{
display:flex;
align-items:center;
justify-content:space-between;
padding-top:24px;
border-top:1px solid var(--hairline);
}
.footer-copy{font-size:13px;color:var(--muted)}
.footer-updated{font-size:12px;color:var(--muted-soft)}

/* BREADCRUMB */
.breadcrumb{
font-size:13px;
color:var(--muted);
margin-bottom:20px;
display:flex;
gap:6px;
align-items:center;
flex-wrap:wrap;
}
.breadcrumb a{color:var(--muted)}
.breadcrumb a:hover{color:var(--ink)}
.breadcrumb span{color:var(--muted-soft)}

/* COOKIE BANNER */
#cookie-banner{
position:fixed;
bottom:24px;
left:24px;
right:24px;
max-width:680px;
margin:0 auto;
background:var(--ink);
color:var(--canvas);
border-radius:var(--rounded-lg);
padding:20px 24px;
display:flex;
align-items:center;
justify-content:space-between;
gap:16px;
z-index:999;
box-shadow:0 4px 24px rgba(38,37,30,0.18);
}
#cookie-banner p{
font-size:14px;
color:var(--canvas);
line-height:1.5;
}
#cookie-banner a{color:var(--canvas);text-decoration:underline}
.cookie-btns{display:flex;gap:8px;flex-shrink:0}
.btn-cookie-accept{
background:var(--primary);
color:var(--on-primary);
border:none;
border-radius:var(--rounded-md);
padding:8px 16px;
font-size:13px;
font-weight:500;
cursor:pointer;
}
.btn-cookie-reject{
background:transparent;
color:var(--canvas-soft);
border:1px solid rgba(247,247,244,0.3);
border-radius:var(--rounded-md);
padding:8px 16px;
font-size:13px;
font-weight:500;
cursor:pointer;
}
.btn-cookie-accept:hover{background:var(--primary-active)}

/* BADGE */
.badge{
display:inline-block;
font-size:11px;
font-weight:600;
letter-spacing:0.88px;
text-transform:uppercase;
background:var(--surface-strong);
color:var(--ink);
padding:4px 10px;
border-radius:var(--rounded-pill);
}

/* TABLE */
.data-table{width:100%;border-collapse:collapse;margin:20px 0}
.data-table th{
font-size:12px;
font-weight:600;
letter-spacing:0.5px;
text-transform:uppercase;
color:var(--muted);
text-align:left;
padding:10px 16px;
border-bottom:1px solid var(--hairline-strong);
background:var(--canvas-soft);
}
.data-table td{
font-size:14px;
color:var(--body);
padding:12px 16px;
border-bottom:1px solid var(--hairline-soft);
}
.data-table tr:last-child td{border-bottom:none}

/* RESPONSIVE */
@media(max-width:1024px){
.hero h1{font-size:56px;letter-spacing:-1.4px}
.card-grid{grid-template-columns:repeat(2,1fr)}
.stats-grid{grid-template-columns:repeat(2,1fr)}
.footer-grid{grid-template-columns:1fr 1fr 1fr}
.article-layout{grid-template-columns:1fr}
.article-sidebar{position:static}
}
@media(max-width:768px){
.hero h1{font-size:40px;letter-spacing:-0.8px}
.hero{padding:48px 0 40px}
.info-grid{grid-template-columns:1fr}
.nav-links{display:none}
.nav-hamburger{display:flex}
.footer-grid{grid-template-columns:1fr 1fr}
.card-grid-2{grid-template-columns:1fr}
#cookie-banner{flex-direction:column;align-items:flex-start}
}
@media(max-width:640px){
.hero h1{font-size:32px;letter-spacing:-0.5px}
.hero-img img{height:260px}
.card-grid{grid-template-columns:1fr}
.stats-grid{grid-template-columns:1fr 1fr}
.section-title{font-size:28px}
.footer-grid{grid-template-columns:1fr}
.article-hero h1{font-size:32px}
.article-cover img{height:260px}
.form-wrap{padding:24px}
.page-hero h1{font-size:32px}
}
