:root {
  --navy: #00152c;
  --navy-2: #072744;
  --teal: #08a7b7;
  --teal-dark: #087f8f;
  --pink: #f39cb4;
  --pink-light: #fff0f5;
  --slate: #5b6b7e;
  --line: #d9e5ee;
  --soft: #f7fbfd;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(0, 21, 44, .12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.section-wrap { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 82px;
  padding: 16px 48px;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 210px; }
.brand-mark {
  width: 48px;
  height: 48px;
  border: 5px solid var(--navy);
  border-radius: 10px;
  padding: 5px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  box-shadow: 0 10px 22px rgba(0,21,44,.16);
}
.brand-mark span { border-radius: 2px; background: #eaf2f7; }
.brand-mark span:nth-child(2), .brand-mark span:nth-child(5), .brand-mark span:nth-child(8) { background: var(--teal); }
.brand-mark span:nth-child(3), .brand-mark span:nth-child(7) { background: var(--pink); }
.brand-text { display: grid; line-height: 1; text-transform: uppercase; letter-spacing: .04em; }
.brand-text strong { font-size: 24px; font-weight: 900; }
.brand-text em { color: var(--teal-dark); font-style: normal; font-size: 16px; font-weight: 900; }
.nav { display: flex; align-items: center; gap: 30px; font-weight: 650; color: #506176; }
.nav a:hover { color: var(--teal-dark); }
.nav-cta { border: 1px solid #c7d7e3; border-radius: 999px; padding: 12px 18px; color: var(--navy) !important; background: #fff; }
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .92fr);
  align-items: center;
  gap: 58px;
  min-height: 720px;
  padding: 90px 0;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 82px 0 auto 0;
  height: 720px;
  z-index: -1;
  background: radial-gradient(circle at 85% 20%, rgba(8,167,183,.22), transparent 34%), linear-gradient(90deg, #fff4f7 0%, #ffffff 45%, #e8fbfd 100%);
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(48px, 6vw, 76px);
  line-height: .98;
  letter-spacing: -.055em;
}
h2 {
  margin-bottom: 24px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.04;
  letter-spacing: -.045em;
}
h3 { margin-bottom: 12px; font-size: 24px; line-height: 1.15; }
.lede { max-width: 650px; margin-bottom: 28px; color: var(--slate); font-size: 24px; line-height: 1.42; }
.button-row, .contact-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  min-height: 52px;
  padding: 0 24px;
  font-weight: 850;
  letter-spacing: .01em;
}
.button.primary { background: var(--teal-dark); color: #fff; box-shadow: 0 15px 30px rgba(8,127,143,.24); }
.button.secondary { background: #fff; color: var(--navy); border: 1px solid #c7d7e3; }
.hero-card {
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(255,255,255,.8);
  box-shadow: var(--shadow);
}
.hero-card img { border-radius: 22px; }
.statement-band { background: var(--navy); color: #fff; }
.statement-grid { display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 36px; padding: 42px 0; }
.statement-grid h2 { margin: 0; font-size: clamp(34px, 4vw, 48px); }
.statement-grid p { margin: 0; color: #c9d7e4; font-size: 22px; }
.services-section { padding: 90px 0 70px; }
.services-section > h2 { max-width: 980px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 34px; }
.service-card {
  min-height: 290px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(0,21,44,.06);
}
.service-card.featured { border-color: var(--pink); background: linear-gradient(180deg, var(--pink-light), #fff); }
.service-card p, .split-section p, .package-grid p, .contact-card p { color: var(--slate); font-size: 19px; }
.card-icon { width: 46px; height: 46px; border-radius: 14px; margin-bottom: 28px; }
.card-icon.teal { background: var(--teal); }
.card-icon.pink { background: var(--pink); }
.callout {
  margin-top: 48px;
  padding: 30px 34px;
  border: 1px solid #bfe4ea;
  border-radius: 24px;
  background: #eafafb;
}
.callout span { display: block; margin-bottom: 8px; color: var(--teal-dark); font-weight: 900; }
.callout strong { display: block; font-size: clamp(24px, 3vw, 34px); line-height: 1.12; }
.split-section { display: grid; grid-template-columns: .9fr 1.1fr; gap: 68px; padding: 88px 0; border-top: 1px solid var(--line); }
.process-list { display: grid; gap: 16px; }
.process-list div { padding: 24px; border: 1px solid var(--line); border-radius: 22px; background: var(--soft); }
.process-list span { display: inline-block; margin-bottom: 8px; color: var(--pink); font-weight: 900; }
.process-list strong { display: block; margin-bottom: 6px; font-size: 20px; }
.process-list p { margin: 0; font-size: 17px; }
.packages-section { padding: 82px 0; background: linear-gradient(180deg, #f7fbfd, #fff); border-block: 1px solid var(--line); }
.package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 32px; }
.package-grid article { padding: 28px; border-radius: 24px; background: #fff; border: 1px solid var(--line); box-shadow: 0 12px 34px rgba(0,21,44,.05); }
.contact-section { padding: 90px 0; }
.contact-card { padding: clamp(34px, 5vw, 60px); border-radius: 34px; background: var(--navy); color: #fff; overflow: hidden; position: relative; }
.contact-card::after { content: ""; position: absolute; right: -120px; top: -160px; width: 420px; height: 420px; border-radius: 999px; background: radial-gradient(circle, rgba(243,156,180,.42), transparent 68%); }
.contact-card h2, .contact-card p, .contact-card .button-row { position: relative; z-index: 1; max-width: 770px; }
.contact-card p { color: #c9d7e4; }
.contact-card .secondary { color: #fff; background: transparent; border-color: rgba(255,255,255,.35); }
.fine-print { margin: 20px 0 0; font-size: 14px !important; color: #9fb2c4 !important; }
.site-footer { padding: 34px 0; background: #f7fbfd; border-top: 1px solid var(--line); color: var(--slate); }
.footer-grid { display: flex; justify-content: space-between; gap: 24px; }
.footer-grid strong { display: block; color: var(--navy); font-size: 20px; }
.footer-grid span { display: block; }
@media (max-width: 920px) {
  .site-header { position: relative; padding: 16px 24px; align-items: flex-start; }
  .nav { display: none; }
  .section-wrap { width: min(100% - 32px, 1180px); }
  .hero, .statement-grid, .split-section { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 60px 0; gap: 36px; }
  .hero::before { height: 820px; }
  .hero-card { padding: 18px; border-radius: 24px; }
  .service-grid, .package-grid { grid-template-columns: 1fr; }
  .statement-grid { padding: 38px 0; }
  .footer-grid { display: grid; }
  .button { width: 100%; }
}


/* Collecting page */
.collecting-page .brand-mark span:nth-child(1),
.collecting-page .brand-mark span:nth-child(9) { background: var(--pink); }
.collecting-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, .78fr);
  align-items: center;
  gap: 54px;
  min-height: 660px;
  padding: 86px 0;
}
.collecting-hero::before {
  content: "";
  position: absolute;
  inset: 82px 0 auto 0;
  height: 660px;
  z-index: -1;
  background: radial-gradient(circle at 78% 24%, rgba(243,156,180,.26), transparent 32%), linear-gradient(90deg, #fff 0%, #f6fbfd 52%, #fff0f5 100%);
}
.collector-card {
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 38px;
  background: #fff;
  box-shadow: var(--shadow);
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  overflow: hidden;
  position: relative;
}
.collector-card::before {
  content: "";
  position: absolute;
  right: -110px;
  top: -120px;
  width: 330px;
  height: 330px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(8,167,183,.26), transparent 66%);
}
.card-stack {
  position: absolute;
  left: 44px;
  top: 44px;
  width: 230px;
  height: 260px;
}
.card-stack span {
  position: absolute;
  width: 160px;
  height: 220px;
  border: 8px solid var(--navy);
  border-radius: 18px;
  background: linear-gradient(145deg, #fff, #e9f8fb 52%, #fff0f5);
  box-shadow: 0 18px 38px rgba(0,21,44,.14);
}
.card-stack span:nth-child(1) { transform: rotate(-10deg); left: 0; top: 18px; }
.card-stack span:nth-child(2) { transform: rotate(4deg); left: 34px; top: 0; background: linear-gradient(145deg, #fff, #eafafb 45%, #cdeff4); }
.card-stack span:nth-child(3) { transform: rotate(15deg); left: 70px; top: 26px; background: linear-gradient(145deg, #fff, #fff2f6 45%, #f39cb4); }
.collector-card h2, .collector-card p { position: relative; z-index: 1; }
.collector-card h2 { font-size: clamp(30px, 3.2vw, 44px); margin-bottom: 12px; }
.collector-card p { color: var(--slate); font-size: 20px; margin: 0; }
.collecting-band { background: linear-gradient(90deg, var(--navy), #062f4d); }
.collecting-contact::after { background: radial-gradient(circle, rgba(8,167,183,.38), transparent 68%); }
.site-footer a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 920px) {
  .collecting-hero { grid-template-columns: 1fr; min-height: auto; padding: 58px 0; gap: 34px; }
  .collecting-hero::before { height: 880px; }
  .collector-card { min-height: 380px; padding: 26px; }
  .card-stack { transform: scale(.86); transform-origin: top left; }
}


/* Unlisted resource pages */
.resource-hero {
  min-height: calc(100vh - 190px);
  display: grid;
  place-items: center;
  padding: 72px 0;
}
.resource-hero::before {
  content: "";
  position: absolute;
  inset: 82px 0 auto 0;
  min-height: calc(100vh - 82px);
  z-index: -1;
  background: radial-gradient(circle at 82% 20%, rgba(8,167,183,.18), transparent 34%), linear-gradient(90deg, #fff4f7 0%, #ffffff 48%, #e8fbfd 100%);
}
.resource-card {
  width: min(880px, 100%);
  box-sizing: border-box;
  padding: clamp(34px, 6vw, 64px);
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow);
}
.resource-card h1 { font-size: clamp(42px, 6vw, 70px); }
.resource-card .lede { font-size: 22px; }
.resource-type {
  margin: 0 0 28px;
  color: var(--teal-dark);
  font-weight: 850;
}
.resource-note { color: #7c8ea0 !important; margin-top: 22px; }

/* QR reference page - intentionally unlisted */
.qr-page { background: #f7fbfd; }
.qr-header { padding: 64px 0 32px; }
.qr-header h1 { font-size: clamp(42px, 6vw, 68px); margin-bottom: 18px; }
.qr-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding-bottom: 72px;
}
.qr-card {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 12px 34px rgba(0,21,44,.05);
}
.qr-card img { width: min(260px, 100%); margin: 0 auto 20px; }
.qr-card h2 { font-size: 26px; margin-bottom: 8px; }
.qr-card p { color: var(--slate); overflow-wrap: anywhere; margin-bottom: 14px; }
.qr-card a { color: var(--teal-dark); text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 760px) {
  .qr-grid { grid-template-columns: 1fr; }
}


/* 2026 brand refresh */
.brand-image-link {
  width: clamp(185px, 18vw, 255px);
  min-width: 185px;
  display: flex;
  align-items: center;
}
.brand-logo {
  display: block;
  width: 100%;
  height: auto;
  max-height: 62px;
  object-fit: contain;
  object-position: left center;
}
.main-brand-art {
  padding: 24px;
  background: rgba(255,255,255,.92);
}
.main-brand-art img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}
.collecting-brand-banner {
  background: #020913;
  border-bottom: 1px solid rgba(54,216,239,.25);
  box-shadow: 0 18px 50px rgba(0,21,44,.22);
}
.collecting-brand-inner {
  width: min(100%, 1500px);
  margin: 0 auto;
  background: #020913;
}
.collecting-brand-inner img {
  display: block;
  width: 100%;
  height: auto;
}
.collecting-page .collecting-hero::before {
  background: radial-gradient(circle at 78% 22%, rgba(8,167,183,.18), transparent 34%), linear-gradient(90deg, #f8fbfd 0%, #ffffff 52%, #f6f0f5 100%);
}
.collecting-summary {
  min-height: 300px;
  justify-content: center;
  background: linear-gradient(145deg, #ffffff, #eff8fa 60%, #fff1f5);
}
.collecting-summary::before {
  width: 420px;
  height: 420px;
  right: -170px;
  top: -210px;
  background: radial-gradient(circle, rgba(8,167,183,.28), transparent 68%);
}
@media (max-width: 920px) {
  .brand-image-link { width: 205px; min-width: 0; }
  .brand-logo { max-height: 54px; }
  .main-brand-art { padding: 12px; }
  .collecting-brand-banner { margin-top: 0; }
}
