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

*{margin:0;padding:0;box-sizing:border-box}
body{font-family:'Inter',sans-serif;background:#f8fafc;color:#1e293b;font-size:14px;line-height:1.5}

/* NAV */
nav{background:#fff;border-bottom:1px solid rgba(0,0,0,0.08);padding:0 40px;display:flex;align-items:center;justify-content:space-between;height:60px;position:sticky;top:0;z-index:100}
.logo{font-size:16px;font-weight:700;background:linear-gradient(135deg,#2563eb 0%,#7c3aed 100%);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;letter-spacing:-0.3px;text-decoration:none}
.nav-links{display:flex;gap:28px;align-items:center}
.nav-links a{font-size:13px;font-weight:500;color:#64748b;text-decoration:none}
.nav-links a:hover{color:#1e293b}
.nav-cta{background:linear-gradient(135deg,#2563eb 0%,#7c3aed 100%);color:#fff!important;padding:7px 16px;border-radius:7px;font-size:13px!important;font-weight:600!important}

/* HERO */
.hero{background:#fff;border-bottom:1px solid rgba(0,0,0,0.06);padding:72px 40px 64px;text-align:center}
.hero-badge{display:inline-flex;align-items:center;gap:6px;background:#eff6ff;border:1px solid #bfdbfe;color:#2563eb;font-size:12px;font-weight:600;padding:4px 12px;border-radius:99px;margin-bottom:24px}
.hero h1{font-size:44px;font-weight:800;line-height:1.1;letter-spacing:-1px;color:#0f172a;margin-bottom:16px}
.hero h1 span{background:linear-gradient(135deg,#2563eb 0%,#7c3aed 100%);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.hero p{font-size:17px;color:#64748b;max-width:520px;margin:0 auto 32px;line-height:1.6}
.hero-btns{display:flex;gap:12px;justify-content:center;align-items:center}

/* BUTTONS */
.btn-primary{background:linear-gradient(135deg,#2563eb 0%,#7c3aed 100%);color:#fff;padding:11px 24px;border-radius:8px;font-size:14px;font-weight:600;text-decoration:none;box-shadow:0 1px 3px rgba(37,99,235,0.3);display:inline-block}
.btn-secondary{background:#fff;color:#1e293b;padding:11px 24px;border-radius:8px;font-size:14px;font-weight:600;text-decoration:none;border:1px solid rgba(0,0,0,0.12);box-shadow:0 1px 2px rgba(0,0,0,0.05);display:inline-block}
.btn-white{background:#fff;color:#2563eb;padding:11px 28px;border-radius:8px;font-size:14px;font-weight:700;text-decoration:none;display:inline-block}

/* SECTIONS */
.section{padding:64px 40px;max-width:1100px;margin:0 auto}
.section-label{font-size:11px;font-weight:700;letter-spacing:1.5px;color:#2563eb;text-transform:uppercase;margin-bottom:8px}
.section h2{font-size:28px;font-weight:800;color:#0f172a;letter-spacing:-0.5px;margin-bottom:8px}
.section .desc{font-size:15px;color:#64748b;margin-bottom:40px}

/* PRODUCT CARDS */
.products{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:20px}
.product-card{background:#fff;border:1px solid rgba(0,0,0,0.08);border-radius:12px;padding:28px;box-shadow:0 1px 3px rgba(0,0,0,0.06);transition:box-shadow 0.2s}
.product-card:hover{box-shadow:0 4px 12px rgba(0,0,0,0.1)}
.product-icon{width:44px;height:44px;border-radius:10px;background:linear-gradient(135deg,#2563eb 0%,#7c3aed 100%);display:flex;align-items:center;justify-content:center;font-size:20px;margin-bottom:16px;color:white}
.product-card h3{font-size:17px;font-weight:700;color:#0f172a;margin-bottom:6px}
.product-card p{font-size:13px;color:#64748b;line-height:1.6;margin-bottom:16px}
.product-tag{display:inline-block;background:#f0fdf4;color:#16a34a;border:1px solid #bbf7d0;font-size:11px;font-weight:600;padding:2px 8px;border-radius:99px}
.product-tag.soon{background:#fefce8;color:#ca8a04;border-color:#fde68a}

/* FEATURES */
.features-section{background:#fff;padding:64px 40px;border-top:1px solid rgba(0,0,0,0.06);border-bottom:1px solid rgba(0,0,0,0.06)}
.features-inner{max-width:1100px;margin:0 auto}
.features{display:grid;grid-template-columns:repeat(3,1fr);gap:32px;margin-top:40px}
.feature-icon{font-size:22px;margin-bottom:10px}
.feature h4{font-size:14px;font-weight:700;color:#0f172a;margin-bottom:6px}
.feature p{font-size:13px;color:#64748b;line-height:1.6}

/* PRICING TEASER */
.pricing-teaser{background:linear-gradient(135deg,#2563eb 0%,#7c3aed 100%);color:#fff;padding:56px 40px;text-align:center}
.pricing-teaser h2{font-size:28px;font-weight:800;letter-spacing:-0.5px;margin-bottom:12px;color:#fff}
.pricing-teaser p{font-size:15px;color:rgba(255,255,255,0.8);margin-bottom:28px}

/* FOOTER */
footer{background:#fff;border-top:1px solid rgba(0,0,0,0.08);padding:32px 40px;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:12px}
.footer-logo{font-size:14px;font-weight:700;color:#94a3b8}
.footer-links{display:flex;gap:20px;flex-wrap:wrap}
.footer-links a{font-size:12px;color:#94a3b8;text-decoration:none}
.footer-copy{font-size:12px;color:#94a3b8}

/* PRICING TABLE */
.pricing-card{background:#fff;border:1px solid rgba(0,0,0,0.08);border-radius:12px;padding:32px;box-shadow:0 1px 3px rgba(0,0,0,0.06);max-width:400px}
.pricing-card h3{font-size:20px;font-weight:800;color:#0f172a;margin-bottom:8px}
.price{font-size:36px;font-weight:800;color:#0f172a;margin:16px 0 4px}
.price span{font-size:14px;font-weight:500;color:#64748b}
.pricing-features{list-style:none;margin:24px 0;display:flex;flex-direction:column;gap:10px}
.pricing-features li{font-size:13px;color:#475569;padding-left:20px;position:relative}
.pricing-features li::before{content:"✓";position:absolute;left:0;color:#2563eb;font-weight:700}

/* CONTACT FORM */
.contact-form{background:#fff;border:1px solid rgba(0,0,0,0.08);border-radius:12px;padding:32px;max-width:500px;box-shadow:0 1px 3px rgba(0,0,0,0.06)}
.form-group{margin-bottom:16px}
.form-group label{display:block;font-size:13px;font-weight:600;color:#374151;margin-bottom:6px}
.form-group input,.form-group textarea,.form-group select{width:100%;padding:9px 12px;border:1px solid rgba(0,0,0,0.15);border-radius:7px;font-size:14px;font-family:inherit;color:#1e293b;outline:none}
.form-group input:focus,.form-group textarea:focus{border-color:#2563eb;box-shadow:0 0 0 3px rgba(37,99,235,0.1)}
.form-group textarea{min-height:120px;resize:vertical}

/* PORTAL */
.portal-wrap{max-width:520px;margin:64px auto;padding:0 20px}
.portal-card{background:#fff;border:1px solid rgba(0,0,0,0.08);border-radius:12px;padding:36px;box-shadow:0 1px 3px rgba(0,0,0,0.06)}
.portal-card h2{font-size:20px;font-weight:800;color:#0f172a;margin-bottom:24px}
.error-msg{background:#fef2f2;border:1px solid #fecaca;color:#dc2626;padding:10px 14px;border-radius:7px;font-size:13px;margin-bottom:16px}

/* DASHBOARD */
.dash-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:16px;margin-bottom:32px}
.dash-stat{background:#fff;border:1px solid rgba(0,0,0,0.08);border-radius:10px;padding:20px;box-shadow:0 1px 3px rgba(0,0,0,0.05)}
.dash-stat .label{font-size:11px;font-weight:700;letter-spacing:1px;color:#64748b;text-transform:uppercase;margin-bottom:6px}
.dash-stat .value{font-size:22px;font-weight:800;color:#0f172a}
.badge-active{background:#f0fdf4;color:#16a34a;border:1px solid #bbf7d0;font-size:11px;font-weight:700;padding:3px 10px;border-radius:99px;display:inline-block}
.badge-expired{background:#fef2f2;color:#dc2626;border:1px solid #fecaca;font-size:11px;font-weight:700;padding:3px 10px;border-radius:99px;display:inline-block}
.badge-suspended{background:#fefce8;color:#ca8a04;border:1px solid #fde68a;font-size:11px;font-weight:700;padding:3px 10px;border-radius:99px;display:inline-block}
.key-reveal{font-family:monospace;font-size:15px;background:#f1f5f9;padding:8px 12px;border-radius:6px;letter-spacing:1px}

/* PAGE CONTENT */
.page-content{max-width:1100px;margin:0 auto;padding:64px 40px}
.page-content h1{font-size:32px;font-weight:800;color:#0f172a;letter-spacing:-0.5px;margin-bottom:16px}
.page-content p{font-size:15px;color:#64748b;line-height:1.7;max-width:640px}
