/* ─────────────────────────────────────────────────────
   YEX — Yad El Xchange  ·  Marketing site
   Palette extracted from the YEX logo:
     Navy   #1a2c6b   (YEX lettermark, dark hand)
     Blue   #0099e6   (light hand, circuit lines)
     Gold   #d4a020   (X lettermark, gold arrow)
───────────────────────────────────────────────────── */
:root {
  color-scheme: light;

  /* Surfaces */
  --bg:            #f5f7fb;
  --surface:       #ffffff;
  --surface-alt:   #eef1f8;
  --text:          #0d1a30;
  --muted:         #546070;
  --border:        #d6dcec;
  --border-strong: #b8c2d8;

  /* ── Navy  (primary dark) ───────────── */
  --navy:          #1a2c6b;
  --navy-strong:   #111d4a;
  --navy-soft:     #e6eaf5;
  --navy-glow:     rgba(26, 44, 107, 0.16);

  /* ── Blue  (vibrant accent) ─────────── */
  --blue:          #0099e6;
  --blue-strong:   #0077b8;
  --blue-soft:     #e0f4fd;
  --blue-glow:     rgba(0, 153, 230, 0.18);

  /* ── Gold  (highlight accent) ───────── */
  --gold:          #d4a020;
  --gold-strong:   #a87a10;
  --gold-soft:     #fdf4d8;
  --gold-glow:     rgba(212, 160, 32, 0.18);

  /* Dark sidebar/panel */
  --dark:          #0d1a30;
  --dark-mid:      #1a2c6b;

  /* Gradients */
  --grad-brand:    linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  --grad-gold:     linear-gradient(135deg, var(--gold) 0%, #f0c040 100%);
  --grad-dark:     linear-gradient(135deg, #0d1a30 0%, #1a2c6b 100%);

  /* Category pills */
  --cat-food:          #dc2626;
  --cat-beauty:        #db2777;
  --cat-fitness:       #0d9488;
  --cat-entertainment: #7c3aed;
  --cat-retail:        var(--gold);
  --cat-services:      var(--blue);

  --shadow:    0 24px 64px rgba(13, 26, 48, 0.13);
  --shadow-sm: 0 8px 24px rgba(13, 26, 48, 0.07);
  --radius:    14px;

  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
               "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-height: 100vh; background: var(--bg); }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin-top: 0; }

/* ── Header ──────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(18px, 4vw, 52px);
  background: rgba(245, 247, 251, 0.92);
  border-bottom: 1px solid rgba(214, 220, 236, 0.9);
  backdrop-filter: blur(16px);
}

.brand,
.hero__actions,
.header-actions,
.pilot-actions {
  display: flex;
  align-items: center;
}

.brand { gap: 14px; min-width: 200px; text-decoration: none; }

/* Logo image — replaces the text mark */
.brand__logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.brand strong { display: block; font-size: 1rem; color: var(--navy); }
.brand small  { display: block; color: var(--muted); font-weight: 700; font-size: 0.76rem; }

.site-nav { display: flex; gap: 20px; color: var(--muted); font-weight: 800; }
.site-nav a:hover { color: var(--navy); }

/* Hamburger toggle — hidden on desktop, shown only below the 900px breakpoint (see Responsive). */
.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle__bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy);
  border-radius: 1px;
  transition: transform 0.15s, opacity 0.15s;
}
.nav-toggle--open .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle--open .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle--open .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Buttons ─────────────────────────────────────── */
.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 11px 20px;
  border: 1.5px solid transparent;
  font-weight: 900;
  white-space: nowrap;
  transition: filter 0.15s, box-shadow 0.15s, transform 0.1s;
}
.button:hover  { filter: brightness(1.07); }
.button:active { transform: scale(0.98); }

.button--primary {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: 0 8px 28px var(--navy-glow);
}
.button--primary:hover { box-shadow: 0 12px 36px rgba(26, 44, 107, 0.28); }

.button--secondary {
  background: var(--dark);
  color: #fff;
  box-shadow: 0 6px 20px rgba(13, 26, 48, 0.22);
}

.button--ghost {
  background: var(--surface);
  border-color: var(--border);
  color: var(--text);
}

/* ── Layout ─────────────────────────────────────── */
main { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.subpage-main { padding-bottom: 72px; }

/* ── Hero ────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 36px;
  align-items: center;
  min-height: min(760px, calc(88vh - 80px));
  padding: 40px 0 28px;
  position: relative;
}

/* Subtle blue glow top-left, gold glow bottom-left */
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero::before {
  width: 420px; height: 420px;
  top: -80px; left: -140px;
  background: radial-gradient(circle, rgba(0, 153, 230, 0.08) 0%, transparent 70%);
}
.hero::after {
  width: 320px; height: 320px;
  bottom: 0; left: -80px;
  background: radial-gradient(circle, rgba(212, 160, 32, 0.08) 0%, transparent 70%);
}

.hero__copy { max-width: 680px; position: relative; z-index: 1; }

/* Eyebrow: blue-to-gold gradient text */
.eyebrow {
  margin: 0;
  display: inline-block;
  background: linear-gradient(90deg, var(--blue) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.hero__eyebrow {
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  line-height: 1;
  letter-spacing: 0.01em;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.93;
  letter-spacing: -0.02em;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.01em;
}

h3 { margin-bottom: 8px; font-size: 1.2rem; }

.hero__lede, .section p, .pilot-panel p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero__actions { gap: 12px; flex-wrap: wrap; margin-top: 28px; }

.hero__actions .merchant-link,
.hero__actions .customer-link,
.pilot-actions .merchant-link,
.pilot-actions .customer-link {
  min-width: 178px;
}

/* ── Hero media ──────────────────────────────────── */
.hero__media {
  position: relative;
  margin: 0;
  min-height: 540px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  z-index: 1;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  display: block;
}

/* Blue-tinted gradient overlay matching the logo's blue hand */
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0, 153, 230, 0.18) 0%,
    rgba(13, 26, 48, 0.0) 40%,
    rgba(13, 26, 48, 0.50) 100%
  );
  pointer-events: none;
}

/* Gold accent bar at the top — matches the logo's gold X */
.hero__media::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad-gold);
  z-index: 2;
}

/* Demo card */
.demo-card {
  position: absolute;
  z-index: 3;
  left: 20px; right: 20px; bottom: 22px;
  padding: 18px 20px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 40px rgba(13, 26, 48, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.demo-card__eyebrow {
  margin: 0 0 4px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.demo-card h2 { font-size: 1.22rem; margin-bottom: 6px; }
.demo-card p:last-child { margin: 0; color: var(--muted); font-weight: 700; font-size: 0.9rem; }

/* ── Sections ───────────────────────────────────── */
.section { padding: 72px 0; }
#how-it-works { padding-top: 34px; }
.section__header { max-width: 720px; margin-bottom: 36px; }

.subpage-hero { max-width: 880px; padding: 76px 0 48px; }
.subpage-hero h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(2.6rem, 6vw, 5.1rem);
}
.subpage-hero p { max-width: 760px; color: var(--muted); font-size: 1.13rem; line-height: 1.75; }

/* ── Outcome strip ───────────────────────────────── */
.signal-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: -12px 0 42px;
}

.signal-strip article {
  position: relative;
  min-height: 170px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(0, 153, 230, 0.10), transparent 38%),
    var(--surface);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.signal-strip article:nth-child(2) {
  background:
    radial-gradient(circle at top right, rgba(212, 160, 32, 0.13), transparent 38%),
    var(--surface);
}

.signal-strip article:nth-child(3) {
  background:
    radial-gradient(circle at top right, rgba(26, 44, 107, 0.12), transparent 38%),
    var(--surface);
}

.signal-strip span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--blue-strong);
  font-weight: 950;
  letter-spacing: 0.08em;
}

.signal-strip strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 1.12rem;
}

.signal-strip p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 650;
}

/* ── Step cards — each gets one of the three brand colors ── */
.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.step-card:nth-child(1)::before { background: var(--navy); }
.step-card:nth-child(2)::before { background: var(--blue); }
.step-card:nth-child(3)::before { background: var(--gold); }

.step-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}

.step-card:nth-child(1) .step-card__number {
  background: var(--navy-soft);
  color: var(--navy-strong);
  border: 1.5px solid rgba(26, 44, 107, 0.18);
}
.step-card:nth-child(2) .step-card__number {
  background: var(--blue-soft);
  color: var(--blue-strong);
  border: 1.5px solid rgba(0, 153, 230, 0.18);
}
.step-card:nth-child(3) .step-card__number {
  background: var(--gold-soft);
  color: var(--gold-strong);
  border: 1.5px solid rgba(212, 160, 32, 0.18);
}

.step-card__number {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  font-weight: 900;
  font-size: 1rem;
  margin-bottom: 16px;
}

/* ── Persona cards ───────────────────────────────── */
.persona-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.persona-card {
  position: relative;
  min-height: 280px;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.persona-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--persona-accent, var(--blue));
}

.persona-card::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -70px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: var(--persona-glow, rgba(0, 153, 230, 0.12));
}

.persona-card--merchant {
  --persona-accent: var(--navy);
  --persona-soft: var(--navy-soft);
  --persona-glow: rgba(26, 44, 107, 0.12);
}
.persona-card--customer {
  --persona-accent: var(--blue);
  --persona-soft: var(--blue-soft);
  --persona-glow: rgba(0, 153, 230, 0.12);
}
.persona-card span {
  display: inline-flex;
  margin-bottom: 48px;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--persona-soft, var(--blue-soft));
  color: var(--dark);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.persona-card h3 {
  max-width: 13ch;
  font-size: 1.65rem;
  line-height: 1.05;
}

.persona-card p {
  position: relative;
  z-index: 1;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 700;
}

/* ── Carousel ───────────────────────────────────── */
.carousel { overflow: hidden; position: relative; }

.carousel__track {
  display: flex;
  align-items: stretch;
  gap: 18px;
  transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.carousel__card {
  flex: 0 0 calc((100% - 36px) / 3);
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 4px solid var(--cat-accent, var(--navy));
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.carousel__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(13, 26, 48, 0.12);
}

.carousel__card--food        { --cat-accent: var(--cat-food); }
.carousel__card--beauty      { --cat-accent: var(--cat-beauty); }
.carousel__card--fitness     { --cat-accent: var(--cat-fitness); }
.carousel__card--entertainment { --cat-accent: var(--cat-entertainment); }
.carousel__card--retail      { --cat-accent: var(--cat-retail); }
.carousel__card--services    { --cat-accent: var(--cat-services); }

.carousel__media {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 10;
  background: var(--surface-alt);
  overflow: hidden;
}
.carousel__media img {
  width: 100%; height: 100%;
  display: block; object-fit: cover;
  transition: transform 0.5s ease;
}
.carousel__card:hover .carousel__media img { transform: scale(1.04); }

.carousel__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13, 26, 48, 0) 40%, rgba(13, 26, 48, 0.6) 100%);
  pointer-events: none;
}

.carousel__media span {
  position: absolute;
  left: 14px; bottom: 14px;
  z-index: 1;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--cat-accent, var(--text));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.carousel__card h3 { padding: 20px 20px 0; font-size: 1.12rem; margin-bottom: 8px; }
.carousel__card p  { padding: 0 20px; color: var(--muted); font-size: 0.96rem; line-height: 1.65; margin-bottom: 14px; }

.carousel__examples { margin: auto 0 0; padding: 0 20px 20px 38px; list-style: disc; }
.carousel__examples li { color: var(--muted); font-size: 0.88rem; line-height: 1.85; font-weight: 700; }

.carousel__controls {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-top: 26px;
}

.carousel__btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-size: 1.1rem;
  cursor: pointer;
  display: grid; place-items: center;
  transition: background 0.15s, border-color 0.15s, box-shadow 0.15s;
}
.carousel__btn:hover {
  background: var(--navy-soft);
  border-color: var(--navy);
  box-shadow: 0 4px 12px var(--navy-glow);
}

.carousel__dots { display: flex; gap: 8px; align-items: center; }
.carousel__dot {
  width: 8px; height: 8px;
  border-radius: 999px; border: none;
  background: var(--border); cursor: pointer; padding: 0;
  transition: background 0.2s, width 0.25s;
}
.carousel__dot--active { background: var(--navy); width: 22px; }

@media (max-width: 1023px) { .carousel__card { flex: 0 0 calc((100% - 18px) / 2); } }
@media (max-width: 639px)  { .carousel__card { flex: 0 0 100%; } }

/* ── Pilot readiness panel ───────────────────────── */
.trust-section { padding-top: 36px; }

.trust-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
  gap: 32px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(26, 44, 107, 0.16);
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(0, 153, 230, 0.12), transparent 32%),
    radial-gradient(circle at bottom right, rgba(212, 160, 32, 0.12), transparent 36%),
    var(--surface);
  box-shadow: var(--shadow-sm);
}

.trust-panel h2 {
  max-width: 680px;
}

.trust-panel p {
  color: var(--muted);
  line-height: 1.75;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 14px 16px 14px 44px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  font-weight: 850;
  line-height: 1.45;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 15px;
  top: 13px;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue-strong);
  font-size: 0.8rem;
  font-weight: 950;
}

/* ── Pilot panel ─────────────────────────────────── */
.pilot-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 42px 0 72px;
  padding: 36px 40px;
  border-radius: 22px;
  background: var(--grad-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Gold glow top-left (logo gold X), blue glow bottom-right (logo blue hand) */
.pilot-panel::before {
  content: "";
  position: absolute; left: -40px; top: -40px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(212, 160, 32, 0.22) 0%, transparent 70%);
  pointer-events: none;
}
.pilot-panel::after {
  content: "";
  position: absolute; right: -40px; bottom: -40px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(0, 153, 230, 0.22) 0%, transparent 70%);
  pointer-events: none;
}

.pilot-panel .eyebrow {
  background: linear-gradient(90deg, var(--blue) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pilot-panel h2 { color: #fff; }
.pilot-panel p  { color: #c5d0da; max-width: 68ch; }
.pilot-actions  { gap: 10px; flex-wrap: wrap; justify-content: flex-end; }

/* ── Pricing / registration ─────────────────────── */
.pricing-section { padding: 42px 0; }

.pricing-grid, .registration-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.pricing-grid--merchant {
  gap: 22px;
}

.pricing-card, .registration-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.pricing-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 450px;
}

.merchant-plan-card {
  position: relative;
  min-height: 585px;
  padding: 28px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(0, 153, 230, 0.10), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), #fff);
  overflow: hidden;
}

.merchant-plan-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(26, 44, 107, 0.07);
  pointer-events: none;
}

.merchant-plan-card > * {
  position: relative;
  z-index: 1;
}

.pricing-card--featured {
  border-color: var(--gold);
  box-shadow: 0 18px 48px var(--gold-glow);
}

.pricing-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  min-height: 36px;
  margin-bottom: 12px;
}

.pricing-card__label {
  margin: 0;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 0.78rem; font-weight: 900; text-transform: uppercase;
}

.merchant-plan-card .pricing-card__label {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1;
  letter-spacing: 0.02em;
}

.pricing-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--navy-soft);
  color: var(--navy-strong);
  font-size: 0.72rem;
  font-weight: 950;
  white-space: nowrap;
}

.pricing-card__badge--featured {
  background: var(--gold-soft);
  color: var(--gold-strong);
}

.pricing-card h3 {
  min-height: 2.5rem;
  margin-bottom: 10px;
  font-size: 2.4rem;
  line-height: 1;
}
.pricing-card h3 span { color: var(--muted); font-size: 1rem; }
.pricing-card p, .registration-card p { color: var(--muted); line-height: 1.65; }
.pricing-card > p:not(.pricing-card__label) {
  min-height: 5.45rem;
  margin-bottom: 0;
}
.pricing-card ul, .registration-card ul { margin: 18px 0 24px; padding-left: 20px; color: var(--muted); line-height: 1.8; font-weight: 700; }
.pricing-card ul {
  flex: 1;
}
.pricing-card .button { margin-top: 0; }

.plan-limits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 20px 0 8px;
}

.plan-limits div {
  min-height: 92px;
  padding: 13px 10px;
  border: 1px solid rgba(184, 194, 216, 0.75);
  border-radius: 14px;
  background: rgba(238, 241, 248, 0.78);
}

.plan-limits strong {
  display: block;
  margin-bottom: 5px;
  color: var(--navy);
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: -0.02em;
}

.plan-limits span {
  display: block;
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.pricing-card__features {
  display: grid;
  align-content: start;
  gap: 10px;
  margin: 20px 0 26px;
  padding: 0;
  list-style: none;
}

.pricing-card__features li {
  position: relative;
  padding: 10px 12px 10px 36px;
  border: 1px solid rgba(214, 220, 236, 0.82);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.45;
}

.pricing-card__features li::before {
  content: "✓";
  position: absolute;
  left: 12px;
  top: 10px;
  color: var(--blue-strong);
  font-weight: 950;
}

.service-offering-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.service-offering-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 22px;
}

.service-offering-card span {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(0, 153, 230, 0.1);
  color: var(--blue);
  font-weight: 900;
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-offering-card h3 {
  margin-top: 14px;
}

.service-offering-card p {
  color: var(--muted);
  line-height: 1.65;
}

.service-offering-card small {
  color: var(--navy);
  font-weight: 900;
}

.service-offering-card--placeholder {
  border-style: dashed;
}

.registration-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-bottom: 42px; }
.registration-card { min-height: 430px; }
.registration-card > .eyebrow {
  margin-bottom: 18px;
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  line-height: 1;
  letter-spacing: 0.02em;
}
.registration-card--merchant {
  background: linear-gradient(135deg, rgba(26, 44, 107, 0.06), rgba(255, 255, 255, 0) 44%), var(--surface);
}
.registration-card h2 { font-size: clamp(2rem, 3vw, 3rem); }
.card-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }

.note-panel {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  margin: 42px 0 0; padding: 28px;
  border-radius: 22px;
  background: var(--surface-alt);
  border: 1px solid var(--border);
}
.note-panel p { max-width: 72ch; color: var(--muted); line-height: 1.7; }

/* ── Footer ─────────────────────────────────────── */
.site-footer {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 24px clamp(18px, 4vw, 52px);
  color: var(--muted);
  border-top: 1px solid var(--border);
  font-size: 0.86rem;
}

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    padding: 4px clamp(18px, 4vw, 52px) 12px;
  }
  .site-nav--open { display: flex; }
  .site-nav a { padding: 12px 0; border-bottom: 1px solid var(--border); }
  .site-nav a:last-child { border-bottom: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__media, .hero__media img { min-height: 380px; }
  .signal-strip, .persona-grid, .trust-panel { grid-template-columns: 1fr; }
  .step-grid { grid-template-columns: 1fr; }
  .pricing-grid, .registration-grid { grid-template-columns: 1fr; }
  .pilot-panel, .note-panel, .site-footer { align-items: flex-start; flex-direction: column; }
  .pilot-actions { justify-content: flex-start; }
}

@media (max-width: 620px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  .header-actions .button, .hero__actions .button,
  .card-actions .button, .pilot-actions .button { width: 100%; }
  h1 { font-size: 3rem; }
}
