/* ─── Reset & Base ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:        #D42B2B;
  --red-dark:   #B82020;
  --red-light:  #FEE2E2;
  --black:      #0A0A0A;
  --off-white:  #F5F0EB;
  --white:      #FFFFFF;
  --grey-100:   #F2EDE8;
  --grey-200:   #E0DAD4;
  --grey-400:   #9B9590;
  --grey-600:   #5A5550;
  --grey-800:   #2A2520;
  --font:       'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius:     16px;
  --radius-sm:  10px;
  --radius-btn: 8px;
  --shadow-card: 0 2px 16px rgba(0,0,0,0.07), 0 1px 3px rgba(0,0,0,0.04);
  --shadow-hover: 0 8px 32px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
  --transition: 0.22s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--off-white);
  color: var(--grey-800);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

/* ─── Announcement Bar ─────────────────────────────────────────── */
.announcement-bar {
  background: var(--red);
  color: white;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 9px 0;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  gap: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.announcement-arrow {
  font-size: 8px;
  margin: 0 16px;
  opacity: 0.7;
}

/* ─── Nav ──────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--grey-200);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
}

.logo-text {
  font-size: 24px;
  font-weight: 800;
  color: var(--red);
  letter-spacing: -0.5px;
}

.nav-center {
  font-size: 14px;
  font-weight: 500;
  color: var(--grey-400);
  letter-spacing: 0.01em;
}

.btn-nav {
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  text-decoration: none;
  padding: 8px 16px;
  border: 1.5px solid var(--red);
  border-radius: var(--radius-btn);
  transition: background var(--transition), color var(--transition);
}

.btn-nav:hover {
  background: var(--red);
  color: var(--white);
}


/* ─── Products Section ─────────────────────────────────────────── */
.products-section {
  padding: 56px 0 96px;
  background: var(--off-white);
}

.section-header {
  margin-bottom: 48px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -1.2px;
  color: var(--black);
}

/* ─── Grid ─────────────────────────────────────────────────────── */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* Wide card spans 2 cols on first col of a new row */
.card--wide {
  grid-column: span 2;
}

/* ─── Cards ────────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: default;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: var(--grey-200);
}

.card:hover .card-icon-wrap {
  transform: scale(1.08);
}

/* Card top row */
.card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}

.card-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
  flex-shrink: 0;
}

.card-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-light);
  padding: 4px 10px;
  border-radius: 100px;
}

/* Title & desc */
.card-title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--black);
  line-height: 1.2;
}

.card-desc {
  font-size: 14px;
  color: var(--grey-400);
  line-height: 1.65;
  font-weight: 400;
  flex: 1;
}

/* Card links */
.card-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.card-links--row {
  flex-direction: row;
  flex-wrap: wrap;
}

/* ─── Buttons ──────────────────────────────────────────────────── */
.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: var(--radius-btn);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: -0.1px;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
  border: 1.5px solid transparent;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  box-shadow: 0 4px 14px rgba(212, 43, 43, 0.35);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--red);
  border-color: var(--grey-200);
}

.btn-outline:hover {
  border-color: var(--red);
  background: var(--red-light);
}

/* ─── Footer ───────────────────────────────────────────────────── */
.footer {
  background: var(--black);
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-logo .logo-text {
  color: var(--white);
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  margin-left: 34px;
}

.footer-right {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

.footer-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  text-decoration: none;
  transition: opacity var(--transition);
}

.footer-link:hover { opacity: 0.75; }

/* ─── Responsive ───────────────────────────────────────────────── */
@media (max-width: 960px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
  .card--wide { grid-column: span 2; }
  .hero-stats { flex-wrap: wrap; }
}

@media (max-width: 620px) {
  .grid { grid-template-columns: 1fr; }
  .card--wide { grid-column: span 1; }
  .hero-stats { width: 100%; }
  .stat { padding: 16px 20px; }
  .stat-divider { display: none; }
  .footer-inner { flex-direction: column; gap: 24px; text-align: center; }
  .footer-right { align-items: center; }
  .footer-tagline { margin-left: 0; }
  .nav-center { display: none; }
  .hero-title { letter-spacing: -1.5px; }
}
