:root {
  --c: #00A3D9;
  --m: #E0307A;
  --y: #F2C200;
  --k: #1B1B1B;
  --navy: #001F68;
  --ink: #1B1B1B;
  --muted: #5b5b5b;
  --line: #e7e7e7;
  --tint: #f6f6f4;
  --bg: #ffffff;
  --radius: 4px;
  --wrap: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Archivo", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { font-stretch: 125%; font-weight: 800; line-height: 1.08; letter-spacing: -0.01em; margin: 0 0 .5em; }
h1 { font-size: clamp(2.3rem, 5.2vw, 4rem); font-weight: 900; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.15rem; }
p { margin: 0 0 1em; }

.muted { color: var(--muted); }
.small { font-size: .9rem; }

.kicker, .eyebrow {
  font-stretch: 125%;
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .78rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--ink);
}
.eyebrow { display: flex; align-items: center; gap: 6px; }
.eyebrow .dot { width: 10px; height: 10px; display: inline-block; }
.eyebrow .dot:last-of-type { margin-right: 8px; }
.dot.c { background: var(--c); } .dot.m { background: var(--m); }
.dot.y { background: var(--y); } .dot.k { background: var(--k); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 24px;
  font: inherit; font-weight: 700; font-stretch: 112%;
  font-size: .95rem;
  text-decoration: none;
  border-radius: var(--radius);
  border: 2px solid var(--k);
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, color .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-dark { background: var(--k); color: #fff; }
.btn-dark:hover { background: #000; }
.btn-ghost { background: transparent; color: var(--k); }
.btn-ghost:hover { background: var(--k); color: #fff; }
.btn-sm { padding: 10px 16px; font-size: .88rem; white-space: nowrap; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 32px; height: 76px; }
.brand img { height: 34px; width: auto; }
.nav { display: flex; gap: 28px; margin-left: auto; }
.nav a { text-decoration: none; font-weight: 600; font-size: .95rem; }
.nav a:hover { color: var(--m); }

/* Hero */
.hero { padding: 72px 0 88px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(0,1fr); gap: 56px; align-items: center; }
.lead { font-size: 1.2rem; color: var(--muted); max-width: 34em; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.hero-media { position: relative; aspect-ratio: 4 / 3; }
.hero-media img {
  position: relative; z-index: 2;
  width: 100%; height: 100%; object-fit: cover;
  border-radius: var(--radius);
  background: #2a2a2a;
}
.swatch { position: absolute; z-index: 1; width: 44%; aspect-ratio: 6 / 5; mix-blend-mode: multiply; }
.s-c { background: var(--c); left: -28px; bottom: -28px; }
.s-y { background: var(--y); right: -28px; top: -28px; }

/* Sections */
.section { padding: 96px 0; }
.section-tint { background: var(--tint); }
.section-head { max-width: 760px; margin-bottom: 48px; }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 24px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .2s ease, transform .2s ease; }
.card:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(0,0,0,.08); }
.card-img { aspect-ratio: 4 / 3; background: var(--tint); overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 22px 22px 26px; }
.card-body p { color: var(--muted); font-size: .96rem; margin: 0; }
.bar { display: block; width: 36px; height: 6px; margin-bottom: 16px; }
.bar-c { background: var(--c); } .bar-m { background: var(--m); }
.bar-y { background: var(--y); } .bar-k { background: var(--k); }

/* Why */
.why-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1.1fr); gap: 64px; align-items: start; }
.why-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 28px; }
.why-list li { display: flex; gap: 20px; }
.why-list h3 { margin-bottom: .3em; }
.why-list p { margin: 0; color: var(--muted); }
.num {
  flex: 0 0 48px; height: 48px;
  display: grid; place-items: center;
  font-weight: 900; font-stretch: 125%; font-size: 1.2rem; color: #fff;
}
.n-c { background: var(--c); } .n-m { background: var(--m); }
.n-y { background: var(--y); color: var(--k); } .n-k { background: var(--k); }

/* Quote */
.quote-grid { display: grid; grid-template-columns: minmax(0,1.1fr) minmax(0,1fr); gap: 64px; align-items: center; }
.steps { padding-left: 1.3em; margin: 0; display: grid; gap: 10px; }
.steps li::marker { font-weight: 800; }
.quote-card {
  position: relative;
  border: 2px solid var(--k);
  border-radius: var(--radius);
  padding: 44px 36px 36px;
  box-shadow: 12px 12px 0 var(--y);
  background: #fff;
}
.quote-mark { width: 84px; height: auto; margin-bottom: 20px; }
.quote-label { text-transform: uppercase; letter-spacing: .24em; font-size: .78rem; font-weight: 600; font-stretch: 125%; margin-bottom: 6px; }
.quote-email {
  display: block;
  font-weight: 800; font-stretch: 112%;
  font-size: clamp(1.15rem, 2.4vw, 1.7rem);
  text-decoration: none;
  word-break: break-all;
  margin-bottom: 24px;
}
.quote-email:hover { color: var(--m); }
.quote-actions { display: flex; gap: 12px; flex-wrap: wrap; }
#copyNote { margin: 14px 0 0; min-height: 1.4em; }

/* Footer */
.site-footer { background: var(--k); color: #d8d8d8; padding-top: 56px; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-logo { height: 38px; width: auto; }
.footer-meta { display: flex; gap: 28px; flex-wrap: wrap; font-size: .95rem; }
.footer-meta a { color: #fff; text-decoration: none; }
.footer-meta a:hover { color: var(--y); }
.footer-bottom { padding: 28px 24px 32px; font-size: .85rem; color: #9a9a9a; border-top: 1px solid #333; margin-top: 40px; }
.cmyk-strip { display: grid; grid-template-columns: repeat(4, 1fr); height: 8px; }
.cmyk-strip span:nth-child(1) { background: var(--c); }
.cmyk-strip span:nth-child(2) { background: var(--m); }
.cmyk-strip span:nth-child(3) { background: var(--y); }
.cmyk-strip span:nth-child(4) { background: #fff; }

/* Responsive */
@media (max-width: 1024px) {
  .cards { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 860px) {
  .nav { display: none; }
  .header-cta { margin-left: auto; }
  .hero { padding: 48px 0 64px; }
  .hero-grid, .why-grid, .quote-grid { grid-template-columns: minmax(0,1fr); gap: 44px; }
  .hero-media { margin: 0 12px; }
  .section { padding: 72px 0; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .wrap { padding: 0 16px; }
  .brand img { height: 22px; }
  .header-cta { padding: 9px 12px; font-size: .8rem; }
  .header-inner { height: 64px; gap: 12px; }
  .cards { grid-template-columns: minmax(0,1fr); }
  .quote-card { padding: 32px 22px 26px; box-shadow: 8px 8px 0 var(--y); }
  .hero-actions .btn { flex: 1 1 auto; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .card { transition: none; }
}
