/* =============================================================
   Innomatics Pump N Pay — Landing page
   Typeface: Quicksand
   Color System: Unified Brand Palette (#6880AD -> #63B3A6)
   ============================================================= */

/* ---------- 1. Tokens ---------- */
:root {
  /* Approved Brand Gradient & Tokens */
  --brand-start: #6880AD;
  --brand-end: #63B3A6;
  --brand-gradient: linear-gradient(90deg, var(--brand-start) 0%, var(--brand-end) 100%);
  --brand-start-10: rgba(104, 128, 173, 0.10);
  --brand-end-10: rgba(99, 179, 166, 0.10);
  --brand-start-20: rgba(104, 128, 173, 0.20);
  --brand-end-20: rgba(99, 179, 166, 0.20);
  --brand-start-30: rgba(104, 128, 173, 0.30);
  --brand-end-30: rgba(99, 179, 166, 0.30);

  /* Unified Brand Color System Aliases */
  --navy-900: #0A1324;
  --navy-800: #0D1933;
  --navy-700: #152647;
  --navy-600: var(--brand-start);
  --blue-600: var(--brand-start);
  --blue-500: var(--brand-start);
  --blue-400: var(--brand-end);
  --orange: var(--brand-end);
  --orange-soft: var(--brand-end);
  --teal-600: var(--brand-end);
  --teal-500: var(--brand-end);
  --teal-400: var(--brand-end);
  --purple: var(--brand-start);
  --purple-400: var(--brand-start);

  /* neutrals */
  --ink: #0D1933;
  --ink-2: #34405E;
  --muted: #64708A;
  --muted-2: #8692A8;
  --line: #E2E7F0;
  --line-soft: #EEF2F7;
  --surface: #FFFFFF;
  --page: #FBFCFE;
  --page-alt: #F4F7FD;
  --tint-blue: rgba(104, 128, 173, 0.08);

  /* gradients */
  --grad-cta: var(--brand-gradient);
  --grad-tri: linear-gradient(90deg, var(--brand-start) 0%, var(--brand-start) 50%, var(--brand-end) 50%, var(--brand-end) 100%);

  /* elevation */
  --sh-xs: 0 1px 2px rgba(10, 23, 71, .05);
  --sh-sm: 0 2px 10px rgba(10, 23, 71, .05);
  --sh-md: 0 10px 30px -12px rgba(10, 23, 71, .14), 0 2px 8px rgba(10, 23, 71, .04);
  --sh-lg: 0 28px 64px -24px rgba(10, 23, 71, .26), 0 6px 18px rgba(10, 23, 71, .06);
  --sh-xl: 0 46px 90px -30px rgba(10, 23, 71, .34);

  /* radii */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 30px;
  --r-pill: 999px;

  /* rhythm — the breathing room */
  --shell: 1220px;
  --gutter: clamp(20px, 4vw, 40px);
  --header-h: 78px;
  --bleed: calc((100vw - min(100vw, var(--shell))) / 2 + var(--gutter));
  --sec-y: clamp(48px, 5.6vw, 88px);
  --stack-1: 8px;
  --stack-2: 14px;
  --stack-3: 22px;
  --stack-4: 34px;
  --stack-5: 56px;
  --stack-6: 80px;

  --ease: cubic-bezier(.22, .68, .24, 1);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  font-family: "Quicksand", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  font-size: clamp(15px, .42vw + 14px, 16.5px);
  line-height: 1.72;
  color: var(--ink-2);
  background: var(--page);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  border: 0;
  background: none;
  cursor: pointer;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

:focus-visible {
  outline: 3px solid var(--brand-start);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: fixed;
  top: -60px;
  left: 16px;
  z-index: 200;
  padding: 10px 18px;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  background: var(--navy-800);
  color: #fff;
  font-weight: 600;
  transition: top .2s var(--ease);
}

.skip-link:focus {
  top: 0;
}

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

/* ---------- 4. Type scale & hierarchy ---------- */
h1,
h2,
h3 {
  color: var(--navy-800);
  font-weight: 700;
  letter-spacing: -.015em;
  text-wrap: balance;
}

.eyebrow {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--brand-end);
  margin-bottom: var(--stack-3);
}

.section-head {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: var(--stack-5);
}

.section-head--left {
  text-align: left;
  margin-inline: 0;
}

.section-head h2,
.security-copy h2,
.cta h2,
.promise-title,
.boost h2 {
  font-size: clamp(1.6rem, 1.9vw + .62rem, 2.35rem);
  line-height: 1.22;
  letter-spacing: -.022em;
}

.section-lede {
  max-width: 100%;
  margin: var(--stack-2) auto 0;
  font-size: 1.03rem;
  color: var(--muted);
  text-wrap: pretty;
}

.pill {
  display: inline-block;
  margin-bottom: var(--stack-3);
  padding: 5px 20px;
  border: 1.5px solid var(--brand-start-30);
  border-radius: var(--r-pill);
  background: #fff;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--brand-start);
}

/* brand-gradient accent rule */
.rule-tri {
  display: block;
  width: 104px;
  height: 3px;
  margin-top: var(--stack-3);
  border-radius: 2px;
  background: var(--grad-tri);
}

.section-head:not(.section-head--left) .rule-tri {
  margin-inline: auto;
}

/* ---------- 5. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: .94rem;
  letter-spacing: .005em;
  white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), filter .25s var(--ease);
}

.btn-primary {
  color: #fff;
  background: var(--brand-gradient);
  box-shadow: 0 12px 26px -12px var(--brand-start-30);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px -14px var(--brand-start-30);
  filter: brightness(1.06);
}

.btn-primary:active {
  transform: translateY(0);
}

/* ---------- 6. Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}

.site-header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px -18px rgba(10, 23, 71, .5);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: clamp(16px, 1.8vw, 34px);
  min-height: 78px;
}

.brand {
  flex: none;
}

.brand img {
  width: clamp(148px, 13vw, 178px);
}

.nav {
  margin-left: auto;
}

.nav>ul {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1vw, 22px);
}

.nav>ul a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 0;
  font-size: .92rem;
  font-weight: 600;
  white-space: nowrap;
  color: var(--muted);
  transition: color .22s var(--ease);
}

.nav>ul a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  border-radius: 2px;
  background: var(--brand-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s var(--ease);
}

.nav>ul a:hover {
  color: var(--navy-800);
}

.nav>ul a:hover::after,
.nav>ul a.is-active::after {
  transform: scaleX(1);
}

.nav>ul a.is-active {
  color: var(--brand-start);
}

.tag-new {
  padding: 2.5px 8px;
  border-radius: var(--r-pill);
  background: var(--brand-start);
  color: #fff;
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1.5;
}

.header-cta {
  flex: none;
  padding: 11px 26px;
  font-size: .9rem;
}

.nav-cta-mobile {
  display: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border-radius: 12px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 22px;
  margin-inline: auto;
  border-radius: 2px;
  background: var(--navy-800);
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- 7. Hero ---------- */
.hero {
  position: relative;
  display: flex;
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100svh - var(--header-h));
  padding-block: clamp(20px, 2.4vw, 44px);
  overflow: hidden;
  background:
    radial-gradient(1100px 520px at 92% -6%, var(--brand-start-10), transparent 62%),
    radial-gradient(760px 460px at -8% 26%, var(--brand-end-10), transparent 60%),
    linear-gradient(180deg, #FBFCFE 0%, #F5F8FE 100%);
}

.hero-grid {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.34fr);
  grid-template-rows: minmax(min-content, 1fr);
  gap: clamp(28px, 2.8vw, 44px);
  align-items: center;
}

.hero-copy {
  align-self: center;
}

.hero-title {
  font-size: clamp(3rem, 6.2vw, 4.9rem);
  line-height: 1.03;
  letter-spacing: -.035em;
  margin-bottom: var(--stack-4);
}

.w-navy {
  color: var(--navy-900);
}

.w-orange {
  color: var(--brand-end);
}

.w-blue {
  color: var(--brand-start);
}

.w-teal {
  color: var(--brand-end);
}

.hero-sub-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 1.8vw, 24px);
  align-items: start;
  margin-bottom: var(--stack-4);
}

.hero-sub-row .hero-sub,
.hero-sub-row .hero-body {
  margin-bottom: 0;
}

.hero-sub {
  font-size: clamp(1.05rem, 1.1vw + .65rem, 1.55rem);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: -.018em;
  color: var(--navy-900);
}

.hero-body {
  font-size: clamp(.88rem, .7vw + .65rem, 1.02rem);
  line-height: 1.55;
  color: var(--muted);
}

.hero-body .accent {
  color: var(--brand-end);
  font-weight: 700;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: auto auto auto;
  grid-auto-flow: column;
  gap: clamp(8px, 1vw, 16px);
}

.hero-points li {
  display: contents;
}

.hero-points>li>* {
  text-align: center;
}

.point-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin: 0 auto var(--stack-2);
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line-soft);
  box-shadow: var(--sh-md);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.point-icon:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
}

.point-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.5;
}

.ic-blue {
  color: var(--brand-start);
}

.ic-orange {
  color: var(--brand-end);
}

.ic-teal {
  color: var(--brand-end);
}

.ic-indigo {
  color: var(--brand-start);
}

.hero-points h3 {
  font-size: .91rem;
  line-height: 1.32;
  margin-bottom: 7px;
  text-wrap: balance;
}

.hero-points p {
  font-size: .83rem;
  line-height: 1.5;
  color: var(--muted);
}

.hero-copy .rule-tri {
  margin-top: var(--stack-4);
}

.hero-visual {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
  min-height: 0;
  margin: 0;
  mix-blend-mode: multiply;
}

.hero-visual img {
  width: calc(100% + var(--bleed));
  max-width: none;
  height: auto;
  margin-right: calc(-1 * var(--bleed));
}

/* ---------- 8. Steps ---------- */
.steps {
  padding-block: var(--sec-y);
  background: var(--surface);
  --step-art-w: clamp(94px, 9.2vw, 124px);
  --step-circle-d: calc(var(--step-art-w) * 260 / 300);
}

.steps-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.95fr) minmax(0, 1fr);
  gap: clamp(32px, 4vw, 56px);
  align-items: center;
}

.step-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: start;
}

.step {
  position: relative;
  text-align: center;
  min-width: 0;
  padding-inline: 4px;
}

.step-art {
  display: block;
  width: var(--step-art-w);
  height: auto;
  margin: 0 auto var(--stack-3);
  transition: transform .32s var(--ease);
}

.step:hover .step-art {
  transform: translateY(-5px);
}

.step h3 {
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--brand-start);
  margin-bottom: var(--stack-1);
}

.step p {
  font-size: .85rem;
  line-height: 1.55;
  color: var(--muted);
}

.step-arrow {
  position: absolute;
  top: 0;
  left: calc(50% + var(--step-circle-d) / 2);
  display: grid;
  place-items: center;
  width: calc(100% - var(--step-circle-d));
  height: calc(var(--step-art-w) * 1.5);
  color: var(--brand-start);
  opacity: .45;
  pointer-events: none;
}

.step-arrow svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.7;
}

.promise {
  padding: clamp(30px, 3.4vw, 46px);
  border-radius: var(--r-lg);
  background: linear-gradient(155deg, var(--brand-start-10) 0%, var(--brand-end-10) 100%);
  border: 1px solid var(--line-soft);
}

.promise-icon {
  display: block;
  width: clamp(58px, 5.2vw, 74px);
  height: auto;
  margin-bottom: var(--stack-3);
}

.promise-title {
  font-size: clamp(1.35rem, 1.35vw + .68rem, 1.95rem) !important;
  text-transform: uppercase;
  letter-spacing: .005em;
  margin-bottom: var(--stack-3);
  color: var(--navy-900);
}

.promise p {
  font-size: .98rem;
  line-height: 1.68;
  color: var(--ink-2);
}

.promise strong {
  color: var(--navy-800);
  font-weight: 700;
}

/* ---------- 9. Retailers ---------- */
.retailers {
  padding-block: var(--sec-y);
  background: var(--page-alt);
}

.retail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: clamp(24px, 3vw, 44px);
  align-items: stretch;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.4vw, 18px);
}

.value-card {
  padding: clamp(20px, 1.8vw, 26px) clamp(12px, 1.2vw, 18px);
  border-radius: var(--r-md);
  background: #fff;
  border: 1px solid var(--line-soft);
  box-shadow: var(--sh-xs);
  text-align: center;
  transition: transform .32s var(--ease), box-shadow .32s var(--ease), border-color .32s var(--ease);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-md);
  border-color: var(--brand-start-30);
}

.v-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin: 0 auto var(--stack-3);
}

.v-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.value-card h3 {
  font-size: 1.02rem;
  margin-bottom: var(--stack-2);
}

.value-card p {
  font-size: .87rem;
  line-height: 1.62;
  color: var(--muted);
}

.proof {
  position: sticky;
  top: 110px;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  background: var(--navy-800);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.proof-photo {
  flex: 1;
  min-height: 0;
  display: flex;
}

.proof-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stat-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: clamp(20px, 2vw, 28px) clamp(6px, .8vw, 12px);
  background: linear-gradient(160deg, #0A1324 0%, #152647 100%);
  color: #fff;
  text-align: center;
  align-items: start;
}

.stat-band li {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-inline: clamp(4px, .8vw, 10px);
  border-right: 1px solid rgba(255, 255, 255, .16);
}

.stat-band li:last-child {
  border-right: 0;
}

.stat-ic {
  width: 46px;
  height: 46px;
  margin: 0 auto 10px;
  display: block;
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
}

.stat-label {
  font-size: .73rem;
  font-weight: 600;
  letter-spacing: .005em;
  color: rgba(255, 255, 255, .85);
  margin-bottom: 6px;
  white-space: nowrap;
  line-height: 1.2;
  min-height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-figure {
  font-size: clamp(1.4rem, 1.7vw, 1.9rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--brand-end);
  margin-bottom: 6px;
}

.stat-note {
  font-size: .68rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, .72);
}

/* ---------- 10. Integrations (dark band) ---------- */
.integrations {
  --ink-dark: #EAF0FA;
  --ink-dim: #98A3BC;
  --hair: rgba(255, 255, 255, .075);
  padding-block: calc(var(--sec-y) * 1.06);
  background:
    radial-gradient(900px 500px at 50% -4%, var(--brand-start-10), transparent 62%),
    radial-gradient(700px 460px at 96% 96%, var(--brand-end-10), transparent 62%),
    linear-gradient(168deg, #0A1020 0%, #070C18 52%, #060A14 100%);
}

.integrations .section-head {
  margin-bottom: clamp(38px, 4vw, 60px);
}

.integrations .section-head h2 {
  color: var(--ink-dark);
}

.hd-plain {
  color: #FFFFFF;
}

.hd-grad {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.int-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(0, 1fr);
  gap: clamp(16px, 1.7vw, 24px);
}

.int-card {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
}

.int-card:hover {
  transform: none;
  border-color: transparent;
}

.int-card::before {
  display: none;
}

.int-head {
  position: relative;
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: clamp(14px, 1.5vw, 20px);
  padding-inline: 2px;
}

.int-chip {
  display: grid;
  place-items: center;
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  border: 1px solid rgba(255, 255, 255, .09);
}

.int-chip svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.7;
}

.ch-blue {
  background: var(--brand-start-10);
  color: var(--brand-start);
}

.ch-teal {
  background: var(--brand-end-10);
  color: var(--brand-end);
}

.ch-purple {
  background: var(--brand-start-10);
  color: var(--brand-start);
}

.int-label {
  margin: 0;
  text-align: left;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .11em;
  line-height: 1.35;
  text-transform: uppercase;
  color: var(--ink-dark);
  text-wrap: balance;
}

.brand-grid,
.int-list {
  position: relative;
  flex: 1;
  display: grid;
  gap: 1px;
  background: var(--hair);
  border: 1px solid var(--hair);
  border-radius: 15px;
  overflow: hidden;
}

.brand-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  min-height: clamp(160px, 15vw, 214px);
}

.int-list {
  grid-template-rows: repeat(3, minmax(0, 1fr));
}

.brand-grid::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 7px;
  height: 7px;
  margin: -3.5px 0 0 -3.5px;
  border-radius: 50%;
  background: var(--brand-end);
  box-shadow: 0 0 10px 2px var(--brand-end-30);
  pointer-events: none;
  z-index: 4;
  animation: centerDotPulse 3s ease-out infinite;
}

/* Horizontal 2-way line signal (Left & Right) */
.brand-grid::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  margin-top: -1px;
  background: linear-gradient(90deg, transparent 0%, rgba(99, 179, 166, 0.3) 15%, var(--brand-end) 50%, rgba(99, 179, 166, 0.3) 85%, transparent 100%);
  box-shadow: 0 0 8px var(--brand-end);
  pointer-events: none;
  z-index: 2;
  transform-origin: center center;
  animation: lineExpandH 3s ease-out infinite;
}

/* Vertical 2-way line signal (Up & Down) */
.brand-grid-vpulse {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  margin-left: -1px;
  background: linear-gradient(180deg, transparent 0%, rgba(99, 179, 166, 0.3) 15%, var(--brand-end) 50%, rgba(99, 179, 166, 0.3) 85%, transparent 100%);
  box-shadow: 0 0 8px var(--brand-end);
  pointer-events: none;
  z-index: 2;
  transform-origin: center center;
  animation: lineExpandV 3s ease-out infinite;
}

@keyframes centerDotPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 10px 2px var(--brand-end-30);
    filter: brightness(1);
  }
  15% {
    transform: scale(1.4);
    box-shadow: 0 0 16px 4px var(--brand-end);
    filter: brightness(1.3);
  }
  30%, 100% {
    transform: scale(1);
    box-shadow: 0 0 10px 2px var(--brand-end-30);
    filter: brightness(1);
  }
}

@keyframes lineExpandH {
  0% {
    transform: scaleX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  65% {
    transform: scaleX(1);
    opacity: 0.95;
  }
  85%, 100% {
    transform: scaleX(1);
    opacity: 0;
  }
}

@keyframes lineExpandV {
  0% {
    transform: scaleY(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  65% {
    transform: scaleY(1);
    opacity: 0.95;
  }
  85%, 100% {
    transform: scaleY(1);
    opacity: 0;
  }
}

.brand-cell,
.int-list li {
  background: #0A101E;
  transition: background .26s var(--ease);
}

.brand-cell:hover,
.int-list li:hover {
  background: #0E1626;
}

.brand-cell {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 0;
  padding: 14px clamp(10px, 1.3vw, 18px);
  text-align: center;
}

.brand-logo {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: var(--logo-h, 32px);
  object-fit: contain;
}

.brand-cell[data-brand="commonwealth-bank"] {
  --logo-h: 38px;
}

.brand-cell[data-brand="nab"] {
  --logo-h: 46px;
}

.brand-cell[data-brand="anz"] {
  --logo-h: 36px;
}

.brand-cell[data-brand="westpac"] {
  --logo-h: 26px;
}

.wordmark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  line-height: 1.08;
  color: #FFFFFF;
}

.wordmark b {
  font-size: clamp(1.1rem, .78vw + .86rem, 1.55rem);
  font-weight: 700;
  letter-spacing: -.02em;
}

.wordmark i {
  font-style: normal;
  font-size: clamp(.56rem, .22vw + .48rem, .68rem);
  font-weight: 600;
  letter-spacing: .34em;
  text-indent: .34em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .86);
}

.wm-stack b {
  font-size: clamp(.95rem, .55vw + .78rem, 1.24rem);
  line-height: 1.22;
}

.wm-italic b,
.wm-italic i {
  font-style: italic;
}

.tint-blue {
  font-style: inherit;
  color: var(--brand-start);
}

.tint-teal {
  font-style: inherit;
  color: var(--brand-end);
}

.brand-caption {
  font-size: clamp(.72rem, .26vw + .64rem, .82rem);
  font-weight: 500;
  line-height: 1.3;
  color: var(--ink-dim);
}

.int-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px clamp(13px, 1.4vw, 18px);
}

.row-icon {
  display: grid;
  place-items: center;
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--brand-end-10);
  border: 1px solid rgba(255, 255, 255, .07);
  color: var(--brand-end);
}

.row-icon svg {
  width: 21px;
  height: 21px;
  stroke-width: 1.5;
}

.row-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.row-copy b {
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -.01em;
  color: var(--ink-dark);
}

.row-copy i {
  font-style: normal;
  font-size: .79rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--ink-dim);
}

.row-go {
  flex: none;
  width: 17px;
  height: 17px;
  margin-left: auto;
  color: rgba(255, 255, 255, .3);
  stroke-width: 2;
  transition: color .25s var(--ease), transform .25s var(--ease);
}

.int-list li:hover .row-go {
  color: var(--brand-end);
  transform: translateX(3px);
}

.int-art-standalone {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
}

.int-art-standalone img {
  position: relative;
  width: 100%;
  height: auto;
  max-height: clamp(260px, 28vw, 410px);
  object-fit: contain;
  filter: drop-shadow(0 15px 35px rgba(0, 10, 35, .35));
  transition: transform .4s var(--ease);
}

.int-art-standalone:hover img {
  transform: translateY(-4px) scale(1.02);
}

/* ---------- 11. Security (Redesigned Banner) ---------- */
.security {
  position: relative;
  padding-block: var(--sec-y);
  background: var(--page-alt);
}

.security-banner {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 350px;
  border-radius: 22px;
  background: linear-gradient(105deg, #081124 0%, #0D1933 35%, #152647 70%, #081124 100%);
  padding: clamp(44px, 4.5vw, 64px) clamp(36px, 4vw, 56px);
  box-shadow: 0 28px 70px -12px rgba(2, 16, 60, .5), inset 0 1px 1px rgba(255, 255, 255, .2);
  border: 1px solid rgba(255, 255, 255, .14);
  overflow: hidden;
}

.banner-bg-elements {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.banner-glow-1 {
  position: absolute;
  top: -60px;
  right: -40px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--brand-start-20) 0%, transparent 75%);
  filter: blur(30px);
  animation: floatOrb1 8s ease-in-out infinite alternate;
}

.banner-glow-2 {
  position: absolute;
  bottom: -80px;
  left: 15%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--brand-end-20) 0%, transparent 75%);
  filter: blur(35px);
  animation: floatOrb2 10s ease-in-out infinite alternate;
}

.security-banner::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(180deg, transparent 0%, var(--brand-end-10) 50%, transparent 100%);
  pointer-events: none;
  z-index: 1;
  animation: scanlineSweep 7s ease-in-out infinite;
}

.bg-particle {
  position: absolute;
  border-radius: 50%;
  background: var(--brand-end);
  box-shadow: 0 0 10px var(--brand-end), 0 0 20px var(--brand-end);
}

.bg-particle.p-1 {
  top: 20%;
  left: 15%;
  width: 4px;
  height: 4px;
  animation: floatParticle 4s ease-in-out infinite;
}

.bg-particle.p-2 {
  top: 75%;
  left: 38%;
  width: 6px;
  height: 6px;
  animation: floatParticle 5.5s ease-in-out infinite 1s;
}

.bg-particle.p-3 {
  top: 25%;
  right: 26%;
  width: 5px;
  height: 5px;
  animation: floatParticle 4.8s ease-in-out infinite 0.5s;
}

.bg-particle.p-4 {
  top: 82%;
  right: 15%;
  width: 4px;
  height: 4px;
  animation: floatParticle 6s ease-in-out infinite 2s;
}

.security-copy {
  flex: 0 0 250px;
  max-width: 260px;
  z-index: 2;
}

.security-copy h2 {
  font-size: clamp(1.35rem, 1.7vw, 1.65rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.25;
  letter-spacing: -.015em;
}

.security-copy p {
  font-size: .85rem;
  line-height: 1.55;
  color: rgba(220, 235, 255, .85);
  margin-bottom: 22px;
}

.btn-security {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 26px;
  border-radius: 999px;
  background: var(--brand-gradient);
  color: #fff;
  font-weight: 700;
  font-size: .85rem;
  box-shadow: 0 4px 18px var(--brand-end-30);
  border: 1px solid rgba(255, 255, 255, .3);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), filter .25s var(--ease);
}

.btn-security:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  color: #fff;
}

.sec-divider {
  width: 1px;
  height: 170px;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, .22) 20%, rgba(255, 255, 255, .22) 80%, transparent 100%);
  margin-inline: clamp(18px, 2.4vw, 36px);
  flex-shrink: 0;
  z-index: 2;
}

.security-items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px clamp(14px, 1.6vw, 24px);
  flex: 1;
  z-index: 2;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sec-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding-inline: 4px;
}

.s-badge {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 25%, #7C98C9 0%, #6880AD 42%, #63B3A6 82%, #428277 100%);
  border: 1.5px solid rgba(255, 255, 255, .55);
  box-shadow:
    0 10px 24px rgba(8, 17, 36, .55),
    inset 0 3px 6px rgba(255, 255, 255, .75),
    inset 0 -4px 8px rgba(10, 25, 50, .5),
    0 0 20px rgba(99, 179, 166, .35);
  display: grid;
  place-items: center;
  margin-bottom: 10px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.s-badge::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 15%;
  width: 70%;
  height: 35%;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, .65) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.sec-item:hover .s-badge {
  transform: translateY(-4px) scale(1.06);
  box-shadow:
    0 14px 28px rgba(8, 17, 36, .65),
    inset 0 3px 6px rgba(255, 255, 255, .85),
    inset 0 -4px 8px rgba(10, 25, 50, .5),
    0 0 28px rgba(99, 179, 166, .6);
}

.s-badge svg {
  width: 27px;
  height: 27px;
  stroke: #fff;
  stroke-width: 1.6;
  fill: none;
  filter: drop-shadow(0 2px 3px rgba(0, 15, 60, .4));
  z-index: 1;
}

.sec-item h3 {
  font-size: .78rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.25;
  letter-spacing: .01em;
}

.security-shield-visual {
  position: relative;
  width: 220px;
  height: 220px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-left: clamp(16px, 2.2vw, 36px);
  z-index: 2;
}

.radar-rings {
  position: absolute;
  inset: -20px;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.radar-rings .ring {
  position: absolute;
  border-radius: 50%;
}

.radar-rings .r-1 {
  width: 80px;
  height: 80px;
  border: 1px dashed var(--brand-end-30);
  animation: pulseRing 3s ease-in-out infinite alternate;
}

.radar-rings .r-2 {
  width: 135px;
  height: 135px;
  border: 1px dotted var(--brand-end-30);
  animation: rotateRadar 22s linear infinite;
}

.radar-rings .r-3 {
  width: 190px;
  height: 190px;
  border: 1px solid var(--brand-end-20);
  animation: pulseRing 4s ease-in-out infinite 1s alternate;
}

.radar-rings .r-4 {
  width: 235px;
  height: 235px;
  border: 1px dashed var(--brand-end-20);
  animation: rotateRadar 30s linear infinite reverse;
}

.radar-grid {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, var(--brand-end-20) 0%, transparent 70%),
    repeating-radial-gradient(circle at center, transparent 0, transparent 12px, var(--brand-end-10) 13px, transparent 14px);
  border-radius: 50%;
}

.shield-3d-wrap {
  position: relative;
  width: 150px;
  height: 175px;
  z-index: 2;
  transition: transform .4s var(--ease);
  animation: floatShield 5s ease-in-out infinite;
}

.security-shield-visual:hover .shield-3d-wrap {
  transform: scale(1.08) translateY(-4px);
}

.shield-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

@keyframes floatOrb1 {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: .4;
  }

  100% {
    transform: translate(-30px, 25px) scale(1.15);
    opacity: .75;
  }
}

@keyframes floatOrb2 {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: .3;
  }

  100% {
    transform: translate(35px, -20px) scale(1.2);
    opacity: .65;
  }
}

@keyframes scanlineSweep {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }

  25% {
    opacity: .4;
  }

  75% {
    opacity: .4;
  }

  100% {
    transform: translateY(300%);
    opacity: 0;
  }
}

@keyframes floatParticle {

  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: .3;
  }

  50% {
    transform: translateY(-15px) scale(1.3);
    opacity: .85;
  }
}

@keyframes pulseRing {

  0%,
  100% {
    transform: scale(1);
    opacity: .3;
  }

  50% {
    transform: scale(1.08);
    opacity: .65;
  }
}

@keyframes rotateRadar {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes floatShield {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

/* ---------- 12. Loyalty ---------- */
.loyalty {
  padding-block: var(--sec-y);
  background: var(--surface);
}

.loyalty-head {
  max-width: 720px;
  margin-bottom: clamp(40px, 4.4vw, 64px);
}

.loyalty-head .section-lede {
  max-width: 560px;
}

.loyalty-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(280px, .92fr);
  gap: clamp(18px, 2vw, 24px);
  align-items: stretch;
  margin-bottom: clamp(18px, 2vw, 24px);
}

.loyalty-photo {
  margin: 0;
  min-height: 100%;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}

.loyalty-photo img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  aspect-ratio: 5/4;
  object-fit: cover;
  object-position: 58% 50%;
}

.boost {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 3.4vw, 48px);
  border-radius: var(--r-lg);
  background: linear-gradient(148deg, #0D1933 0%, #6880AD 50%, #63B3A6 100%);
  color: #fff;
  box-shadow: 0 30px 60px -28px var(--brand-start-30);
}

.boost-mark {
  width: 74px;
  margin-bottom: var(--stack-3);
  color: #fff;
}

.boost-mark svg {
  width: 100%;
  height: auto;
  fill: #fff;
  stroke: none;
}

.boost h2 {
  color: #fff;
  font-size: clamp(1.35rem, 1.2vw + .7rem, 1.8rem) !important;
  margin-bottom: var(--stack-4);
}

.boost-list {
  display: grid;
}

.boost-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-block: 14px;
  font-size: .95rem;
  color: rgba(255, 255, 255, .94);
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.boost-list li:last-child {
  padding-bottom: 0;
}

.boost-list svg {
  flex: none;
  width: 22px;
  height: 22px;
  padding: 4px;
  border-radius: 6px;
  background: var(--brand-end);
  color: #fff;
  stroke-width: 2.6;
}

.loyalty-perks {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 20px);
}

.loyalty-perk {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 22px 20px 24px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: #fff;
  box-shadow: var(--sh-xs);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}

.loyalty-perk:hover {
  transform: translateY(-4px);
  border-color: var(--brand-start-30);
  box-shadow: var(--sh-md);
}

.loyalty-perk-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--brand-start-10);
  border: 1px solid var(--line-soft);
  color: var(--brand-start);
}

.loyalty-perk-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.5;
}

.loyalty-perk h3 {
  font-size: .98rem;
  line-height: 1.35;
  letter-spacing: -.01em;
}

/* ---------- 13. Support + CTA ---------- */
/* -- capabilities carousel --------------------------------------------
   Full-bleed stage, grid-aligned active card. The rail below is an exact
   copy of .shell, so a slide is always the same width as the page's
   content column; the stage around it is what lets the neighbouring
   cards peek out past that column. ----------------------------------- */
.support-band {
  --pc-gap: clamp(12px, 1.1vw, 22px);
  --pc-shift: 780ms;
  --pc-ease: cubic-bezier(.52, .02, .16, 1);
  --pc-side-scale: .94;
  --pc-side-op: .78;
  --pc-art-h: clamp(200px, 27vw, 430px);
  --pc-dur: 3500ms;
  position: relative;
  padding-block: var(--sec-y);
  overflow: hidden;
  background: #fff;
}

.support-band .section-head {
  margin-bottom: clamp(26px, 3vw, 44px);
}

.pcar {
  position: relative;
}

/* the clip boundary — wide enough for a 20–25% peek, capped so the
   neighbours never drift away from the active card on huge displays */
.pcar-stage {
  max-width: calc(var(--shell) * 1.46);
  margin-inline: auto;
  padding-block: clamp(14px, 1.6vw, 26px);
  overflow: hidden;
}

/* identical geometry to .shell — this is what locks the slide to the grid */
.pcar-rail {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.pcar-deck {
  position: relative;
  display: grid;
  isolation: isolate;
  touch-action: pan-y;
}

.pcar-deck:focus-visible {
  outline: 3px solid var(--brand-start);
  outline-offset: 6px;
  border-radius: calc(var(--r-lg) + 6px);
}

/* every slide shares one grid cell, so the deck is as tall as the
   tallest card and nothing shifts as slides change */
.pcar-slide {
  --sc: .9;
  --op: 0;
  grid-area: 1 / 1;
  min-width: 0;
  z-index: 0;
  opacity: var(--op);
  transform:
    translate3d(calc((100% + var(--pc-gap)) * var(--off, 0) + var(--pc-drag, 0px)), 0, 0)
    scale(var(--sc));
  transition:
    transform var(--pc-shift) var(--pc-ease),
    opacity var(--pc-shift) var(--pc-ease);
}

.pcar-slide.is-side {
  --sc: var(--pc-side-scale);
  --op: var(--pc-side-op);
  z-index: 1;
  cursor: pointer;
}

.pcar-slide.is-active {
  --sc: 1;
  --op: 1;
  z-index: 2;
}

/* no transition before the first paint, while dragging, or on the one
   slide per step that wraps around the back of the deck */
.pcar-deck:not(.is-ready) .pcar-slide,
.pcar-deck.is-dragging .pcar-slide,
.pcar-slide.no-anim {
  transition: none;
}

.pcar-deck.is-dragging {
  cursor: grabbing;
}

.pcar-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(22px, 3vw, 48px);
  min-height: clamp(330px, 30vw, 470px);
  padding: clamp(28px, 3.2vw, 52px) clamp(24px, 3.1vw, 54px);
  border-radius: var(--r-lg);
  background:
    radial-gradient(520px 380px at 2% 96%, rgba(104, 128, 173, .22), transparent 70%),
    radial-gradient(420px 300px at 46% 4%, rgba(99, 179, 166, .10), transparent 72%),
    linear-gradient(105deg, #081124 0%, #0D1933 35%, #152647 70%, #081124 100%);
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: none;
  overflow: hidden;
}

/* the ambient light the artwork sits in — anchored per slide */
.pcar-aura {
  position: absolute;
  top: var(--aura-y, 44%);
  left: var(--aura-x, 74%);
  width: clamp(260px, 33vw, 540px);
  aspect-ratio: 1;
  translate: -50% -50%;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(99, 179, 166, .30) 0%,
      rgba(104, 128, 173, .24) 46%,
      transparent 73%);
  filter: blur(30px);
  pointer-events: none;
  z-index: 0;
}

.pcar-copy {
  position: relative;
  z-index: 2;
}

/* hidden rather than clipped on the peeking cards, and staged in when a
   slide takes the centre */
.pcar-slide:not(.is-active) .pcar-copy {
  pointer-events: none;
}

.pcar-copy>* {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity .5s var(--pc-ease),
    transform .5s var(--pc-ease);
}

.pcar-slide.is-active .pcar-copy>* {
  opacity: 1;
  transform: none;
}

.pcar-slide.is-active .pcar-kicker {
  transition-delay: .08s;
}

.pcar-slide.is-active .pcar-title {
  transition-delay: .14s;
}

.pcar-slide.is-active .pcar-lede {
  transition-delay: .2s;
}

.pcar-slide.is-active .pcar-cta {
  transition-delay: .26s;
}

.pcar-kicker {
  display: none;
}

.pcar-chip {
  flex: none;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1.5px solid transparent;
  border-radius: 14px;
  background:
    linear-gradient(#101E3C, #101E3C) padding-box,
    var(--brand-gradient) border-box;
  color: var(--brand-end);
}

.pcar-chip svg {
  width: 21px;
  height: 21px;
  stroke-width: 1.7;
}

.pcar-count {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.pcar-count b {
  color: var(--brand-end);
}

.pcar-title {
  font-size: clamp(1.7rem, 2.1vw + .55rem, 2.6rem);
  line-height: 1.1;
  letter-spacing: -.03em;
  color: #fff;
  margin-bottom: var(--stack-2);
  max-width: 15ch;
  text-wrap: balance;
}

.pcar-lede {
  max-width: 42ch;
  margin-bottom: var(--stack-4);
  font-size: clamp(.96rem, .45vw + .82rem, 1.1rem);
  line-height: 1.66;
  color: #B7C2D8;
  text-wrap: pretty;
}

.pcar-cta {
  align-self: start;
}

.pcar-cta .btn-arrow {
  width: 17px;
  height: 17px;
  stroke-width: 2;
  transition: transform .25s var(--ease);
}

.pcar-cta:hover .btn-arrow {
  transform: translateX(4px);
}

/* the supplied PNG is the hero: contained, never cropped, never scaled
   past its own pixels */
.pcar-art {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-width: 0;
  margin: 0;
  margin-bottom: calc(-1 * clamp(28px, 3.2vw, 52px));
  align-self: stretch;
}

.pcar-art img {
  width: auto;
  max-width: 100%;
  max-height: calc(var(--pc-art-h) + clamp(28px, 3.2vw, 52px));
  filter: drop-shadow(0 24px 38px rgba(2, 10, 30, .5)) saturate(80%);
  opacity: .8;
  transform: scale(1.02);
  transform-origin: bottom center;
  transition:
    opacity .7s var(--pc-ease),
    transform .8s var(--pc-ease);
}

.pcar-slide.is-active .pcar-art img {
  opacity: 1;
  transform: scale(1);
}

/* -- carousel controls -- */
.pcar-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 26px);
  margin-top: clamp(18px, 2.2vw, 32px);
}

.pcar-nav {
  flex: none;
  display: grid;
  place-items: center;
  width: clamp(40px, 3.3vw, 46px);
  height: clamp(40px, 3.3vw, 46px);
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--navy-800);
  box-shadow: var(--sh-sm);
  transition:
    transform .3s var(--pc-ease),
    box-shadow .3s var(--pc-ease),
    color .3s var(--pc-ease),
    border-color .3s var(--pc-ease);
}

.pcar-nav svg {
  width: 19px;
  height: 19px;
  stroke-width: 2;
}

.pcar-nav--prev svg {
  transform: rotate(180deg);
}

.pcar-nav:hover {
  transform: scale(1.08);
  color: var(--brand-start);
  border-color: var(--brand-start);
  box-shadow: var(--sh-md);
}

.pcar-nav:active {
  transform: scale(.96);
}

.pcar-dots {
  display: flex;
  align-items: center;
  gap: 9px;
}

/* the active dot stretches into a bar that fills over one dwell, so the
   rotation reads as continuous progress rather than a jump */
.pcar-dot {
  position: relative;
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: var(--r-pill);
  background: var(--brand-start-30);
  overflow: hidden;
  transition:
    width .5s var(--pc-ease),
    background .3s var(--pc-ease);
}

.pcar-dot:hover {
  background: var(--brand-start);
}

.pcar-dot[aria-current="true"] {
  width: 46px;
}

.pcar-dot-fill {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--brand-gradient);
  transform: scaleX(0);
  transform-origin: left center;
}

.pcar-dot[aria-current="true"] .pcar-dot-fill {
  animation: pcarFill var(--pc-dur) linear forwards;
}

.pcar.is-paused .pcar-dot[aria-current="true"] .pcar-dot-fill {
  animation-play-state: paused;
}

/* no autoplay to track — show the bar filled instead of empty */
.pcar.is-static .pcar-dot[aria-current="true"] .pcar-dot-fill {
  animation: none;
  transform: scaleX(1);
}

@keyframes pcarFill {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* -- closing CTA -- */
.closing {
  padding-block: clamp(20px, 3vw, 36px);
  background: #FFFFFF;
}

.cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  align-items: stretch;
  border-radius: var(--r-lg);
  background: #FFFFFF;
  border: 1px solid var(--line-soft);
  box-shadow: var(--sh-md);
  overflow: hidden;
}

.cta-copy {
  padding: clamp(26px, 3vw, 42px) clamp(24px, 2.8vw, 38px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}

.cta-logo {
  height: clamp(26px, 2.2vw, 32px);
  width: auto;
  margin-left: 0;
  margin-right: auto;
  margin-bottom: 24px;
  display: block;
}

.cta h2 {
  font-size: clamp(1.6rem, 2vw + .5rem, 2.4rem);
  line-height: 1.15;
  letter-spacing: -.025em;
  margin-bottom: 0;
}

.cta .rule-tri {
  margin-top: 8px;
  margin-bottom: 10px;
}

.cta-lede {
  font-size: clamp(.92rem, 1vw, 1rem);
  line-height: 1.45;
  color: var(--ink-2);
  margin-bottom: 16px;
}

.cta-lede strong {
  color: var(--brand-start);
  font-weight: 700;
}

/* Feature Points List — Compact & Tightened */
.cta-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
  padding: 0;
  list-style: none;
}

.cta-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.cta-ic {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 4px 12px -3px rgba(10, 23, 71, .12);
}

.cta-ic.ic-brand-start {
  background: linear-gradient(135deg, var(--brand-start) 0%, #4E6591 100%);
}

.cta-ic.ic-brand-end {
  background: linear-gradient(135deg, var(--brand-end) 0%, #46968B 100%);
}

.cta-ic svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.cta-feat-copy h3 {
  font-size: .92rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy-900);
  margin-bottom: 2px;
}

.cta-feat-copy p {
  font-size: .82rem;
  line-height: 1.4;
  color: var(--muted);
  margin: 0;
}

.cta-btn {
  align-self: flex-start;
  padding: 12px 30px;
  font-size: .94rem;
  box-shadow: 0 10px 24px -6px var(--brand-start-30);
}

.cta-btn .btn-arrow {
  width: 17px;
  height: 17px;
  stroke-width: 2;
  transition: transform .25s var(--ease);
}

.cta-btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* Right-side Full Image Container — keep laptop corners fully visible */
.cta-art {
  margin: 0;
  padding: clamp(16px, 2.2vw, 28px) clamp(14px, 2vw, 24px) clamp(18px, 2.4vw, 32px);
  width: 100%;
  height: 100%;
  min-height: 0;
  position: relative;
  display: grid;
  place-items: center;
  overflow: visible;
  border-radius: 0;
  box-sizing: border-box;
}

.cta-art img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
  border-radius: 0;
}

/* ---------- 14. Footer ---------- */
.site-footer {
  padding-block: 32px;
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px clamp(24px, 5vw, 72px);
  width: 100%;
}

.copyright {
  font-size: .85rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 32px);
}

.footer-links a {
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink-2);
  transition: color .22s var(--ease);
}

.footer-links a:hover {
  color: var(--brand-start);
}

.footer-links .divider {
  width: 1px;
  height: 15px;
  background: var(--line);
}

/* ---------- 15. Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* ---------- 16. Responsive ---------- */
@media (max-width:1180px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  }

  .loyalty-perks {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width:900px) {
  .hero {
    display: block;
    min-height: 0;
    padding-block: clamp(26px, 4.4vw, 52px);
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto;
    gap: clamp(24px, 4vw, 44px);
  }

  .hero-copy {
    max-width: 620px;
  }

  .hero-visual {
    align-self: auto;
    display: block;
    margin-inline: calc(-1 * var(--bleed));
  }

  .cta {
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(24px, 4vw, 36px);
  }

  .cta-art {
    min-height: 280px;
    height: auto;
    justify-self: center;
    margin-top: 12px;
  }
}

/* Between the grid width and ~1500px there is barely any room outside the
   content column, so the scale inset on the side cards would consume the
   whole peek. Trade that depth cue for visible neighbours; opacity still
   separates them. */
@media (max-width:1500px) {
  .support-band {
    --pc-gap: 10px;
    --pc-side-scale: 1;
  }
}

@media (max-width:1024px) {
  .support-band {
    --pc-gap: 10px;
    --pc-side-scale: 1;
    --pc-art-h: clamp(190px, 30vw, 300px);
  }

  .pcar-card {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
    min-height: clamp(300px, 34vw, 360px);
  }

  .pcar-title {
    max-width: 18ch;
  }

  .nav-toggle {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .nav {
    position: fixed;
    inset: 78px 0 auto;
    display: grid;
    gap: 8px;
    padding: 22px var(--gutter) 32px;
    background: rgba(255, 255, 255, .98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--sh-lg);
    transform: translateY(-14px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .28s var(--ease), transform .28s var(--ease), visibility .28s;
  }

  .nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav>ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav>ul a {
    padding: 13px 4px;
    font-size: 1rem;
    border-bottom: 1px solid var(--line-soft);
  }

  .nav>ul a::after {
    display: none;
  }

  .nav-cta-mobile {
    display: inline-flex;
    margin-top: 16px;
    justify-self: start;
  }

  .steps-layout,
  .retail-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .promise {
    max-width: none;
  }

  .value-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .proof {
    position: static;
    height: auto;
  }

  .proof-photo {
    flex: none;
    height: auto;
  }

  .proof-photo img {
    aspect-ratio: 16/9;
    height: auto;
  }
}

@media (max-width:1100px) {
  .security-banner {
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
  }

  .sec-divider {
    display: none;
  }

  .security-copy {
    flex: 1 1 100%;
    max-width: none;
    text-align: center;
  }

  .security-copy p {
    margin-inline: auto;
  }

  .security-items {
    flex: 1 1 100%;
  }

  .security-shield-visual {
    display: none;
  }
}

@media (max-width:860px) {

  /* mobile: a composition of its own — artwork above the copy, the card
     filling most of the viewport with a thin sliver of the next slide */
  .support-band {
    --pc-gap: 10px;
    --pc-side-scale: 1;
    --pc-side-op: .5;
    --pc-art-h: min(clamp(240px, 88vw, 440px), 46vh);
  }

  /* the art row is stated outright: five slides share one grid cell, and
     an auto row sized through that cell came out short of the artwork */
  .pcar-card {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto var(--pc-art-h);
    justify-items: start;
    align-content: start;
    gap: clamp(16px, 3vw, 26px);
    min-height: 0;
    text-align: left;
  }

  .pcar-art {
    display: block;
    order: 1;
    width: 100%;
    justify-self: center;
    align-self: end;
    margin-bottom: calc(-1 * clamp(22px, 5vw, 30px));
  }

  /* sized by a plain length rather than a percentage chain, so the row and
     the artwork agree exactly; contain keeps every ratio intact, crops nothing */
  .pcar-art img {
    width: 100%;
    height: var(--pc-art-h);
    max-height: none;
    object-fit: contain;
    object-position: center bottom;
  }

  .pcar-aura {
    top: 30%;
    left: 50%;
    width: min(76vw, 420px);
  }

  .pcar-title,
  .pcar-lede {
    max-width: 30ch;
  }

  .pcar-lede {
    margin-bottom: var(--stack-3);
  }

  .int-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .int-art-standalone img {
    max-height: 300px;
  }

  .step-flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(28px, 5vw, 44px) clamp(12px, 2vw, 24px);
    justify-items: center;
  }

  .step {
    width: 100%;
    max-width: 220px;
  }

  .step-arrow {
    display: none;
  }

  .security-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 12px;
  }

  .sec-item:not(:last-child)::after {
    display: none;
  }

  .loyalty-stage {
    grid-template-columns: minmax(0, 1fr);
  }

  .loyalty-photo img {
    min-height: 0;
    aspect-ratio: 16/10;
  }

  .cta {
    grid-template-columns: minmax(0, 1fr);
  }

  .cta-art {
    max-width: 420px;
  }

  .stat-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 0;
  }

  .stat-band li:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width:680px) {
  .support-band {
    --pc-gap: 8px;
  }

  .pcar-stage {
    padding-block: 10px;
  }

  .pcar-card {
    padding: clamp(22px, 5vw, 30px) clamp(20px, 5vw, 28px);
    border-radius: var(--r-md);
  }

  .pcar-chip {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .pcar-chip svg {
    width: 18px;
    height: 18px;
  }

  .pcar-nav {
    width: 38px;
    height: 38px;
  }

  .pcar-nav svg {
    width: 17px;
    height: 17px;
  }

  .pcar-dot[aria-current="true"] {
    width: 34px;
  }

  .cta {
    grid-template-columns: minmax(0, 1fr);
  }

  .cta-art {
    justify-self: center;
    max-width: 420px;
  }

  html {
    scroll-padding-top: 88px;
  }

  :root {
    --header-h: 68px;
  }

  .header-inner {
    min-height: 68px;
  }

  .nav {
    inset-block-start: 68px;
  }

  .hero-title {
    font-size: clamp(2.5rem, 10.4vw, 3rem);
  }

  .hero-sub {
    font-size: clamp(1.2rem, 5.2vw, 1.45rem);
  }

  .hero-body {
    font-size: 1rem;
    margin-bottom: var(--stack-4);
  }

  .hero-copy .rule-tri {
    margin-top: var(--stack-3);
  }

  /* phones read these faster as icon-beside-label rows than as a tall
     2x2 stack, and it stops the tiles dwarfing the product shot */
  .hero-points {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: auto;
    grid-auto-flow: row;
    gap: clamp(4px, 1vw, 10px);
  }

  .hero-points li {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-points>li>* {
    text-align: center;
  }

  .point-icon {
    grid-row: auto;
    width: clamp(42px, 11vw, 52px);
    height: clamp(42px, 11vw, 52px);
    margin: 0 auto var(--stack-1);
    border-radius: 14px;
  }

  .point-icon svg {
    width: 22px;
    height: 22px;
  }

  .hero-points h3 {
    align-self: center;
    font-size: clamp(.72rem, 2.1vw, .84rem);
    font-weight: 700;
    margin-bottom: 3px;
    line-height: 1.2;
    text-wrap: balance;
  }

  .hero-points p {
    align-self: center;
    font-size: clamp(.64rem, 1.7vw, .75rem);
    line-height: 1.35;
    color: var(--muted);
  }

  .value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-inner {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 14px;
  }
}

@media (max-width:520px) {
  .step-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .security-items {
    grid-template-columns: repeat(2, 1fr);
  }

  .value-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ---------- 17. Motion & print ---------- */
@media (prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }

  .brand-grid::after,
  .brand-grid::before,
  .brand-grid-vpulse {
    animation: none !important;
  }

  .brand-grid::before,
  .brand-grid-vpulse {
    display: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  /* no staged entrance, no drift — the artwork and copy simply are where
     they are; only the centred slide reveals its copy */
  .pcar-copy>*,
  .pcar-art img {
    transform: none;
  }

  .pcar-slide.is-active .pcar-copy>*,
  .pcar-slide.is-active .pcar-art img {
    opacity: 1;
  }
}