@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  --bg: #f3f4f6;
  --surface: #ffffff;
  --surface-soft: #eceef1;
  --ink: #101828;
  --muted: #475467;
  --accent: #1f79aa;
  --accent-strong: #0f5f8a;
  --line: #d9dee5;
  --max: 1180px;
  --shadow: 0 12px 30px rgba(16, 24, 40, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Barlow', sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 10% 15%, #ffffff, #f4f6f8 45%, #edf0f3 100%);
  line-height: 1.5;
}

h1,
h2,
h3,
h4 {
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.18;
  margin: 0;
}

p {
  margin: 0;
  color: var(--muted);
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 3rem, var(--max));
  margin-inline: auto;
}

.section-gap {
  margin-top: 3rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
}

.brand {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.07em;
  font-weight: 700;
}

.main-nav {
  list-style: none;
  display: flex;
  padding: 0;
  margin: 0;
  gap: 1.6rem;
}

.main-nav a {
  font-size: 0.95rem;
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.68rem 1.1rem;
  border-radius: 0.15rem;
  font-weight: 600;
  transition: background-color 180ms ease, transform 180ms ease;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(90deg, var(--accent), #30a5cf);
}

.btn-primary:hover {
  background: linear-gradient(90deg, var(--accent-strong), var(--accent));
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: clamp(430px, 65vh, 690px);
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  min-height: clamp(430px, 65vh, 690px);
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 20, 35, 0.6) 0%, rgba(10, 20, 35, 0.35) 32%, rgba(10, 20, 35, 0.08) 75%);
}

.hero-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4.2rem;
  color: #fff;
}

.hero-copy h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  max-width: 620px;
  margin-bottom: 0.8rem;
}

.hero-copy p {
  color: #e5e7eb;
  max-width: 520px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: #6b7280;
}

.hero .eyebrow {
  color: #d9e6ef;
}

.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.intro h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
}

.panel {
  background: var(--surface-soft);
  border-top: 1px solid rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--line);
  padding-block: 3.8rem;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.2rem;
  align-items: center;
}

.image-box,
.thumb,
.card-image {
  background-image: url('../images/shopping_stageteaser_desktop.jpg');
  background-size: cover;
  background-position: center;
}

.image-box {
  min-height: 340px;
  border: 8px solid #fff;
  box-shadow: var(--shadow);
}

.check-list {
  list-style: none;
  margin: 1.3rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.check-list li {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 0.85rem 1rem;
  box-shadow: var(--shadow);
}

.check-list strong {
  display: block;
  margin-bottom: 0.25rem;
}

.check-list span {
  color: var(--muted);
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.split-grid article h3 {
  font-size: 1.8rem;
  margin-bottom: 0.7rem;
}

.text-link {
  display: inline-block;
  margin-top: 0.7rem;
  font-weight: 700;
  color: var(--accent);
}

.thumb {
  min-height: 320px;
  box-shadow: var(--shadow);
}

.thumb-a {
  background-position: 62% center;
}

.thumb-b {
  background-position: 38% center;
}

.card-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 1.2rem;
}

.mb-lg {
  margin-bottom: 1.2rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 0.8rem;
}

.card h4 {
  margin-top: 0.7rem;
  margin-bottom: 0.3rem;
}

.card-image {
  width: 100%;
  min-height: 130px;
  background-position: 25% center;
}

.card-image.second {
  background-position: 75% center;
}

.downloads {
  margin-top: 1.4rem;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 0.85rem;
}

.downloads a {
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  padding: 0.6rem 0.8rem;
  font-weight: 600;
  background: #fbfdff;
}

.quote-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
}

.thumb-c {
  background-position: center;
  min-height: 260px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #fff;
  margin-top: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(160px, 1fr));
  gap: 1.2rem;
  padding-block: 2rem;
}

.footer-grid h4 {
  font-size: 0.95rem;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 1rem 0 1.6rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .intro,
  .two-col,
  .split-grid,
  .quote-wrap {
    grid-template-columns: 1fr;
  }

  .downloads {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-copy {
    bottom: 2.5rem;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 1.5rem, var(--max));
  }

  .downloads,
  .card-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .nav-wrap {
    min-height: 66px;
    gap: 0.5rem;
  }

  .brand {
    font-size: 0.8rem;
  }

  .btn {
    padding: 0.55rem 0.75rem;
    font-size: 0.85rem;
  }

  .hero-copy h1 {
    font-size: 1.9rem;
  }

  .section-gap {
    margin-top: 2rem;
  }
}

.not-found-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.not-found-wrap {
  width: min(100%, 760px);
}

.not-found-card {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: clamp(1.6rem, 3vw, 2.5rem);
}

.not-found-card h1 {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  margin-bottom: 0.7rem;
}

.not-found-card p {
  margin-bottom: 1.2rem;
}