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

:root {
  --orange:     #e8900a;
  --orange-dk:  #c47808;
  --charcoal:   #1e2226;
  --gray-dark:  #3d4449;
  --gray-mid:   #6b737a;
  --gray-light: #e8eaec;
  --bg:         #ffffff;
  --bg-soft:    #f7f8f9;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── TOPBAR ─────────────────────────────────── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-light);
}
.topbar-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { height: 38px; width: auto; }
nav { display: flex; gap: 32px; align-items: center; }
nav a {
  color: var(--gray-mid);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color .15s;
}
nav a:hover { color: var(--charcoal); }

/* ── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border-radius: 6px;
  transition: all .18s;
  cursor: pointer;
  border: none;
}
.btn-orange {
  background: var(--orange);
  color: #fff;
  padding: 11px 24px;
}
.btn-orange:hover {
  background: var(--orange-dk);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232,144,10,.25);
}
.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--gray-light);
  padding: 10px 22px;
}
.btn-outline:hover { border-color: #bbb; background: var(--bg-soft); }
nav .btn-orange { padding: 9px 20px; font-size: 14px; }

/* ── ANNOUNCEMENT BAR ────────────────────────── */
.announcement-bar {
  background: #1e2226;
  padding: 10px 32px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.announcement-bar p {
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  margin: 0;
}
.announcement-bar strong { color: #fff; }
.ann-divider { color: rgba(255,255,255,0.4); margin: 0 8px; }

/* ── HERO ───────────────────────────────────── */
.hero {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--gray-light);
  overflow: hidden;
  background: var(--bg-soft);
}
.hero-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.hero-bg img {
  height: 100%;
  width: 60%;
  object-fit: contain;
  object-position: center right;
  display: block;
}
.hero-bg::after {
  content: none;
}
.hero-inner {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 32px;
  position: relative;
  z-index: 2;
}
.hero-left { max-width: 520px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}
.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  color: var(--charcoal);
  margin-bottom: 20px;
}
.h1-product {
  display: block;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.0;
  letter-spacing: -1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.h1-cobalt { color: #1e6fc8; }
.h1-tagline {
  display: block;
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: -.3px;
  color: var(--gray-dark);
  text-transform: none;
  line-height: 1.3;
}
.hero-sub {
  font-size: 17px;
  color: var(--gray-mid);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 420px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── DIVIDER BAR ─────────────────────────────── */
.divider-bar {
  background: var(--charcoal);
  color: #fff;
  padding: 20px 32px;
}
.divider-bar-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.divider-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.7);
}
.divider-stat strong { color: #fff; font-size: 15px; }
.divider-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

/* ── WRAP ─────────────────────────────────────── */
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 32px; }
section.section { padding: 72px 0; border-bottom: 1px solid var(--gray-light); }

/* ── VALUE PROPS ─────────────────────────────── */
.props-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-light);
  border: 1px solid var(--gray-light);
  border-radius: 10px;
  overflow: hidden;
}
.prop { background: #fff; padding: 36px 32px; }
.prop-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 12px;
}
.prop h3 { font-size: 17px; font-weight: 600; color: var(--charcoal); margin-bottom: 8px; }
.prop p { font-size: 14px; color: var(--gray-mid); line-height: 1.6; }

/* ── SECTION LABELS ──────────────────────────── */
.section-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 900;
  color: var(--charcoal);
  letter-spacing: -.5px;
  text-transform: uppercase;
  margin-bottom: 40px;
}

/* ── COMPARISON ──────────────────────────────── */
.comparison-section {
  padding-top: 64px;
  padding-bottom: 72px;
  border-bottom: 1px solid var(--gray-light);
  overflow: hidden;
}
.comparison-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  width: 100%;
  padding-left: max(32px, calc((100vw - 1120px) / 2 + 32px));
  padding-right: 0;
}
.comparison-text { padding-right: 48px; }
.comparison-body {
  font-size: 16px;
  color: var(--gray-mid);
  line-height: 1.7;
  margin-bottom: 24px;
}
.comparison-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.comparison-list li {
  font-size: 15px;
  font-weight: 500;
  color: var(--charcoal);
  padding-left: 20px;
  position: relative;
}
.comparison-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
}
.comparison-img {
  overflow: visible;
}
.comparison-img img {
  width: 100%;
  display: block;
  object-fit: contain;
  object-position: right center;
  border: none;
}
.img-caption {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--gray-dark);
  margin-top: 10px;
  text-transform: uppercase;
}
.caption-cobalt { color: #1e6fc8; }

/* ── SPECS ───────────────────────────────────── */
.specs-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table tr { border-bottom: 1px solid var(--gray-light); }
.spec-table tr:first-child { border-top: 1px solid var(--gray-light); }
.spec-table td { padding: 15px 0; vertical-align: middle; }
.spec-table td:first-child {
  color: var(--gray-mid);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .4px;
  width: 44%;
}
.spec-table td:last-child { font-size: 15px; font-weight: 600; color: var(--charcoal); }
.sku-card {
  background: var(--bg-soft);
  border: 1px solid var(--gray-light);
  border-radius: 10px;
  padding: 28px 32px;
}
.sku-card-title {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--gray-mid);
  margin-bottom: 20px;
}
.sku-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-light);
}
.sku-name { font-size: 15px; font-weight: 500; color: var(--charcoal); }
.sku-code {
  font-family: 'Courier New', monospace;
  font-size: 13px;
  font-weight: 600;
  background: rgba(232,144,10,.1);
  color: var(--orange-dk);
  padding: 4px 10px;
  border-radius: 4px;
}
.sku-note {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-light);
  font-size: 13px;
  color: var(--gray-mid);
  line-height: 1.6;
}

/* ── CONTACT ─────────────────────────────────── */
.contact-band { background: #1e2226; padding: 80px 32px; }
.contact-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.contact-inner .section-eyebrow { color: var(--orange); justify-content: center; }
.contact-inner .section-eyebrow::before { background: var(--orange); }
.contact-inner .section-title { color: #fff; margin-bottom: 16px; }
.contact-inner p {
  color: rgba(255,255,255,.6);
  font-size: 17px;
  margin-bottom: 36px;
  line-height: 1.65;
}
.email-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  padding: 16px 28px;
  text-decoration: none;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  transition: all .18s;
}
.email-chip:hover { background: rgba(232,144,10,.15); border-color: rgba(232,144,10,.4); }
.email-chip .at-icon {
  width: 34px;
  height: 34px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

/* ── FOOTER ──────────────────────────────────── */
footer { background: #111517; padding: 28px 32px; text-align: center; }
footer p { font-size: 13px; color: rgba(255,255,255,.3); }
footer a { color: rgba(255,255,255,.5); text-decoration: none; }
footer a:hover { color: rgba(255,255,255,.8); }

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 768px) {
  .hero {
    min-height: unset;
    flex-direction: column;
    padding-bottom: 0;
  }
  .hero-bg {
    position: relative;
    width: 100%;
    height: 260px;
    justify-content: center;
  }
  .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }
  .hero-bg::after {
    content: '';
    background: linear-gradient(to bottom, var(--bg-soft) 0%, transparent 30%, transparent 70%, var(--bg-soft) 100%);
  }
  .hero-inner { padding: 40px 20px 48px; position: relative; z-index: 2; }
  .hero-left { max-width: 100%; }
  .topbar-inner, .wrap { padding-left: 20px; padding-right: 20px; }
  .props-grid { grid-template-columns: 1fr; }
  .specs-layout { grid-template-columns: 1fr; gap: 32px; }
  .divider-bar { padding: 20px; }
  .divider-bar-inner { gap: 16px; }
  nav a:not(.btn-orange) { display: none; }
  .contact-band { padding: 56px 24px; }
  .comparison-inner { grid-template-columns: 1fr; padding-left: 20px; padding-right: 20px; }
  .comparison-text { padding-right: 0; }
  .comparison-img { order: -1; }
}
