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

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{font-size:16px;scroll-behavior:smooth}
body{font-family:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Helvetica,sans-serif;background:#ffffff;color:#333840;font-size:14px;font-weight:400;line-height:1.6}

a{color:#1b61c9;text-decoration:none}
a:hover{color:#1a3866}
img{max-width:100%;height:auto;display:block}

.container{max-width:1280px;margin:0 auto;padding:0 48px}

/* TOP NAV */
.top-nav{position:sticky;top:0;z-index:100;background:#ffffff;height:64px;border-bottom:1px solid #dddddd;display:flex;align-items:center}
.top-nav .container{display:flex;align-items:center;justify-content:space-between;width:100%}
.nav-brand{font-size:18px;font-weight:600;color:#181d26;letter-spacing:-0.5px}
.nav-brand span{color:#aa2d00}
.nav-menu{display:flex;align-items:center;gap:24px;list-style:none}
.nav-menu a{font-size:14px;font-weight:400;color:#181d26}
.nav-hamburger{display:none;background:none;border:none;cursor:pointer;flex-direction:column;gap:5px;padding:4px}
.nav-hamburger span{display:block;width:24px;height:2px;background:#181d26}
.nav-mobile{display:none;position:fixed;inset:0;background:#ffffff;z-index:200;flex-direction:column;align-items:flex-start;padding:80px 48px 48px;gap:24px}
.nav-mobile.open{display:flex}
.nav-mobile a{font-size:20px;font-weight:500;color:#181d26}
.nav-mobile-close{position:absolute;top:20px;right:24px;background:none;border:none;font-size:28px;cursor:pointer;color:#181d26}

/* HERO */
.hero-band{padding:96px 0;background:#ffffff}
.hero-band h1{font-size:40px;font-weight:400;line-height:1.2;color:#181d26;max-width:720px;margin-bottom:16px}
.hero-band p{font-size:14px;color:#333840;max-width:560px;margin-bottom:32px}
.hero-meta{font-size:13px;color:#41454d;margin-top:8px}

/* BUTTONS */
.btn-primary{display:inline-flex;align-items:center;background:#181d26;color:#ffffff;font-size:16px;font-weight:500;padding:16px 24px;border-radius:12px;border:none;cursor:pointer;line-height:1.4;text-decoration:none;transition:background .15s}
.btn-primary:hover,.btn-primary:active{background:#0d1218;color:#ffffff}
.btn-secondary{display:inline-flex;align-items:center;background:#ffffff;color:#181d26;font-size:16px;font-weight:500;padding:16px 24px;border-radius:12px;border:1px solid #dddddd;cursor:pointer;line-height:1.4;text-decoration:none;transition:background .15s}

/* SIGNATURE CARDS */
.signature-coral{background:#aa2d00;color:#ffffff;border-radius:12px;padding:48px;margin:0 0 24px}
.signature-coral h2{font-size:32px;font-weight:400;line-height:1.2;color:#ffffff;margin-bottom:16px}
.signature-coral p{font-size:14px;color:rgba(255,255,255,0.85);margin-bottom:24px}
.signature-dark{background:#181d26;color:#ffffff;border-radius:12px;padding:48px}
.signature-dark h2{font-size:32px;font-weight:400;line-height:1.2;color:#ffffff;margin-bottom:16px}
.signature-dark p{font-size:14px;color:rgba(255,255,255,0.8);margin-bottom:24px}

/* SECTIONS */
.section{padding:96px 0}
.section-title{font-size:32px;font-weight:400;line-height:1.2;color:#181d26;margin-bottom:16px}
.section-sub{font-size:14px;color:#41454d;margin-bottom:48px;max-width:560px}

/* ARTICLE CARDS */
.articles-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.article-card{background:#ffffff;border-radius:10px;overflow:hidden;border:1px solid #dddddd}
.article-card img{width:100%;aspect-ratio:16/9;object-fit:cover}
.article-card-body{padding:16px}
.article-card-tag{font-size:12px;font-weight:600;color:#aa2d00;text-transform:uppercase;letter-spacing:.08em;margin-bottom:8px}
.article-card-title{font-size:18px;font-weight:500;line-height:1.4;color:#181d26;margin-bottom:8px}
.article-card-excerpt{font-size:14px;color:#333840;line-height:1.6;margin-bottom:12px}
.article-card-meta{font-size:13px;color:#41454d}
.article-card-title a{color:#181d26}
.article-card-title a:hover{color:#aa2d00}

/* DEMO GRID */
.demo-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.demo-card{border-radius:10px;padding:16px;overflow:hidden}
.demo-card.peach{background:#fcab79}
.demo-card.mint{background:#a8d8c4}
.demo-card.cream{background:#f5e9d4}
.demo-card.yellow{background:#f4d35e}
.demo-card h3{font-size:16px;font-weight:500;color:#181d26;margin-bottom:8px}
.demo-card p{font-size:14px;color:#333840}
.demo-card img{border-radius:10px;width:100%;object-fit:cover;margin-bottom:12px}

/* CREAM CALLOUT */
.cream-callout{background:#f5e9d4;border-radius:10px;padding:48px;display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:center}
.cream-callout h2{font-size:32px;font-weight:400;color:#181d26;margin-bottom:16px}
.cream-callout p{font-size:14px;color:#333840}

/* CONTACT FORM */
.contact-form{max-width:560px}
.form-group{margin-bottom:16px}
.form-group label{display:block;font-size:14px;font-weight:500;color:#181d26;margin-bottom:6px}
.form-group input,.form-group textarea{width:100%;background:#ffffff;border:1px solid #dddddd;border-radius:6px;padding:12px 16px;font-size:14px;color:#181d26;height:44px;font-family:inherit;transition:border-color .15s}
.form-group textarea{height:120px;resize:vertical}
.form-group input:focus,.form-group textarea:focus{outline:none;border-color:#458fff}
.form-submit{margin-top:8px}

/* CTA BAND */
.cta-band{background:#e0e2e6;border-radius:12px;padding:48px;text-align:center}
.cta-band h2{font-size:32px;font-weight:400;color:#181d26;margin-bottom:16px}
.cta-band p{font-size:14px;color:#41454d;margin-bottom:24px}

/* ARTICLE PAGE */
.article-page{padding:96px 0}
.article-header{max-width:800px;margin:0 auto 48px}
.article-header h1{font-size:40px;font-weight:400;color:#181d26;line-height:1.2;margin-bottom:16px}
.article-header .article-meta{font-size:13px;color:#41454d;margin-bottom:24px}
.article-header img{width:100%;aspect-ratio:16/9;object-fit:cover;border-radius:10px}
.article-body{max-width:800px;margin:0 auto}
.article-body h2{font-size:24px;font-weight:400;color:#181d26;margin:40px 0 16px;line-height:1.35}
.article-body h3{font-size:18px;font-weight:500;color:#181d26;margin:32px 0 12px;line-height:1.4}
.article-body p{font-size:14px;line-height:1.7;color:#333840;margin-bottom:16px}
.article-body ul{margin:0 0 16px 24px}
.article-body ul li{font-size:14px;color:#333840;margin-bottom:6px}
.article-body a{color:#1b61c9}
.article-body .source-note{font-size:13px;color:#41454d;margin-top:32px;padding-top:24px;border-top:1px solid #dddddd}

/* FOOTER */
footer{background:#ffffff;border-top:1px solid #dddddd;padding:96px 0 48px}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:24px;margin-bottom:48px}
.footer-brand{font-size:16px;font-weight:600;color:#181d26;margin-bottom:12px}
.footer-brand span{color:#aa2d00}
.footer-desc{font-size:14px;color:#41454d;line-height:1.6}
.footer-col h4{font-size:14px;font-weight:500;color:#181d26;margin-bottom:16px}
.footer-col ul{list-style:none}
.footer-col ul li{margin-bottom:8px}
.footer-col ul li a{font-size:14px;color:#41454d}
.footer-col ul li a:hover{color:#181d26}
.footer-legal{display:flex;justify-content:space-between;align-items:center;padding-top:24px;border-top:1px solid #dddddd;flex-wrap:wrap;gap:12px}
.footer-legal p{font-size:13px;color:#41454d}
.footer-legal-links{display:flex;gap:16px}
.footer-legal-links a{font-size:13px;color:#41454d}

/* PAGE CONTENT */
.page-content{padding:96px 0}
.page-content h1{font-size:40px;font-weight:400;color:#181d26;margin-bottom:24px}
.page-content h2{font-size:24px;font-weight:400;color:#181d26;margin:40px 0 16px}
.page-content p{font-size:14px;color:#333840;line-height:1.7;margin-bottom:16px}
.page-content ul{margin:0 0 16px 24px}
.page-content ul li{font-size:14px;color:#333840;margin-bottom:6px}

/* COOKIE BANNER */
#cookie-banner{position:fixed;bottom:0;left:0;right:0;background:#181d26;color:#ffffff;padding:20px 48px;display:flex;align-items:center;justify-content:space-between;gap:24px;z-index:500;flex-wrap:wrap}
#cookie-banner p{font-size:13px;color:rgba(255,255,255,0.85);flex:1;min-width:240px}
#cookie-banner p a{color:#ffffff;text-decoration:underline}
.cookie-buttons{display:flex;gap:12px;flex-shrink:0}
.btn-cookie-accept{background:#1b61c9;color:#ffffff;font-size:13.12px;font-weight:600;padding:12px 10px;border-radius:2px;border:none;cursor:pointer}
.btn-cookie-reject{background:transparent;color:#ffffff;font-size:13.12px;font-weight:600;padding:12px 10px;border-radius:2px;border:1px solid rgba(255,255,255,0.4);cursor:pointer}

/* BREADCRUMB */
.breadcrumb{padding:16px 0;font-size:13px;color:#41454d}
.breadcrumb a{color:#41454d}
.breadcrumb a:hover{color:#181d26}
.breadcrumb span{margin:0 6px}

/* ABOUT STATS */
.stats-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;margin:48px 0}
.stat-item{text-align:center;padding:32px 16px;background:#f8fafc;border-radius:10px}
.stat-number{font-size:32px;font-weight:500;color:#181d26;margin-bottom:8px}
.stat-label{font-size:14px;color:#41454d}

/* RESPONSIVE */
@media(max-width:1024px){
.articles-grid,.demo-grid{grid-template-columns:repeat(2,1fr)}
.cream-callout{grid-template-columns:1fr}
.footer-grid{grid-template-columns:1fr 1fr}
.stats-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:767px){
.container{padding:0 20px}
.top-nav .nav-menu{display:none}
.nav-hamburger{display:flex}
.articles-grid,.demo-grid,.stats-grid{grid-template-columns:1fr}
.footer-grid{grid-template-columns:1fr}
.hero-band{padding:64px 0}
.hero-band h1{font-size:28px}
.section{padding:64px 0}
.section-title{font-size:24px}
.signature-coral,.signature-dark{padding:32px 24px}
.signature-coral h2,.signature-dark h2{font-size:24px}
.cream-callout{padding:32px 24px}
.cream-callout h2{font-size:24px}
.cta-band{padding:32px 24px}
.cta-band h2{font-size:24px}
#cookie-banner{padding:16px 20px}
.footer-legal{flex-direction:column;align-items:flex-start}
.article-header h1{font-size:28px}
.article-page{padding:64px 0}
.page-content{padding:64px 0}
.page-content h1{font-size:28px}
}
