/* ==========================================================================
   DATAGRAM — Dell Technologies Platinum Partner
   Design system: light, flat, product-first
   ========================================================================== */

/* --- 1. Tokens ----------------------------------------------------------- */
:root {
  /* Brand */
  --dg:          #30469C;   /* Datagram brand blue */
  --dg-deep:     #22326F;
  --dg-dark:     #26397F;   /* hover */
  --dell:        #0076CE;   /* Dell Technologies blue — Dell assets only */
  --dell-dark:   #005A9E;

  /* Surfaces — "ink" names kept so existing markup keeps working */
  --ink:         #FFFFFF;   /* page canvas */
  --ink-2:       #F5F6F8;   /* alternating band */
  --ink-3:       #EDEFF3;   /* raised / hover */
  --ink-4:       #E3E7ED;
  --paper:       #F5F6F8;
  --paper-2:     #FFFFFF;
  --paper-3:     #E7ECF6;

  /* Text */
  --on-ink:      #131416;
  --on-ink-dim:  #55585F;
  --on-ink-mute: #666A72;  /* 4.9:1 on the grey band — AA for small text */
  --on-paper:    #131416;
  --on-paper-dim:#55585F;

  /* Lines */
  --line:        rgba(19, 20, 22, .12);
  --line-strong: rgba(19, 20, 22, .24);
  --line-dark:   rgba(19, 20, 22, .12);
  --line-dark-s: rgba(19, 20, 22, .24);

  /* Fonts */
  --f-display: "IBM Plex Sans Condensed", "Arial Narrow", sans-serif;
  --f-body:    "IBM Plex Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --f-mono:    "IBM Plex Mono", ui-monospace, "SFMono-Regular", monospace;

  /* Metrics */
  --shell:     1420px;
  --gutter:    clamp(20px, 4vw, 56px);
  --header-h:  72px;
  --ease:      cubic-bezier(.22, .61, .36, 1);
  --ease-out:  cubic-bezier(.16, 1, .3, 1);
}

/* --- 2. Reset ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
}

body {
  font-family: var(--f-body);
  font-size: 18px;
  line-height: 1.65;
  color: var(--on-ink);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
ul, ol { list-style: none; }

::selection { background: var(--dg); color: #fff; }

:focus-visible { outline: 2px solid var(--dg); outline-offset: 3px; border-radius: 2px; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  padding: 14px 20px; background: var(--dg); color: #fff;
  font-family: var(--f-mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
}
.skip:focus { left: 12px; top: 12px; }

/* --- 3. Layout ----------------------------------------------------------- */
.shell { width: 100%; max-width: var(--shell); margin-inline: auto; padding-inline: var(--gutter); }
.shell--wide { max-width: 1560px; }

.section { position: relative; padding-block: clamp(48px, 5.2vw, 76px); }
.section--tight { padding-block: clamp(48px, 5.2vw, 76px); }
.section--strip { padding-block: clamp(28px, 3vw, 44px); }
.section--flush { padding: 0; margin: 0; display: block; }
/* whatever sits directly above a flush band loses its bottom padding,
   so the video butts straight up against it */
.section:has(+ .section--flush) { padding-bottom: clamp(48px, 5.2vw, 76px); }
.section--flush + .section { padding-top: clamp(48px, 5.2vw, 76px); }
.section--paper { background: var(--paper); color: var(--on-paper); }
.section--ink-2 { background: var(--ink-2); }

/* Decorative layers retired for the flat look */
.grid-bg::before,
.grain::after,
.hero__grid,
.phero__grid,
.rails { display: none !important; }

/* --- 4. Type ------------------------------------------------------------- */
.eyebrow {
  font-family: var(--f-mono);
  font-size: 11.5px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase;
  color: var(--dg);
  display: inline-block;
}

.h-xl, .h-lg, .h-md, .h-sm {
  font-family: var(--f-display);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -.02em;
  text-wrap: balance;
}
.h-xl { font-size: clamp(38px, 5vw, 68px); }
.h-lg { font-size: clamp(30px, 3.4vw, 46px); }
.h-md { font-size: clamp(25px, 2.4vw, 34px); line-height: 1.08; }
.h-sm { font-size: clamp(19px, 1.7vw, 23px); line-height: 1.16; letter-spacing: -.012em; }

.lede { font-size: clamp(17px, 1.3vw, 19px); line-height: 1.65; color: var(--on-ink-dim); max-width: 62ch; }
.section--paper .lede { color: var(--on-paper-dim); }

.mono { font-family: var(--f-mono); font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--on-ink-mute); }
.tint { color: var(--dg); }
.section--paper .tint { color: var(--dg); }

/* --- 5. Buttons ---------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px;
  border-radius: 4px;
  font-family: var(--f-body);
  font-size: 16px; font-weight: 500; letter-spacing: 0; text-transform: none;
  color: #fff; background: var(--dg); border: 1px solid var(--dg);
  cursor: pointer;
  transition: background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}
.btn:hover { background: var(--dg-dark); border-color: var(--dg-dark); }
.btn .arw { transition: transform .3s var(--ease); }
.btn:hover .arw { transform: translateX(3px); }

.btn--ghost { color: var(--on-ink); background: transparent; border-color: var(--line-strong); }
.btn--ghost:hover { background: var(--ink-3); border-color: var(--line-strong); color: var(--on-ink); }
.section--paper .btn--ghost { color: var(--on-paper); border-color: var(--line-dark-s); }
.section--paper .btn--ghost:hover { background: #fff; color: var(--on-paper); }
.btn--solid-dark { background: var(--on-ink); border-color: var(--on-ink); color: #fff; }
.btn--solid-dark:hover { background: #000; border-color: #000; }

.tlink {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 600; color: var(--dg);
}
.tlink:hover { text-decoration: underline; text-underline-offset: 4px; }
.tlink .arw { transition: transform .3s var(--ease); }
.tlink:hover .arw { transform: translateX(3px); }
.section--paper .tlink { color: var(--dg); }

/* --- 6. Header ----------------------------------------------------------- */
.hdr {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.hdr.is-stuck { box-shadow: 0 1px 10px rgba(19, 20, 22, .07); }
.hdr__in {
  width: 100%; max-width: var(--shell); margin-inline: auto; padding-inline: var(--gutter);
  display: flex; align-items: center; gap: 20px;
}

.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand__logo { height: 47px; width: auto; transition: opacity .25s var(--ease); }
.brand:hover .brand__logo { opacity: .75; }

.nav { margin-left: auto; display: flex; align-items: center; gap: 2px; }
.nav__link {
  position: relative; padding: 9px 14px;
  font-size: 17px; font-weight: 500; color: var(--on-ink);
  border-radius: 999px; white-space: nowrap;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.nav__link:hover { background: var(--ink-3); }
.nav__link.is-active { color: var(--dg); }
.nav__link.is-active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 0; height: 2px; background: var(--dg);
}

@media (max-width: 1240px) {
  .brand__logo { height: 41px; }
  .nav__link { padding: 9px 10px; font-size: 15.5px; }
  .hdr__cta { margin-left: 10px; padding: 10px 16px; font-size: 13.5px; }
}

.hdr__cta { margin-left: 16px; padding: 11px 22px; font-size: 14px; }

.burger {
  display: none; margin-left: auto; width: 42px; height: 42px;
  background: none; border: 1px solid var(--line-strong); border-radius: 8px; cursor: pointer; position: relative;
}
.burger span { position: absolute; left: 11px; width: 20px; height: 1.7px; background: var(--on-ink); transition: transform .3s var(--ease), opacity .2s; }
.burger span:nth-child(1) { top: 15px; }
.burger span:nth-child(2) { top: 20.5px; }
.burger span:nth-child(3) { top: 26px; }
.burger.is-open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

.drawer {
  position: fixed; inset: var(--header-h) 0 0 0; z-index: 99;
  background: #fff; padding: 28px var(--gutter);
  display: flex; flex-direction: column;
  opacity: 0; visibility: hidden; transform: translateY(-10px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
  overflow-y: auto;
}
.drawer.is-open { opacity: 1; transform: none; visibility: visible; }
.drawer a {
  font-size: 20px; font-weight: 600; padding: 16px 0;
  border-bottom: 1px solid var(--line);
  transition: color .25s;
}
.drawer a:hover { color: var(--dg); }
.drawer .btn { margin-top: 24px; align-self: flex-start; border-bottom: 0; }

/* --- 7. Hero ------------------------------------------------------------- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(80vh, 720px);
  padding-top: calc(var(--header-h) + clamp(48px, 5vw, 76px));
  padding-bottom: clamp(48px, 5vw, 76px);
  border-bottom: 1px solid var(--line);
  color: #fff;
  overflow: hidden;

  background-color: #071429;
}

/* --- Banner slides --- */
.hero__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero__slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity .9s var(--ease);
}
.hero__slide.is-on { opacity: 1; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(7, 20, 41, .55) 0%, rgba(7, 20, 41, .22) 58%, rgba(7, 20, 41, .06) 100%);
}

.hero__seal {
  position: absolute;
  z-index: 3;
  bottom: 56px;                     /* clears the slide dots below it */
  right: clamp(20px, 4vw, 56px);
  background: #fff;
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: 0 16px 40px -18px rgba(0, 0, 0, .55);
  max-width: min(300px, 34vw);
}
.hero__seal img {
  display: block;
  width: 100%;          /* whole badge stays visible — never cropped */
  height: auto;
  max-height: 78px;
  object-fit: contain;
}

@media (max-width: 900px) {
  .hero__seal { padding: 11px 14px; max-width: 152px; bottom: 46px; }
  .hero__seal img { max-height: 46px; }
}

.hero__dots {
  position: absolute; z-index: 3;
  right: clamp(20px, 4vw, 56px); bottom: 26px;
  display: flex; gap: 10px;
}
.hero__dot {
  width: 34px; height: 4px; padding: 0;
  border: 0; border-radius: 2px; cursor: pointer;
  background: rgba(255, 255, 255, .38);
  transition: background .3s var(--ease);
}
.hero__dot:hover { background: rgba(255, 255, 255, .65); }
.hero__dot.is-on { background: #1E90FF; }

/* Diagonal dark panel behind the copy */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(104deg, #06122A 0%, #0A1D3B 62%, #12325C 100%);
  clip-path: polygon(0 0, 48% 0, 34% 100%, 0 100%);
}

.hero .eyebrow { display: block; color: #fff; letter-spacing: .2em; }
.hero .eyebrow::after {
  content: ""; display: block; width: 96px; height: 2px;
  background: #1F6FE5; margin-top: 12px;
}
.hero .tint { color: #4FA8F5; }
.hero h1 { margin: 22px 0 20px; }
.hero .lede { color: rgba(255, 255, 255, .80); max-width: 46ch; }
.hero .btn { padding: 17px 34px; font-size: 17px; }
.hero .btn--ghost { color: #fff; border-color: rgba(255, 255, 255, .55); }
.hero .btn--ghost:hover { background: rgba(255, 255, 255, .12); border-color: #fff; color: #fff; }

.hero__copies { display: grid; }
.hero__copy {
  grid-area: 1 / 1;
  max-width: 640px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  pointer-events: none;
  /* Outgoing copy clears first; incoming waits, so the two headlines
     never sit legibly on top of each other mid-crossfade. */
  transition: opacity .3s var(--ease), transform .3s var(--ease-out), visibility .3s;
}
.hero__copy.is-on {
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
  transition: opacity .45s var(--ease) .32s, transform .45s var(--ease-out) .32s, visibility .45s .32s;
}

/* Feature strip */
.hfeat {
  display: flex;
  align-items: stretch;
  margin: 34px 0 36px;
  max-width: 474px;
}
.hfeat__i {
  flex: 1;
  padding: 4px clamp(5px, .8vw, 11px) 6px;
  border-left: 1px solid rgba(255, 255, 255, .22);
  text-align: center;
}
.hfeat__i:first-child { border-left: 0; padding-left: 0; }
.hfeat__i svg {
  width: 38px; height: 38px;
  stroke-width: 1.4;
  color: #1E90FF;
  margin: 0 auto 14px;
}
.hfeat__i span {
  display: block;
  font-size: 15.5px; font-weight: 400;
  line-height: 1.32; color: #fff;
}

@media (max-width: 900px) {
  .hero {
    min-height: min(74vh, 600px);
  }
  .hero__slide { background-position: center 32%; }
  /* Single scrim on mobile. .hero::after is the desktop copy panel, clipped to
     the left; unclipped here it covered the whole slide and, stacked with this
     gradient, reached ~99% opacity — which is why the photo vanished. */
  /* Slides are dark to begin with (mean luma 24–70), so a light scrim still
     leaves white text at ~13:1 — well past AA — while the photo stays visible. */
  .hero__bg::after {
    background: linear-gradient(180deg, rgba(7, 20, 41, .58) 0%, rgba(7, 20, 41, .48) 40%, rgba(7, 20, 41, .26) 72%, rgba(7, 20, 41, .08) 100%);
  }
  .hero__dots { bottom: 16px; left: var(--gutter); right: auto; }
  .hero::after { background: none; clip-path: none; }
  .hero__copy { max-width: none; }
  .hfeat { flex-wrap: wrap; gap: 18px 0; }
  .hfeat__i { flex: 0 0 50%; text-align: left; padding-left: 0; border-left: 0; }
  .hfeat__i svg { margin-left: 0; }
}

.hero__in { position: relative; z-index: 2; width: 100%; }
.hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, .8fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.hero h1 { margin: 14px 0 20px; }

.hero__aside { display: flex; flex-direction: column; gap: 18px; }
.hero__badge {
  background: #fff; border: 1px solid var(--line);
  border-radius: 14px; padding: 20px 22px; width: 100%;
  display: flex; flex-direction: column; align-items: flex-start; gap: 14px;
}
.hero__badge img { height: 48px; width: auto; }
.hero__badge p {
  font-size: 14px; line-height: 1.55; color: var(--on-ink-dim);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 4px; }

/* --- 7b. Partner pricing highlight --------------------------------------- */
.pledge {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.pledge__i { background: #fff; padding: 26px 24px 28px; }
.pledge__k {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(48, 70, 156, .1); color: var(--dg);
  margin-bottom: 16px;
}
.pledge__k svg { width: 20px; height: 20px; }
.pledge__i h3 { font-size: 18px; font-weight: 600; letter-spacing: -.01em; margin-bottom: 7px; }
.pledge__i p { font-size: 15.5px; line-height: 1.6; color: var(--on-ink-dim); }

/* Pricing points stacked beside the form */
.pledge--stack { grid-template-columns: 1fr; border-radius: 14px; }
.pledge--stack .pledge__i {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 2px 18px;
  align-items: start;
  padding: 22px 24px;
}
.pledge--stack .pledge__k { grid-row: span 2; width: 40px; height: 40px; margin-bottom: 0; }
.pledge--stack .pledge__i h3 { font-size: 17px; margin-bottom: 4px; }
.pledge--stack .pledge__i p { font-size: 15px; }

.split.split--form { align-items: start; gap: clamp(28px, 3.4vw, 56px); }
.quote__intro .pledge { margin-top: 26px; }
.panel--form {
  padding: clamp(24px, 2.6vw, 34px);
  box-shadow: 0 10px 34px -18px rgba(19, 20, 22, .28);
  border-color: rgba(19, 20, 22, .16);
}

/* --- 7d. Spec strip ------------------------------------------------------ */
.specstrip { background: #fff; border-bottom: 1px solid var(--line); }
/* columns follow the number of .spec items, so removing one leaves no dead slot */
.specstrip__in { display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; }
.spec { padding: 26px clamp(14px, 2vw, 28px); border-right: 1px solid var(--line); }
.spec:last-child { border-right: 0; }
.spec__n {
  font-family: var(--f-display); font-size: clamp(28px, 3vw, 40px);
  font-weight: 700; line-height: 1; letter-spacing: -.02em; color: var(--dg);
}
.spec__l { margin-top: 8px; font-size: 14.5px; color: var(--on-ink-dim); }

/* --- 8. Section headers -------------------------------------------------- */
.shead {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .8fr);
  gap: clamp(20px, 3vw, 52px); align-items: end;
  margin-bottom: clamp(28px, 3.4vw, 44px);
}
.shead h2 { margin-top: 12px; }
.shead__side { padding-bottom: 4px; }
.shead--center {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  gap: 0;                 /* children stack — the column gap became a row gap */
  margin-bottom: clamp(30px, 3.4vw, 48px);
}
.shead--center h2 { max-width: none; }
.shead--center .lede { max-width: 62ch; margin-top: 8px; }

.shead--tight {
  grid-template-columns: 1fr;
  margin-bottom: clamp(20px, 2.2vw, 30px);
}
.shead--tight .lede { max-width: 70ch; }

/* --- 8b. Product category tiles ------------------------------------------ */
.prow { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: clamp(4px, 1vw, 12px); }

.prod {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 22px 8px 24px;
  border-radius: 14px;
  border: 1px solid transparent;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.prod:hover { background: var(--ink-2); border-color: var(--line); }
.section--paper .prod:hover { background: #fff; }

.prod__img { height: clamp(80px, 8vw, 108px); width: auto; margin-bottom: 16px; transition: transform .4s var(--ease-out); }
.prod:hover .prod__img { transform: translateY(-4px); }

.prod__t { font-size: clamp(15px, 1.3vw, 17px); font-weight: 600; letter-spacing: -.01em; line-height: 1.25; }
.prod__n { margin-top: 4px; font-size: 12.5px; color: var(--on-ink-mute); transition: color .25s var(--ease); }
.prod__n::after { content: " models"; }
.prod:hover .prod__n { color: var(--dg); }

@media (max-width: 900px) {
  .prow {
    display: flex; gap: 4px; overflow-x: auto;
    scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
    margin-inline: calc(var(--gutter) * -1); padding-inline: var(--gutter);
    scrollbar-width: none;
  }
  .prow::-webkit-scrollbar { display: none; }
  .prod { flex: 0 0 118px; scroll-snap-align: start; padding: 14px 4px 18px; }
  .prod__img { height: 72px; margin-bottom: 12px; }
}

/* --- 9. Cards (about page) ----------------------------------------------- */
.cats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.cat {
  position: relative; display: flex; flex-direction: column;
  padding: 26px 24px 28px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.cat:hover { border-color: var(--line-strong); box-shadow: 0 4px 18px rgba(19, 20, 22, .07); }
.cat__idx { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .16em; color: var(--on-paper-dim); }
.cat__hex { width: 40px; height: 45px; margin: 16px 0 18px; color: var(--dg); }
.cat__title { font-size: 20px; font-weight: 600; letter-spacing: -.012em; line-height: 1.15; margin-bottom: 7px; }
.cat__desc { font-size: 15.5px; line-height: 1.6; color: var(--on-paper-dim); }
.cat__meta {
  margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13.5px; font-weight: 600; color: var(--dg);
}
.cat__meta .arw { transition: transform .3s var(--ease); }
.cat:hover .cat__meta .arw { transform: translateX(4px); }

/* --- 10. Feature rows ---------------------------------------------------- */
.caps { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.cap {
  display: block;
  padding: 26px 26px 28px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.cap:hover { border-color: var(--line-strong); box-shadow: 0 4px 18px rgba(19, 20, 22, .07); }
.cap__n { font-family: var(--f-mono); font-size: 11px; letter-spacing: .14em; color: var(--dg); margin-bottom: 12px; }
.cap__t { font-size: clamp(19px, 1.7vw, 23px); font-weight: 600; letter-spacing: -.014em; line-height: 1.15; margin-bottom: 9px; }
.cap__d { color: var(--on-ink-dim); font-size: 16px; line-height: 1.65; }
.cap__go { display: none; }

/* --- 11. Split feature --------------------------------------------------- */
.split { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(28px, 4vw, 64px); align-items: center; }
.split--reverse > *:first-child { order: 2; }

.panel { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: clamp(24px, 2.8vw, 34px); }

.split__media { margin: 0; border-radius: 14px; overflow: hidden; }
.split__media img { width: 100%; height: auto; display: block; }

.klist { display: grid; }
.klist__row {
  display: flex; align-items: baseline; justify-content: space-between; gap: 20px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
}
.klist__row:last-child { border-bottom: 0; }
/* specification tables run long — two columns keeps them scannable on desktop */
.klist--2col { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: clamp(28px, 4vw, 64px); }
.klist--2col .klist__row:last-child { border-bottom: 1px solid var(--line); }
@media (max-width: 860px) { .klist--2col { grid-template-columns: 1fr; } }
.klist__row dt { color: var(--on-ink-dim); font-size: 14px; }
.klist__row dd { font-weight: 600; text-align: right; }

/* --- 12. Product catalogue ---------------------------------------------- */
.filters {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
  padding-block: 20px; border-bottom: 1px solid var(--line); margin-bottom: 28px;
}
.chip {
  padding: 9px 17px; border-radius: 4px;
  font-size: 14px; font-weight: 500;
  color: var(--on-ink); background: #fff; border: 1px solid var(--line-strong);
  cursor: pointer; transition: all .22s var(--ease); white-space: nowrap;
}
.chip:hover { border-color: var(--dg); color: var(--dg); }
.chip.is-on { background: var(--dg); border-color: var(--dg); color: #fff; }
.chip__c { opacity: .6; margin-left: 7px; font-size: 12.5px; }

.search { margin-left: auto; position: relative; min-width: 230px; flex: 0 1 290px; }
.search input {
  width: 100%; padding: 10px 14px 10px 38px; border-radius: 4px;
  background: #fff; border: 1px solid var(--line-strong);
  font-size: 14.5px; color: var(--on-ink); transition: border-color .22s var(--ease);
}
.search input::placeholder { color: var(--on-ink-mute); }
.search input:focus { outline: none; border-color: var(--dg); }
.search svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--on-ink-mute); }

.pgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.pcard {
  display: flex; flex-direction: column;
  padding: 22px 22px 24px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  min-height: 196px;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
  animation: fadeUp .4s var(--ease-out) both;
}
.pcard:hover {
  border-color: var(--line-strong);
  box-shadow: 0 10px 30px -12px rgba(19, 20, 22, .22);
  transform: translateY(-3px);
}
.pcard__media {
  position: relative;
  display: block;
  height: 186px;
  margin-bottom: 18px;
  background: var(--ink-2);
  border-radius: 10px;
  overflow: hidden;
}
/* sheen that sweeps across on hover */
.pcard__media::after {
  content: "";
  position: absolute; inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(105deg,
    rgba(255,255,255,0) 35%, rgba(255,255,255,.42) 50%, rgba(255,255,255,0) 65%);
  transform: translateX(-120%);
  transition: transform .7s var(--ease-out);
}
.pcard:hover .pcard__media::after { transform: translateX(120%); }

.pcard__media svg,
.pcard__media img {
  width: 100%; height: 100%;
  max-width: none; max-height: none;
  display: block;
  transition: transform .5s var(--ease-out);
}
.pcard__media img {
  object-fit: contain;          /* whole product stays visible — never cropped */
}
/* lift and zoom the product slightly under the cursor */
.pcard:hover .pcard__media img,
.pcard:hover .pcard__media svg { transform: scale(1.07) translateY(-3px); }

@media (prefers-reduced-motion: reduce) {
  .pcard__media::after { display: none; }
  .pcard:hover .pcard__media img,
  .pcard:hover .pcard__media svg { transform: none; }
}
.pcard:hover .pcard__media { background: var(--ink-3); }

.pcard__cat { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .15em; text-transform: uppercase; color: var(--dg); margin-bottom: 12px; }
.pcard__name { font-size: 18px; font-weight: 600; line-height: 1.22; letter-spacing: -.012em; margin-bottom: 9px; }
.pcard__d { font-size: 15px; line-height: 1.6; color: var(--on-ink-dim); }
.pcard__tags { margin-top: auto; padding-top: 16px; display: flex; flex-wrap: wrap; gap: 6px; }
.tag { font-size: 11.5px; color: var(--on-ink-dim); background: var(--ink-2); border-radius: 999px; padding: 5px 11px; }

.empty {
  grid-column: 1 / -1; padding: 64px 24px; text-align: center;
  background: var(--ink-2); border-radius: 14px; color: var(--on-ink-dim); font-size: 15px;
}
.pcount { font-size: 14px; color: var(--on-ink-mute); margin-bottom: 16px; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* --- 13. Interior page hero --------------------------------------------- */
.phero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(40px, 5vw, 68px));
  padding-bottom: clamp(32px, 4vw, 52px);
  background: var(--ink-2);
  border-bottom: 1px solid var(--line);
}
.phero__in { position: relative; z-index: 2; }

/* Category page banner with photography */
.phero--img {
  position: relative;
  min-height: clamp(360px, 36vw, 520px);
  display: flex;
  align-items: center;
  color: #fff;
  border-bottom: 0;
  background-color: #0A1830;
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
}
.phero--img::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg,
    #071429 0%, #071429 30%, rgba(7, 20, 41, .86) 48%, rgba(7, 20, 41, .32) 70%, rgba(7, 20, 41, 0) 90%);
}
.phero--img .phero__in { max-width: var(--shell); margin-inline: auto; width: 100%; }
.phero--img .load-in { max-width: 620px; }
.phero--img .crumb { color: rgba(255, 255, 255, .72); }
.phero--img .crumb a { color: rgba(255, 255, 255, .9); }
.phero--img .crumb a:hover { color: #fff; }
.phero--img .eyebrow { color: #4FA8F5; }
.phero--img .lede { color: rgba(255, 255, 255, .84); }
.phero--img .btn--ghost { color: #fff; border-color: rgba(255, 255, 255, .5); }
.phero--img .btn--ghost:hover { background: rgba(255, 255, 255, .12); border-color: #fff; color: #fff; }

/* Dell Platinum Partner seal — carried on every interior page banner.
   White card so the Dell blue lockup keeps its brand colour on both the dark
   photo banners and the light grey ones. */
.phero__seal {
  position: absolute;
  z-index: 3;
  right: clamp(20px, 4vw, 56px);
  bottom: clamp(22px, 3vw, 40px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 16px 40px -18px rgba(0, 0, 0, .55);
  max-width: min(268px, 30vw);
}
.phero__seal img { display: block; width: 100%; height: auto; max-height: 62px; object-fit: contain; }

@media (max-width: 900px) {
  /* These banners are 2.91:1 with the subject on the right, so a portrait
     mobile frame cropped to "center" showed empty backdrop and no product.
     Anchor right and keep the box short enough that cover still shows it. */
  .phero--img {
    min-height: 0;
    background-position: 78% center;
    background-size: cover;
  }
  .phero--img::before {
    background: linear-gradient(180deg, rgba(7, 20, 41, .92) 0%, rgba(7, 20, 41, .74) 48%, rgba(7, 20, 41, .42) 100%);
  }
  .phero--img .load-in { max-width: none; padding-bottom: clamp(96px, 26vw, 150px); }

  .phero--img .phero__seal { max-width: 150px; padding: 10px 13px; right: 16px; bottom: 18px; }
  .phero--img .phero__seal img { max-height: 40px; }
  /* light banners have no fixed height — flow the seal rather than overlap the copy */
  .phero:not(.phero--img) .phero__seal { position: static; margin-top: 26px; max-width: 190px; }
}
/* Full-width brand band carrying the breadcrumb on product pages. Padded to
   clear the fixed header, which the content would otherwise sit beneath. */
.crumbbar {
  background: var(--dg);
  padding-top: calc(var(--header-h) + 15px);
  padding-bottom: 15px;
}
.crumbbar .crumb { margin: 0; color: rgba(255, 255, 255, .82); }
.crumbbar .crumb a { color: #fff; }
.crumbbar .crumb a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.crumbbar .crumb > span { opacity: .62; }
/* the band already supplies the top breathing room */
.crumbbar + .section { padding-top: clamp(30px, 3.2vw, 46px); }

.crumb { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: var(--on-ink-mute); margin-bottom: 16px; }
.crumb a:hover { color: var(--dg); }
.crumb span { opacity: .5; }
.phero h1 { max-width: 20ch; }
.phero .lede { margin-top: 16px; }

/* --- 13a. Product detail media ------------------------------------------- */
.pdp__media {
  background: var(--ink-2);
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 600 / 414;
}
.pdp__media img, .pdp__media svg { width: 100%; height: 100%; object-fit: contain; display: block; }
/* Desktop: hold the product shot in view while the spec column scrolls past.
   Mobile stacks the two, where a pinned image would just cover the content. */
@media (min-width: 901px) {
  .split--form > .pdp__media { position: sticky; top: calc(var(--header-h) + 20px); }
}

/* --- 13a2. PDP checklist + FAQ ------------------------------------------- */
.speclist { margin-top: 20px; display: grid; gap: 10px; }
.speclist li {
  position: relative;
  padding-left: 30px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--on-ink-dim);
}
.speclist li::before {
  content: "";
  position: absolute; left: 4px; top: .58em;
  width: 9px; height: 9px; border-radius: 2px;
  background: var(--dg);
}

.faq { display: grid; gap: 14px; max-width: 900px; margin-inline: auto; }
.faq__i {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 24px;
}
.faq__i h3 { font-size: 18px; font-weight: 600; letter-spacing: -.01em; margin-bottom: 7px; }
.faq__i p { font-size: 16px; line-height: 1.62; color: var(--on-ink-dim); }

/* --- 13b. Why-Datagram banner card --------------------------------------- */
.wband {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: clamp(340px, 34vw, 460px);
  display: flex;
  align-items: center;
  background-color: #0A0F1A;
  background-image: url("../assets/img/Platinum.jpg");
  background-size: cover;
  background-position: right center;  /* subject sits right; copy sits left */
  background-repeat: no-repeat;
}
.wband::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg,
    #070C16 0%, #070C16 32%, rgba(7, 12, 22, .88) 50%, rgba(7, 12, 22, .34) 70%, rgba(7, 12, 22, 0) 90%);
}
.wband__copy {
  position: relative; z-index: 1;
  padding: clamp(30px, 4vw, 58px);
  max-width: 640px;
  color: #fff;
}
.wband__pre { font-size: 15px; font-weight: 500; color: rgba(255, 255, 255, .88); margin-bottom: 14px; }
.wband__h {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 700; line-height: 1.04; letter-spacing: -.022em;
  margin-bottom: 16px;
}
.wband__d { font-size: clamp(15px, 1.15vw, 17px); line-height: 1.62; color: rgba(255, 255, 255, .84); max-width: 52ch; }
.wband .btn { margin-top: 26px; }

.btn--light { background: #fff; border-color: #fff; color: var(--on-paper); }
.btn--light:hover { background: rgba(255, 255, 255, .88); border-color: rgba(255, 255, 255, .88); color: var(--on-paper); }

@media (max-width: 900px) {
  .wband {
    min-height: 0;
    background-position: center bottom;
    align-items: flex-start;
  }
  .wband::before {
    background: linear-gradient(180deg, rgba(7, 12, 22, .95) 0%, rgba(7, 12, 22, .88) 55%, rgba(7, 12, 22, .55) 100%);
  }
  .wband { background-position: center bottom; }
  .wband__copy { max-width: none; padding-bottom: clamp(160px, 42vw, 240px); }
}

/* --- 13c. Video ---------------------------------------------------------- */
.vid {
  position: relative;
  aspect-ratio: 24 / 9;          /* cinematic band */
  max-height: 620px;
  overflow: hidden;
  background: #000;
}
/* Full-bleed out of the shell, edge to edge */
.vid--bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  border-radius: 0;
}
/* Iframe keeps 16:9 and is scaled to cover, so the band crops top and bottom
   instead of letterboxing. */
.vid__frame {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  min-height: 100%;
  border: 0;
  display: block;
  pointer-events: none;          /* band is decorative; controls hidden by the crop */
}

@media (max-width: 900px) {
  .vid { aspect-ratio: 16 / 9; max-height: none; }
  .vid__frame { pointer-events: auto; }
}

/* --- 14. Steps ----------------------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 28px);
  counter-reset: step;
}
.step {
  position: relative;
  counter-increment: step;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 30px 26px 30px;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
}
.step:hover {
  border-color: var(--line-strong);
  box-shadow: 0 10px 28px -16px rgba(19, 20, 22, .28);
  transform: translateY(-3px);
}

/* numbered disc — .step p would otherwise win on specificity */
.step .step__n {
  display: grid; place-items: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--dg);
  color: #fff;
  font-family: var(--f-display);
  font-size: 20px; font-weight: 700; line-height: 1;
  margin-bottom: 20px;
  -webkit-text-stroke: 0;
}
.step:hover .step__n { background: var(--dg-dark); }

/* connector rule between the discs */
.step::after {
  content: "";
  position: absolute;
  top: calc(30px + 22px);
  left: calc(26px + 44px + 10px);
  right: -14px;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--line-strong) 0 6px, transparent 6px 12px);
}
.step:last-child::after { display: none; }

.step h3 { font-size: 19px; font-weight: 600; letter-spacing: -.012em; margin-bottom: 8px; }
.step p { font-size: 15.5px; line-height: 1.62; color: var(--on-ink-dim); }

@media (max-width: 1080px) {
  .step::after { display: none; }
}

/* --- 15. Trust band ------------------------------------------------------ */
.band {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 22px;
  padding-block: clamp(32px, 3.6vw, 52px);
  border-bottom: 0;
}
.band__l { font-size: 14px; color: var(--on-ink-dim); }
.band__logos { display: flex; align-items: center; gap: clamp(20px, 3.4vw, 44px); flex-wrap: wrap; }
.band__logos img { height: 28px; width: auto; opacity: .8; transition: opacity .25s var(--ease); }
.band__logos img:hover { opacity: 1; }

/* --- 16. CTA ------------------------------------------------------------- */
.cta { background: #fff; }
.cta__in {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  gap: 0;
}
.cta h2 { max-width: none; margin-inline: auto; text-wrap: nowrap; }
@media (max-width: 900px) { .cta h2 { text-wrap: balance; } }
.cta__aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  margin-top: 18px;
}
.cta .lede { max-width: 62ch; margin-inline: auto; }

/* --- 17. Forms ----------------------------------------------------------- */
.form { display: grid; gap: 18px; }
.frow { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.field { display: grid; gap: 7px; }
.field label { font-size: 14.5px; font-weight: 500; color: var(--on-ink-dim); }
.field input, .field select, .field textarea {
  padding: 14px 15px; border-radius: 10px;
  background: #fff; border: 1px solid var(--line-strong);
  color: var(--on-ink); font-size: 16px;
  transition: border-color .22s var(--ease), box-shadow .22s var(--ease);
}
.field textarea { resize: vertical; min-height: 126px; font-family: var(--f-body); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--dg); box-shadow: 0 0 0 3px rgba(48, 70, 156, .14);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' stroke='%2355585F' stroke-width='1.5'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 15px center; padding-right: 40px;
}
.form__note { font-size: 13px; color: var(--on-ink-mute); line-height: 1.6; }
/* sample values — muted so they read as hints, not entered data (5.4:1 on white) */
.form input::placeholder, .form textarea::placeholder { color: var(--on-ink-mute); opacity: 1; }

.form__ok {
  display: none; padding: 15px 17px; border-radius: 10px;
  border: 1px solid rgba(48, 70, 156, .45); background: rgba(48, 70, 156, .07);
  font-size: 14.5px; font-weight: 500; color: var(--dg-dark);
}
.form__ok.is-on { display: block; animation: fadeUp .3s var(--ease-out) both; }

/* shown only when send.php reports a failure, so a lead is never lost silently */
.form__err {
  display: none; padding: 15px 17px; border-radius: 10px;
  border: 1px solid rgba(178, 32, 32, .45); background: rgba(178, 32, 32, .06);
  font-size: 14.5px; font-weight: 500; color: #A81C1C;
}
.form__err.is-on { display: block; animation: fadeUp .3s var(--ease-out) both; }
.form__err a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }

/* one paragraph, two messages — which shows depends on why sending failed */
.form__err-cap { display: none; }
.form__err[data-reason="captcha"] .form__err-send { display: none; }
.form__err[data-reason="captcha"] .form__err-cap { display: inline; }

/* reCAPTCHA slot. Empty until a site key is set, so no gap appears in the
   forms while the placeholder is still in place. */
.captcha:not(:empty) { margin: 4px 0 2px; }
.captcha > div { max-width: 100%; }
@media (max-width: 360px) {
  /* the widget is a fixed 304px wide — scale it rather than let it overflow */
  .captcha > div { transform: scale(.9); transform-origin: 0 0; }
}

/* honeypot — off-screen for people, filled in by bots that complete every field */
.hp {
  position: absolute !important; left: -9999px !important;
  width: 1px; height: 1px; opacity: 0; pointer-events: none;
}

/* --- 18. Contact cards --------------------------------------------------- */
.ccards { display: grid; gap: 12px; }
.ccard { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 20px 22px; }
.ccard__l { font-size: 13px; font-weight: 500; color: var(--on-ink-mute); margin-bottom: 6px; }
.ccard__v { font-size: 16px; font-weight: 500; line-height: 1.5; }
.ccard__v a { color: var(--dg); }
.ccard__v a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* --- 19. Footer ---------------------------------------------------------- */
.ftr { background: #0A0C10; color: #fff; padding-top: clamp(48px, 5.5vw, 76px); }
/* only the column wrapper, not .ftr itself — .ftr__bar is a sibling and would
   otherwise get pushed away from the bottom of the footer */
.ftr > .shell { padding-bottom: clamp(48px, 5.5vw, 76px); }

.ftr__cols {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 52px);
}
/* Products spans two columns; its links run in two sub-columns */
.ftr__col--wide { grid-column: span 2; }
.ftr__list--2col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(20px, 2.4vw, 44px);
  align-content: start;
}
.ftr__col h4 {
  font-size: 20px; font-weight: 600; letter-spacing: -.012em; color: #fff;
  padding-bottom: 14px; margin-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .22);
}
.ftr li { margin-bottom: 13px; }
.ftr li a {
  font-size: 16px; color: #fff;
  transition: opacity .22s var(--ease);
  display: inline-block;
}
.ftr li a:hover { opacity: .72; text-decoration: underline; text-underline-offset: 3px; }
.ftr__plain { font-size: 16px; color: rgba(255, 255, 255, .78); }


/* Light bottom bar */
.ftr__bar { background: #EDEDED; color: var(--on-paper); padding-block: 28px; }
.ftr__bar-in {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  column-gap: clamp(24px, 4vw, 64px);
  row-gap: 16px;
}
/* the legal links and copyright stack into two rows beside the logo — span both
   so the logo centres against the whole bar instead of sitting in the top row */
.ftr__logo { grid-row: 1 / span 2; align-self: center; height: 52px; width: auto; }
.ftr__legal { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 0 14px; }
.ftr__legal a { font-size: 14.5px; color: var(--on-paper); }
.ftr__legal a:hover { color: var(--dg); text-decoration: underline; text-underline-offset: 3px; }
.ftr__legal a + a { border-left: 1px solid rgba(19, 20, 22, .3); padding-left: 14px; }
.ftr__copy {
  grid-column: 2;
  font-size: 12.5px; line-height: 1.6; color: #5A5E66;
  text-align: right; max-width: 96ch; margin-left: auto;
}

/* --- 19b. Sticky mobile bar ---------------------------------------------- */
.mbar {
  display: none; position: fixed; inset: auto 0 0 0; z-index: 98;
  border-top: 1px solid var(--line); background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); gap: 10px;
}
.mbar__b {
  flex: 1; display: grid; place-items: center;
  padding: 14px 10px; border-radius: 4px;
  background: var(--dg); color: #fff; font-size: 14.5px; font-weight: 600;
}
.mbar__b--alt { flex: 0 0 22%; background: #fff; border: 1px solid var(--line-strong); color: var(--on-ink); }
.mbar__b--wa { flex: 0 0 30%; background: #25D366; border: 1px solid #25D366; color: #fff; gap: 7px; grid-auto-flow: column; }
.mbar__b--wa svg { width: 18px; height: 18px; }

/* --- 19b3. WhatsApp (desktop) --------------------------------------------
   Fixed bubble on desktop only — on mobile the sticky bar carries WhatsApp
   instead, so the two never overlap. z 97 keeps it under the bar (98). */
.wa {
  position: fixed; z-index: 97;
  right: clamp(16px, 2.5vw, 28px); bottom: clamp(16px, 2.5vw, 28px);
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  background: #25D366; color: #fff;
  box-shadow: 0 10px 26px -8px rgba(0, 0, 0, .45);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.wa:hover { transform: translateY(-3px); box-shadow: 0 16px 34px -10px rgba(0, 0, 0, .5); }
.wa svg { width: 30px; height: 30px; }
@media (max-width: 900px) { .wa { display: none; } }
.mbar__b:active { opacity: .85; }

/* --- 19b2. Quote popup ---------------------------------------------------- */
/* z 190: above the header (100) and mobile bar (98), below consent (200) so the
   cookie banner can never end up trapped behind this */
.qm {
  position: fixed; inset: 0; z-index: 190;
  display: grid; place-items: center;
  padding: 20px;
  background: rgba(19, 20, 22, .55);
  animation: fadeUp .2s var(--ease-out) both;
}
.qm[hidden] { display: none; }
.qm__box {
  position: relative;
  width: 100%; max-width: 540px;
  max-height: calc(100vh - 40px); overflow-y: auto;
  background: #fff; border-radius: 14px;
  padding: clamp(22px, 3vw, 34px);
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, .45);
}
.qm__close {
  position: absolute; top: 12px; right: 12px;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 0; border-radius: 50%;
  background: var(--ink-2); color: var(--on-ink);
  font-size: 21px; line-height: 1; cursor: pointer;
  transition: background .2s var(--ease);
}
.qm__close:hover { background: var(--ink-4); }
.qm__title {
  font-family: var(--f-display); font-size: 24px; font-weight: 700;
  letter-spacing: -.018em; padding-right: 44px;
}
.qm__sub { margin-top: 8px; font-size: 15px; line-height: 1.6; color: var(--on-paper-dim); }
.qm .form { margin-top: 20px; }

/* --- 19c. Cookie consent -------------------------------------------------- */
.cc {
  position: fixed; inset: 0; z-index: 200;
  display: grid; place-items: center;
  padding: 20px;
  background: rgba(19, 20, 22, .55);
  animation: fadeUp .25s var(--ease-out) both;
}
.cc__box {
  width: 100%; max-width: 720px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  background: #fff;
  border-radius: 14px;
  padding: clamp(24px, 3vw, 38px);
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, .45);
}
.cc__title { font-family: var(--f-display); font-size: 24px; font-weight: 700; letter-spacing: -.018em; margin-bottom: 12px; }
.cc__text { font-size: 15.5px; line-height: 1.62; color: var(--on-paper-dim); }
.cc__text a { color: var(--dg); text-decoration: underline; text-underline-offset: 3px; }

.cc__opts { display: grid; gap: 10px; margin-top: 20px; }
.cc__opt {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 14px 16px; border: 1px solid var(--line); border-radius: 10px;
  font-size: 14px; line-height: 1.5; color: var(--on-paper-dim); cursor: pointer;
}
.cc__opt input { margin-top: 3px; width: 17px; height: 17px; accent-color: var(--dg); flex-shrink: 0; }
.cc__opt strong { display: block; color: var(--on-paper); font-weight: 600; margin-bottom: 2px; }

.cc__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 24px; }
.cc__spacer { flex: 1 1 auto; }
.cc__btn {
  padding: 12px 20px; border-radius: 4px;
  background: #fff; border: 2px solid var(--dg); color: var(--dg);
  font-size: 14.5px; font-weight: 600; cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.cc__btn:hover { background: rgba(48, 70, 156, .08); }
.cc__btn--primary { background: var(--dg); color: #fff; }
.cc__btn--primary:hover { background: var(--dg-dark); border-color: var(--dg-dark); color: #fff; }

@media (max-width: 640px) {
  .cc__actions { flex-direction: column; align-items: stretch; }
  .cc__spacer { display: none; }
  .cc__btn { width: 100%; }
}

/* --- 20. Reveal ---------------------------------------------------------- */
[data-reveal] {
  opacity: 0; transform: translateY(14px);
  transition: opacity .55s var(--ease-out), transform .55s var(--ease-out);
  transition-delay: var(--d, 0ms);
}
[data-reveal].is-in { opacity: 1; transform: none; }

.load-in > * { animation: heroUp .7s var(--ease-out) both; }
.load-in > *:nth-child(1) { animation-delay: .04s; }
.load-in > *:nth-child(2) { animation-delay: .12s; }
.load-in > *:nth-child(3) { animation-delay: .2s; }
.load-in > *:nth-child(4) { animation-delay: .28s; }
@keyframes heroUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

/* --- 21. Responsive ------------------------------------------------------ */
@media (max-width: 1080px) {
  .cats { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .pledge { grid-template-columns: 1fr; }
  .ftr__cols { grid-template-columns: 1fr 1fr; }
  .ftr__col--wide { grid-column: span 2; }
}

@media (max-width: 980px) {
  :root { --header-h: 62px; }
  .nav, .hdr__cta { display: none; }
  .burger { display: block; }
  .hero__layout { grid-template-columns: 1fr; }
  .shead { grid-template-columns: 1fr; align-items: start; }
  .split { grid-template-columns: 1fr; }
  .split--reverse > *:first-child { order: 0; }
  .specstrip__in { grid-auto-flow: row; grid-template-columns: repeat(2, 1fr); }
  .spec:nth-child(2) { border-right: 0; }
  .spec:nth-child(1), .spec:nth-child(2) { border-bottom: 1px solid var(--line); }
  .caps { grid-template-columns: 1fr; }
  .cta__in { grid-template-columns: 1fr; }

}

@media (max-width: 640px) {
  body { font-size: 17px; }
  .brand__logo { height: 33px; }
  .cats { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .ftr__cols { grid-template-columns: 1fr; }
  .ftr__col--wide { grid-column: span 1; }
  .ftr__bar-in { grid-template-columns: 1fr; }
  .ftr__legal { justify-content: flex-start; }
  .ftr__copy { grid-column: 1; text-align: left; margin-left: 0; }
  .ftr__legal a + a { border-left: 0; padding-left: 0; }
  .frow { grid-template-columns: 1fr; }
  .search { margin-left: 0; flex: 1 1 100%; }
  .band { flex-direction: column; align-items: flex-start; }
  .pgrid { grid-template-columns: 1fr; }
  .mbar { display: flex; }
  body { padding-bottom: 74px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important; scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

/* --- 22. Legal pages ----------------------------------------------------- */
.legal { max-width: 76ch; }
.legal h2 { font-family: var(--f-display); font-size: clamp(21px, 1.9vw, 26px); font-weight: 700; letter-spacing: -.015em; margin: 34px 0 10px; }
.legal p { font-size: 17px; line-height: 1.7; color: var(--on-paper-dim); }
.legal__flag {
  padding: 16px 18px; border-radius: 10px; margin-bottom: 8px;
  background: rgba(48, 70, 156, .07); border: 1px solid rgba(48, 70, 156, .28);
  font-size: 14.5px; line-height: 1.6; color: var(--on-paper);
}
.legal__meta { margin-top: 34px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 14px; color: var(--on-ink-mute); }
