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

body {
  font-family: 'Inter', sans-serif;
  background: #04060f;
  color: #e8eeff;
  overflow-x: hidden;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  border-bottom: 1px solid #0f1428;
  position: sticky;
  top: 0;
  background: #04060f;
  z-index: 100;
}
.nav-logo { cursor: pointer; }
.nav-logo-name { font-size: 20px; font-weight: 500; letter-spacing: 5px; color: #ffffff; }
.nav-logo-sub { font-size: 9px; letter-spacing: 4px; color: #5AB8FF; margin-top: 3px; }
.nav-links { display: flex; gap: 24px; }
.nav-btn {
  font-size: 10px; letter-spacing: 2px; color: #8899bb;
  background: none; border: none; cursor: pointer;
  padding: 4px 0; font-family: 'Inter', sans-serif;
  transition: color 0.2s;
}
.nav-btn:hover { color: #ffffff; }
.nav-btn.active { color: #5AB8FF; border-bottom: 1px solid #5AB8FF; }
.nav-hamburger { display: none; background: none; border: none; color: #ffffff; font-size: 22px; cursor: pointer; }

/* PAGES */
.page { display: none; }
.page.active { display: block; }

/* HERO */
.hero {
  padding: 100px 48px 90px;
  text-align: center;
  border-bottom: 1px solid #0f1428;
  position: relative;
  overflow: hidden;
}
.hero-glow {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 700px; height: 350px;
  background: radial-gradient(ellipse at center top, rgba(90,184,255,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.eyebrow { font-size: 10px; letter-spacing: 5px; color: #5AB8FF; margin-bottom: 24px; }
.hero-title { font-size: 58px; font-weight: 500; letter-spacing: 10px; color: #ffffff; margin-bottom: 10px; }
.hero-title-sm { font-size: 38px; letter-spacing: 4px; }
.hero-tag { font-size: 12px; letter-spacing: 5px; color: #5AB8FF; margin-bottom: 24px; }
.hero-divider { width: 48px; height: 1px; background: #1a3a5a; margin: 0 auto 28px; }
.hero-sub { font-size: 15px; color: #8899bb; max-width: 560px; margin: 0 auto 48px; line-height: 2; }

/* BUTTONS */
.btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-p {
  background: #5AB8FF; color: #04060f; border: none;
  padding: 14px 36px; font-size: 10px; letter-spacing: 3px;
  cursor: pointer; border-radius: 2px; font-weight: 500;
  font-family: 'Inter', sans-serif; transition: opacity 0.2s;
}
.btn-p:hover { opacity: 0.85; }
.btn-o {
  background: transparent; color: #ffffff; border: 1px solid #2a4a6a;
  padding: 14px 36px; font-size: 10px; letter-spacing: 3px;
  cursor: pointer; border-radius: 2px; font-family: 'Inter', sans-serif;
  transition: border-color 0.2s;
}
.btn-o:hover { border-color: #5AB8FF; }
.badge-btn {
  display: inline-block; font-size: 9px; letter-spacing: 2px;
  color: #5AB8FF; border: 1px solid #1a3a5a; padding: 5px 12px;
  margin-top: 14px; border-radius: 2px; background: none;
  cursor: pointer; font-family: 'Inter', sans-serif; transition: border-color 0.2s;
}
.badge-btn:hover { border-color: #5AB8FF; }
.badge {
  display: inline-block; font-size: 9px; letter-spacing: 2px;
  color: #5AB8FF; border: 1px solid #1a3a5a; padding: 5px 12px;
  margin-top: 14px; border-radius: 2px;
}

/* TRUST BAR */
.trust-bar {
  padding: 36px 48px;
  border-bottom: 1px solid #0f1428;
  display: flex; gap: 0; flex-wrap: wrap; justify-content: center;
}
.trust-item { text-align: center; padding: 0 40px; border-right: 1px solid #0f1428; }
.trust-item:last-child { border-right: none; }
.trust-num { font-size: 26px; font-weight: 500; color: #ffffff; }
.trust-label { font-size: 9px; letter-spacing: 3px; color: #3a5a7a; margin-top: 4px; }

/* SECTIONS */
.sec { padding: 72px 48px; border-bottom: 1px solid #0f1428; }
.sec-label { font-size: 9px; letter-spacing: 5px; color: #5AB8FF; margin-bottom: 12px; }
.sec-title { font-size: 26px; font-weight: 500; letter-spacing: 2px; color: #ffffff; margin-bottom: 16px; }
.sec-body { font-size: 14px; color: #7788aa; line-height: 2; max-width: 580px; margin-bottom: 40px; }
.sec-body strong { color: #c0d0e8; font-weight: 500; }
.sec-body-wide { font-size: 14px; color: #7788aa; line-height: 2; max-width: 720px; margin-bottom: 40px; }

/* CARDS */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.card {
  background: #080c1a; border: 1px solid #0f1a2e;
  border-top: 2px solid #5AB8FF; padding: 24px 20px; border-radius: 4px;
}
.card-icon { font-size: 16px; color: #5AB8FF; margin-bottom: 14px; }
.card-title { font-size: 12px; letter-spacing: 2px; color: #ffffff; margin-bottom: 10px; font-weight: 500; }
.card-desc { font-size: 13px; color: #5a6a88; line-height: 1.8; }

/* TWO COL */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }

/* QUOTE */
.quote-block {
  border-left: 2px solid #5AB8FF; padding: 24px 28px;
  background: #080c1a; border-radius: 0 4px 4px 0;
}
.quote-text { font-size: 14px; color: #c0d0e8; line-height: 2; font-style: italic; }
.quote-attr { font-size: 10px; letter-spacing: 2px; color: #3a5a7a; margin-top: 14px; }

/* AUDIENCE */
.audience-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; margin-top: 32px; }
.audience-item { background: #080c1a; border: 1px solid #0f1a2e; padding: 20px 18px; border-radius: 4px; }
.audience-name { font-size: 11px; letter-spacing: 2px; color: #ffffff; margin-bottom: 8px; font-weight: 500; }
.audience-desc { font-size: 12px; color: #4a5a78; line-height: 1.7; }

/* STORE */
.store-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px; }
.store-item { background: #080c1a; border: 1px solid #0f1a2e; padding: 28px 16px; text-align: center; border-radius: 4px; }
.store-name { font-size: 11px; letter-spacing: 2px; color: #ffffff; margin-bottom: 8px; font-weight: 500; }
.store-sub { font-size: 10px; letter-spacing: 1px; color: #3a5a7a; }

/* PRODUCTS */
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.product-card { background: #080c1a; border: 1px solid #0f1a2e; padding: 28px 22px; border-radius: 4px; }
.product-type { font-size: 9px; letter-spacing: 3px; color: #5AB8FF; margin-bottom: 10px; }
.product-title { font-size: 16px; font-weight: 500; color: #ffffff; margin-bottom: 12px; }
.product-desc { font-size: 13px; color: #5a6a88; line-height: 1.8; margin-bottom: 16px; }

/* CONTACT FORM */
.contact-form { margin-top: 8px; }
.form-row { margin-bottom: 18px; }
.form-label { font-size: 10px; letter-spacing: 3px; color: #5AB8FF; display: block; margin-bottom: 8px; }
.form-input {
  width: 100%; background: #080c1a; border: 1px solid #0f1a2e;
  color: #e8eeff; padding: 12px 16px; font-size: 14px;
  border-radius: 4px; outline: none; font-family: 'Inter', sans-serif;
  transition: border-color 0.2s;
}
.form-input:focus { border-color: #2a4a6a; }
.form-select {
  width: 100%; background: #080c1a; border: 1px solid #0f1a2e;
  color: #8899bb; padding: 12px 16px; font-size: 14px;
  border-radius: 4px; outline: none; font-family: 'Inter', sans-serif;
}
.form-textarea {
  width: 100%; background: #080c1a; border: 1px solid #0f1a2e;
  color: #e8eeff; padding: 12px 16px; font-size: 14px;
  border-radius: 4px; outline: none; font-family: 'Inter', sans-serif;
  min-height: 130px; resize: vertical; transition: border-color 0.2s;
}
.form-textarea:focus { border-color: #2a4a6a; }

/* FOOTER */
.footer {
  padding: 36px 48px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px; border-top: 1px solid #0f1428;
}
.footer-brand { font-size: 10px; letter-spacing: 3px; color: #2a3a5a; }
.footer-tag { font-size: 10px; color: #1a2a3a; margin-top: 4px; }

/* MOBILE */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: #04060f; padding: 20px 24px; border-bottom: 1px solid #0f1428; gap: 16px; }
  .nav-links.open { display: flex; }
  .nav-hamburger { display: block; }
  .hero { padding: 64px 24px 56px; }
  .hero-title { font-size: 38px; }
  .hero-title-sm { font-size: 28px; }
  .sec { padding: 48px 24px; }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .trust-bar { padding: 24px; gap: 16px; }
  .trust-item { border-right: none; padding: 8px 20px; }
  .footer { padding: 28px 24px; flex-direction: column; align-items: flex-start; }
}
