
:root {
  --ink: #102033;
  --text: #24364c;
  --muted: #657489;
  --soft: #f6f9fc;
  --soft2: #eef7f8;
  --white: #ffffff;
  --teal: #079b9a;
  --cyan: #37c7d4;
  --blue: #123e7c;
  --gold: #d6ad57;
  --line: rgba(16, 32, 51, .11);
  --shadow: 0 24px 70px rgba(16, 32, 51, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fff;
}
a { color: inherit; }
.p-site { min-height: 100vh; background: #fff; }
.p-wrap { width: min(1180px, calc(100% - 44px)); margin: 0 auto; }

/* Header */
.p-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  margin: 0;
  padding: 16px clamp(22px, 5vw, 56px);
  border-bottom: 1px solid rgba(16,32,51,.08);
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.p-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 220px;
}
.p-brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(7,155,154,.16));
}
.p-brand strong {
  display: block;
  color: var(--blue);
  font-size: 1.06rem;
  letter-spacing: -.02em;
}
.p-brand small {
  display: block;
  color: var(--muted);
  font-size: .7rem;
  line-height: 1.1;
  font-weight: 600;
  text-transform: none;
  letter-spacing: .01em;
}

.page-how-it-works .p-section:not(.flow-section) .p-card:nth-child(3) p {
  font-size: .8rem !important;
  letter-spacing: -.01em !important;
}
.p-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
  flex-wrap: wrap;
}
.p-nav a {
  padding: 9px 11px;
  border-radius: 999px;
  color: #41536a;
  font-size: .82rem;
  font-weight: 760;
  text-decoration: none;
}
.p-nav a:hover,
.p-nav a[aria-current="page"] {
  color: var(--blue);
  background: #edf8f8;
}

/* Hero */
.p-hero {
  position: relative;
  padding: 86px 0 74px;
  min-height: auto;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 20%, rgba(55,199,212,.16), transparent 28%),
    radial-gradient(circle at 8% 8%, rgba(214,173,87,.12), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f7fbfc 100%);
}
.p-hero:after { display: none; }

.p-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(360px, .92fr);
  align-items: center;
  gap: clamp(42px, 7vw, 92px);
}
.p-pill {
  display: inline-flex;
  width: max-content;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--teal);
  background: #eafafa;
  border: 1.5px solid rgba(7,155,154,.22);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.p-hero h1 {
  margin: 20px 0 22px;
  max-width: 780px;
  font-size: clamp(2.65rem, 5vw, 4.85rem);
  line-height: 1.02;
  letter-spacing: -.058em;
  color: #102033;
}
.p-hero-copy p {
  max-width: 650px;
  margin: 0;
  color: #52647a;
  font-size: clamp(1.05rem, 1.45vw, 1.22rem);
  line-height: 1.72;
}
.p-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.p-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 820;
  text-decoration: none;
}
.p-btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #0f3d72, #079b9a);
  box-shadow: 0 16px 38px rgba(7,155,154,.22);
}
.p-btn-secondary {
  color: var(--blue);
  background: #fff;
  border: 1px solid rgba(18,62,124,.16);
  box-shadow: 0 14px 34px rgba(16,32,51,.07);
}





/* Hero visual */
.p-visual {
  position: relative;
  min-height: 470px;
  display: grid;
  place-items: center;
}

.p-curve {
  position: absolute;
  border-radius: 999px;
  border: 1.5px solid rgba(7,155,154,.22);
}

.curve-a {
  width: 610px;
  height: 288px;
  transform: rotate(12deg);
}

.curve-b {
  width: 405px;
  height: 214px;
  transform: rotate(-18deg);
}

.curve-c {
  width: 610px;
  height: 365px;
  border-color: rgba(214,173,87,.22);
}

.p-soft-node,
.p-float-card {
  display: none !important;
}

.p-mini-brand {
  position: relative;
  z-index: 5;
  width: 330px;
  height: 330px;
  display: grid;
  place-items: center;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.p-mini-brand::before {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(7,155,154,.08), transparent 70%);
  z-index: -1;
}

.p-mini-brand img {
  width: 270px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 28px rgba(0,65,80,.22));
}


/* Sections */
.p-section {
  padding: 46px 0;
  background: #fff;
  border-top: 1px solid rgba(16,32,51,.045);
}

.p-section:nth-child(even) {
  background: linear-gradient(180deg, #fbfdfe 0%, #ffffff 100%);
}

.p-section-dark {
  background: linear-gradient(180deg, #ffffff 0%, #f8fcfd 100%);
}

.p-section-grid {
  display: grid;
  grid-template-columns: 360px 620px;
  justify-content: center;
  align-items: center;
  gap: 58px;
}

.p-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #079b9a;
  background: #eafafa;
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.p-section h2 {
  margin: 0 0 12px;
  max-width: 360px;
  font-size: clamp(1.9rem, 2.8vw, 2.65rem);
  line-height: 1.04;
  letter-spacing: -.045em;
  color: #102033;
}

.p-section-copy p {
  max-width: 360px;
  margin: 0;
  color: #64758a;
  font-size: .98rem;
  line-height: 1.55;
}

.p-card-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  width: 620px;
  max-width: 620px;
}

.p-card {
  position: relative;
  width: 620px;
  min-height: 76px;
  padding: 18px 22px;
  border-radius: 18px;
  border: 1px solid rgba(16,32,51,.09);
  background: rgba(255,255,255,.78);
  box-shadow: 0 10px 24px rgba(16,32,51,.04);
}

.p-card::before {
  content: none !important;
}

.p-card h3 {
  margin: 0;
  color: #123e7c;
  font-size: 1rem;
  letter-spacing: -.02em;
}

.p-card p {
  margin: 5px 0 0;
  color: #66758a;
  line-height: 1.45;
  font-size: .92rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Flow treatment for first section only */
.p-section:first-of-type .p-card-grid {
  padding-left: 34px;
}

.p-section:first-of-type .p-card-grid::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 38px;
  bottom: 38px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, #079b9a, #37c7d4);
  opacity: .45;
}

.p-section:first-of-type .p-card-grid::after {
  content: "";
  position: absolute;
  left: 3px;
  bottom: 31px;
  width: 15px;
  height: 15px;
  border-right: 2px solid #079b9a;
  border-bottom: 2px solid #079b9a;
  transform: rotate(45deg);
  opacity: .75;
}

.p-section:first-of-type .p-card {
  width: 586px;
  padding-left: 22px;
}

@media (max-width: 980px) {
  .p-section-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .p-card-grid,
  .p-card,
  .p-section:first-of-type .p-card {
    width: 100%;
    max-width: 100%;
  }

  .p-section:first-of-type .p-card-grid {
    padding-left: 28px;
  }
}
/* Footer */
.p-footer {
  padding: 62px 0;
  color: #53657b;
  background: #f7fbfc;
  border-top: 1px solid rgba(16,32,51,.08);
}
.p-footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(150px, .7fr));
  gap: 34px;
}
.p-footer img {
  width: 74px;
  height: auto;
  margin-bottom: 14px;
}
.p-footer p {
  max-width: 430px;
  line-height: 1.7;
}
.p-footer strong {
  display: block;
  color: var(--blue);
  margin-bottom: 12px;
}
.p-footer a {
  display: block;
  color: #607086;
  text-decoration: none;
  margin: 9px 0;
}
.p-footer a:hover { color: var(--teal); }

@media (max-width: 980px) {
  .p-header {
    position: relative;
    flex-direction: column;
    align-items: flex-start;
  }
  .p-nav {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    width: 100%;
    padding-bottom: 2px;
  }
  .p-nav a { white-space: nowrap; }
  .p-hero-grid, .p-section-grid, .p-footer-grid {
    grid-template-columns: 1fr;
  }
  .p-card-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
  .p-hero { padding-top: 58px; }
}
@media (max-width: 640px) {
  .p-wrap { width: min(100% - 24px, 1180px); }
  .p-header { padding: 14px 12px; }
  .p-hero h1 { font-size: clamp(2.4rem, 13vw, 3.7rem); }
  .p-visual { min-height: 470px; }
  .p-card-grid { grid-template-columns: 1fr; }
  .p-float-a { left: 0; top: 34px; }
  .p-float-b { right: 0; top: auto; bottom: 78px; }
  .p-float-c { left: 0; bottom: 18px; }
}


.p-section + .p-section {
  border-top: 1px solid rgba(16,32,51,.05);
}


.p-section:first-of-type .p-card-grid {
  position: relative;
}

.p-section:first-of-type .p-card-grid::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 42px;
  bottom: 42px;
  width: 2px;
  background: linear-gradient(180deg, #079b9a, #37c7d4);
  opacity: .45;
}

.p-section:first-of-type .p-card-grid::after {
  content: "";
  position: absolute;
  left: 21px;
  bottom: 35px;
  width: 16px;
  height: 16px;
  border-right: 2px solid #079b9a;
  border-bottom: 2px solid #079b9a;
  transform: rotate(45deg);
  opacity: .75;
}

.p-section:first-of-type .p-card {
  padding-left: 64px;
}

.p-section:first-of-type .p-card::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  transform: translateY(-50%);
  background: #ffffff;
  border: 3px solid #079b9a;
  box-shadow: 0 0 0 6px rgba(7,155,154,.08);
  z-index: 2;
}

/* How It Works flow connector */
.page-how-it-works .p-section:first-of-type .p-card-grid {
  position: relative;
  padding-left: 42px;
}

.page-how-it-works .p-section:first-of-type .p-card-grid::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 34px;
  bottom: 34px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, #079b9a, #37c7d4);
  opacity: .75;
}

.page-how-it-works .p-section:first-of-type .p-card-grid::after {
  content: "";
  position: absolute;
  left: 7px;
  bottom: 26px;
  width: 16px;
  height: 16px;
  border-right: 3px solid #079b9a;
  border-bottom: 3px solid #079b9a;
  transform: rotate(45deg);
  opacity: .9;
}

.page-how-it-works .p-section:first-of-type .p-card {
  width: 578px;
}

.page-how-it-works .p-section:first-of-type .p-card::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  transform: translateY(-50%);
  background: #fff;
  border: 3px solid #079b9a;
  box-shadow: 0 0 0 6px rgba(7,155,154,.08);
}

.page-how-it-works .p-section:first-of-type .p-card h3 {
  font-size: 0;
}

.page-how-it-works .p-section:first-of-type .p-card h3::after {
  font-size: 1rem;
}

.page-how-it-works .p-section:first-of-type .p-card:nth-child(1) h3::after { content: "Buyers join"; }
.page-how-it-works .p-section:first-of-type .p-card:nth-child(2) h3::after { content: "Demand forms"; }
.page-how-it-works .p-section:first-of-type .p-card:nth-child(3) h3::after { content: "Sellers compete"; }
.page-how-it-works .p-section:first-of-type .p-card:nth-child(4) h3::after { content: "Final handshake"; }



/* Peddlo how-it-works flow connector override */
.page-how-it-works .p-section:first-of-type .p-card-grid {
  position: relative;
  padding-left: 42px;
}

.page-how-it-works .p-section:first-of-type .p-card-grid::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 34px;
  bottom: 34px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, #079b9a, #37c7d4);
  opacity: .78;
}

.page-how-it-works .p-section:first-of-type .p-card-grid::after {
  content: "";
  position: absolute;
  left: 7px;
  bottom: 26px;
  width: 16px;
  height: 16px;
  border-right: 3px solid #079b9a;
  border-bottom: 3px solid #079b9a;
  transform: rotate(45deg);
  opacity: .95;
}

.page-how-it-works .p-section:first-of-type .p-card {
  width: 578px;
}

.page-how-it-works .p-section:first-of-type .p-card::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  transform: translateY(-50%);
  background: #fff;
  border: 3px solid #079b9a;
  box-shadow: 0 0 0 6px rgba(7,155,154,.08);
}

.page-how-it-works .p-section:first-of-type .p-card h3 {
  font-size: 0;
}

.page-how-it-works .p-section:first-of-type .p-card h3::after {
  font-size: 1rem;
}

.page-how-it-works .p-section:first-of-type .p-card:nth-child(1) h3::after { content: "Buyers join"; }
.page-how-it-works .p-section:first-of-type .p-card:nth-child(2) h3::after { content: "Demand forms"; }
.page-how-it-works .p-section:first-of-type .p-card:nth-child(3) h3::after { content: "Sellers compete"; }
.page-how-it-works .p-section:first-of-type .p-card:nth-child(4) h3::after { content: "Final handshake"; }

.page-how-it-works .p-section:not(:first-of-type) .p-card p {
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
}


/* HARD HOW-IT-WORKS FLOW FIX */
.page-how-it-works .p-section:first-of-type .p-kicker {
  display: none !important;
}

.page-how-it-works .p-section:first-of-type .p-card-grid {
  position: relative !important;
  padding-left: 46px !important;
}

.page-how-it-works .p-section:first-of-type .p-card-grid::before {
  content: "" !important;
  position: absolute !important;
  left: 16px !important;
  top: 40px !important;
  bottom: 40px !important;
  width: 3px !important;
  border-radius: 999px !important;
  background: linear-gradient(180deg, #079b9a, #37c7d4) !important;
  opacity: .85 !important;
}

.page-how-it-works .p-section:first-of-type .p-card-grid::after {
  content: "" !important;
  position: absolute !important;
  left: 8px !important;
  bottom: 30px !important;
  width: 17px !important;
  height: 17px !important;
  border-right: 3px solid #079b9a !important;
  border-bottom: 3px solid #079b9a !important;
  transform: rotate(45deg) !important;
  opacity: .95 !important;
}

.page-how-it-works .p-section:first-of-type .p-card {
  width: 574px !important;
}

.page-how-it-works .p-section:first-of-type .p-card::before {
  content: "" !important;
  position: absolute !important;
  left: -38px !important;
  top: 50% !important;
  width: 14px !important;
  height: 14px !important;
  border-radius: 999px !important;
  transform: translateY(-50%) !important;
  background: #fff !important;
  border: 3px solid #079b9a !important;
  box-shadow: 0 0 0 6px rgba(7,155,154,.08) !important;
  z-index: 2 !important;
}


/* FINAL FLOW SECTION OVERRIDE */
main > .p-section:first-of-type .p-kicker {
  display: none !important;
}

main > .p-section:first-of-type .p-card-grid {
  position: relative !important;
  padding-left: 48px !important;
}

main > .p-section:first-of-type .p-card-grid::before {
  content: "" !important;
  position: absolute !important;
  left: 17px !important;
  top: 38px !important;
  bottom: 38px !important;
  width: 3px !important;
  border-radius: 999px !important;
  background: linear-gradient(180deg, #079b9a, #37c7d4) !important;
}

main > .p-section:first-of-type .p-card-grid::after {
  content: "" !important;
  position: absolute !important;
  left: 9px !important;
  bottom: 30px !important;
  width: 16px !important;
  height: 16px !important;
  border-right: 3px solid #079b9a !important;
  border-bottom: 3px solid #079b9a !important;
  transform: rotate(45deg) !important;
}

main > .p-section:first-of-type .p-card {
  width: 572px !important;
}

main > .p-section:first-of-type .p-card::before {
  content: "" !important;
  position: absolute !important;
  left: -39px !important;
  top: 50% !important;
  width: 14px !important;
  height: 14px !important;
  border-radius: 999px !important;
  transform: translateY(-50%) !important;
  background: #fff !important;
  border: 3px solid #079b9a !important;
  box-shadow: 0 0 0 6px rgba(7,155,154,.08) !important;
  z-index: 5 !important;
}

/* CORRECTED FLOW LINE: first content section after hero */
main > .p-section:nth-of-type(2) .p-kicker {
  display: none !important;
}

main > .p-section:nth-of-type(2) .p-card-grid {
  position: relative !important;
  padding-left: 54px !important;
}

main > .p-section:nth-of-type(2) .p-card-grid::before {
  content: "" !important;
  position: absolute !important;
  left: 20px !important;
  top: 36px !important;
  bottom: 36px !important;
  width: 4px !important;
  border-radius: 999px !important;
  background: linear-gradient(180deg, #079b9a, #37c7d4) !important;
  z-index: 1 !important;
}

main > .p-section:nth-of-type(2) .p-card-grid::after {
  content: "" !important;
  position: absolute !important;
  left: 10px !important;
  bottom: 26px !important;
  width: 20px !important;
  height: 20px !important;
  border-right: 4px solid #079b9a !important;
  border-bottom: 4px solid #079b9a !important;
  transform: rotate(45deg) !important;
  z-index: 2 !important;
}

main > .p-section:nth-of-type(2) .p-card {
  width: 566px !important;
  position: relative !important;
}

main > .p-section:nth-of-type(2) .p-card::before {
  content: "" !important;
  position: absolute !important;
  left: -42px !important;
  top: 50% !important;
  width: 16px !important;
  height: 16px !important;
  border-radius: 999px !important;
  transform: translateY(-50%) !important;
  background: #ffffff !important;
  border: 4px solid #079b9a !important;
  box-shadow: 0 0 0 7px rgba(7,155,154,.10) !important;
  z-index: 5 !important;
}


/* REAL FLOW SECTION TARGET */
.flow-section .p-kicker {
  display: none !important;
}

.flow-section .p-card-grid {
  position: relative !important;
  padding-left: 56px !important;
}

.flow-section .p-card-grid::before {
  content: "" !important;
  position: absolute !important;
  left: 20px !important;
  top: 38px !important;
  bottom: 38px !important;
  width: 4px !important;
  border-radius: 999px !important;
  background: linear-gradient(180deg, #079b9a, #37c7d4) !important;
  opacity: .9 !important;
  z-index: 1 !important;
}

.flow-section .p-card-grid::after {
  content: "" !important;
  position: absolute !important;
  left: 10px !important;
  bottom: 28px !important;
  width: 20px !important;
  height: 20px !important;
  border-right: 4px solid #079b9a !important;
  border-bottom: 4px solid #079b9a !important;
  transform: rotate(45deg) !important;
  z-index: 2 !important;
}

.flow-section .p-card {
  width: 564px !important;
  position: relative !important;
}

.flow-section .p-card::before {
  content: "" !important;
  position: absolute !important;
  left: -44px !important;
  top: 50% !important;
  width: 16px !important;
  height: 16px !important;
  border-radius: 999px !important;
  transform: translateY(-50%) !important;
  background: #ffffff !important;
  border: 4px solid #079b9a !important;
  box-shadow: 0 0 0 7px rgba(7,155,154,.10) !important;
  z-index: 5 !important;
}


/* ZIGZAG FLOW CONNECTOR - replaces vertical process line */
.flow-section .p-card-grid {
  position: relative !important;
  padding-left: 0 !important;
  width: 620px !important;
  max-width: 620px !important;
  gap: 18px !important;
}

.flow-section .p-card-grid::before,
.flow-section .p-card-grid::after {
  content: none !important;
  display: none !important;
}

.flow-section .p-card {
  width: 620px !important;
  min-height: 76px !important;
  padding: 18px 24px !important;
  overflow: visible !important;
  position: relative !important;
}

.flow-section .p-card::before {
  content: none !important;
  display: none !important;
}

/* right-side zigzag line from one tile into the next */
.flow-section .p-card:not(:last-child)::after {
  content: "" !important;
  position: absolute !important;
  right: -58px !important;
  top: 50% !important;
  width: 58px !important;
  height: calc(100% + 18px) !important;
  background-repeat: no-repeat !important;
  background-size: 100% 100% !important;
  background-image: url("data:image/svg+xml,%3Csvg width='58' height='96' viewBox='0 0 58 96' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 2 H42 Q50 2 50 10 V86 Q50 94 42 94 H7' fill='none' stroke='%23079b9a' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M8 88 L1 94 L8 100' fill='none' stroke='%23079b9a' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  opacity: .58 !important;
  pointer-events: none !important;
}

.flow-section .p-card h3 {
  margin-bottom: 4px !important;
}

.flow-section .p-card p {
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

@media (max-width: 980px) {
  .flow-section .p-card-grid,
  .flow-section .p-card {
    width: 100% !important;
    max-width: 100% !important;
  }

  .flow-section .p-card:not(:last-child)::after {
    display: none !important;
  }
}

/* SKETCH-STYLE FLOW LINES FOR THE FLOW SECTION */
.flow-section .p-kicker {
  display: none !important;
}

.flow-section .p-card-grid {
  position: relative !important;
  width: 620px !important;
  max-width: 620px !important;
  padding-left: 0 !important;
  gap: 18px !important;
  overflow: visible !important;
}

/* kill all old vertical-line attempts */
.flow-section .p-card-grid::before,
.flow-section .p-card-grid::after,
.flow-section .p-card::before {
  content: none !important;
  display: none !important;
}

.flow-section .p-card {
  position: relative !important;
  width: 620px !important;
  min-height: 76px !important;
  padding: 18px 26px !important;
  overflow: visible !important;
  z-index: 2 !important;
}

/* rounded external connector from each tile to the next */
.flow-section .p-card:not(:last-child)::after {
  content: "" !important;
  position: absolute !important;
  right: -112px !important;
  top: 31px !important;
  width: 132px !important;
  height: 96px !important;
  background-repeat: no-repeat !important;
  background-size: 132px 96px !important;
  background-image: url("data:image/svg+xml,%3Csvg width='132' height='96' viewBox='0 0 132 96' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 8 H92 C114 8 124 20 124 38 V58 C124 78 112 88 92 88 H8' fill='none' stroke='%23079b9a' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round' opacity='.68'/%3E%3Cpath d='M13 80 L3 88 L13 96' fill='none' stroke='%23079b9a' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round' opacity='.78'/%3E%3C/svg%3E") !important;
  pointer-events: none !important;
  z-index: 1 !important;
}

/* make text clean and compact */
.flow-section .p-card h3 {
  margin-bottom: 4px !important;
}

.flow-section .p-card p {
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

/* mobile: remove complex connector */
@media (max-width: 980px) {
  .flow-section .p-card-grid,
  .flow-section .p-card {
    width: 100% !important;
    max-width: 100% !important;
  }

  .flow-section .p-card:not(:last-child)::after {
    display: none !important;
  }
}

/* SKETCH-MATCH FLOW: line runs between tiles, not outside them */
.flow-section .p-card-grid {
  position: relative !important;
  width: 620px !important;
  max-width: 620px !important;
  padding-left: 0 !important;
  gap: 42px !important;
  overflow: visible !important;
}

.flow-section .p-card-grid::before,
.flow-section .p-card-grid::after,
.flow-section .p-card::before,
.flow-section .p-card::after {
  content: none !important;
  display: none !important;
}

.flow-section .p-card {
  position: relative !important;
  width: 620px !important;
  min-height: 76px !important;
  padding: 18px 26px !important;
  overflow: visible !important;
  z-index: 4 !important;
}

/* connector between tile 1 and 2 */
.flow-section .p-card:nth-child(1)::after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  left: 22px !important;
  right: 22px !important;
  bottom: -31px !important;
  height: 30px !important;
  border-left: 2px solid #079b9a !important;
  border-bottom: 2px solid #079b9a !important;
  border-bottom-left-radius: 22px !important;
  opacity: .62 !important;
  z-index: 2 !important;
}

/* connector between tile 2 and 3 */
.flow-section .p-card:nth-child(2)::after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  left: 22px !important;
  right: 22px !important;
  bottom: -31px !important;
  height: 30px !important;
  border-right: 2px solid #079b9a !important;
  border-bottom: 2px solid #079b9a !important;
  border-bottom-right-radius: 22px !important;
  opacity: .62 !important;
  z-index: 2 !important;
}

/* connector between tile 3 and 4 */
.flow-section .p-card:nth-child(3)::after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  left: 22px !important;
  right: 22px !important;
  bottom: -31px !important;
  height: 30px !important;
  border-left: 2px solid #079b9a !important;
  border-bottom: 2px solid #079b9a !important;
  border-bottom-left-radius: 22px !important;
  opacity: .62 !important;
  z-index: 2 !important;
}


.flow-section .p-card:nth-child(2)::before {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  left: 50% !important;
  bottom: -37px !important;
  width: 15px !important;
  height: 15px !important;
  border-left: 2px solid #079b9a !important;
  border-bottom: 2px solid #079b9a !important;
  transform: translateX(-50%) rotate(-45deg) !important;
  opacity: .8 !important;
  z-index: 5 !important;
}

.flow-section .p-card h3 {
  margin-bottom: 4px !important;
}

.flow-section .p-card p {
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

@media (max-width: 980px) {
  .flow-section .p-card-grid,
  .flow-section .p-card {
    width: 100% !important;
    max-width: 100% !important;
  }

  .flow-section .p-card::after,
  .flow-section .p-card::before {
    display: none !important;
  }
}

/* FINAL FIX: clean sketch-style connector BETWEEN tiles */
.flow-section .p-card-grid {
  position: relative !important;
  width: 620px !important;
  max-width: 620px !important;
  gap: 46px !important;
  padding-left: 0 !important;
  overflow: visible !important;
}

.flow-section .p-card {
  position: relative !important;
  width: 620px !important;
  min-height: 76px !important;
  padding: 18px 26px !important;
  overflow: visible !important;
  z-index: 3 !important;
}

/* kill every previous dot / vertical / bad underline attempt */
.flow-section .p-card-grid::before,
.flow-section .p-card-grid::after,
.flow-section .p-card::before,
.flow-section .p-card::after {
  content: none !important;
  display: none !important;
  background: none !important;
  background-image: none !important;
  border: 0 !important;
  box-shadow: none !important;
}

/* connector from tile 1 to tile 2 */
.flow-section .p-card:nth-child(1)::after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  left: 14px !important;
  right: 14px !important;
  top: calc(100% + 8px) !important;
  height: 30px !important;
  border-top: 2px solid rgba(7,155,154,.55) !important;
  border-left: 2px solid rgba(7,155,154,.55) !important;
  border-right: 2px solid rgba(7,155,154,.55) !important;
  border-radius: 22px 22px 0 0 !important;
  pointer-events: none !important;
  z-index: 1 !important;
}

/* connector from tile 2 to tile 3 */
.flow-section .p-card:nth-child(2)::after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  left: 14px !important;
  right: 14px !important;
  top: calc(100% + 8px) !important;
  height: 30px !important;
  border-top: 2px solid rgba(7,155,154,.55) !important;
  border-left: 2px solid rgba(7,155,154,.55) !important;
  border-right: 2px solid rgba(7,155,154,.55) !important;
  border-radius: 22px 22px 0 0 !important;
  pointer-events: none !important;
  z-index: 1 !important;
}

/* connector from tile 3 to tile 4 */
.flow-section .p-card:nth-child(3)::after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  left: 14px !important;
  right: 14px !important;
  top: calc(100% + 8px) !important;
  height: 30px !important;
  border-top: 2px solid rgba(7,155,154,.55) !important;
  border-left: 2px solid rgba(7,155,154,.55) !important;
  border-right: 2px solid rgba(7,155,154,.55) !important;
  border-radius: 22px 22px 0 0 !important;
  pointer-events: none !important;
  z-index: 1 !important;
}


.flow-section .p-card:nth-child(2)::before {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  left: 50% !important;
  top: calc(100% + 1px) !important;
  width: 13px !important;
  height: 13px !important;
  border-left: 2px solid rgba(7,155,154,.75) !important;
  border-bottom: 2px solid rgba(7,155,154,.75) !important;
  transform: translateX(-50%) rotate(-45deg) !important;
  background: transparent !important;
  pointer-events: none !important;
  z-index: 2 !important;
}

.flow-section .p-card h3,
.flow-section .p-card p {
  position: relative !important;
  z-index: 5 !important;
}

.flow-section .p-card p {
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

@media (max-width: 980px) {
  .flow-section .p-card-grid,
  .flow-section .p-card {
    width: 100% !important;
    max-width: 100% !important;
  }

  .flow-section .p-card::before,
  .flow-section .p-card::after {
    display: none !important;
    content: none !important;
  }
}

/* REMOVE ALL FLOW GREEN LINES / DOTS / ARROWS */
.flow-section .p-card-grid::before,
.flow-section .p-card-grid::after,
.flow-section .p-card::before,
.flow-section .p-card::after {
  content: none !important;
  display: none !important;
  background: none !important;
  background-image: none !important;
  border: 0 !important;
  box-shadow: none !important;
}

.flow-section .p-card-grid {
  padding-left: 0 !important;
  gap: 14px !important;
}

.flow-section .p-card {
  width: 620px !important;
  padding: 18px 26px !important;
}


/* NUCLEAR RESET: REMOVE EVERY FLOW GREEN LINE / DOT / CURVE */
.flow-section,
.flow-section * {
  outline: none !important;
}

.flow-section .p-card-grid {
  padding-left: 0 !important;
  gap: 14px !important;
}

.flow-section .p-card-grid::before,
.flow-section .p-card-grid::after,
.flow-section .p-card::before,
.flow-section .p-card::after,
.flow-section .p-card:nth-child(1)::before,
.flow-section .p-card:nth-child(1)::after,
.flow-section .p-card:nth-child(2)::before,
.flow-section .p-card:nth-child(2)::after,
.flow-section .p-card:nth-child(3)::before,
.flow-section .p-card:nth-child(3)::after,
.flow-section .p-card:nth-child(4)::before,
.flow-section .p-card:nth-child(4)::after {
  content: "" !important;
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  bottom: auto !important;
  background: transparent !important;
  background-image: none !important;
  border: 0 !important;
  border-left: 0 !important;
  border-right: 0 !important;
  border-top: 0 !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
  transform: none !important;
}

.flow-section .p-card {
  width: 620px !important;
  padding: 18px 26px !important;
  overflow: hidden !important;
}


/* SIMPLE ELEGANT STEP CONNECTORS */
.flow-section .p-card-grid {
  gap: 34px !important;
  overflow: visible !important;
}

.flow-section .p-card {
  position: relative !important;
  overflow: visible !important;
}

/* clear old connector junk */
.flow-section .p-card-grid::before,
.flow-section .p-card-grid::after,
.flow-section .p-card::before {
  content: none !important;
  display: none !important;
}


.flow-section .p-card:not(:last-child)::after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  left: 50% !important;
  bottom: -31px !important;
  width: 2px !important;
  height: 28px !important;
  transform: translateX(-50%) !important;
  background: linear-gradient(180deg, rgba(7,155,154,.15), rgba(7,155,154,.72)) !important;
  border: 0 !important;
  border-radius: 999px !important;
  box-shadow: none !important;
  opacity: 1 !important;
}


.flow-section .p-card:not(:last-child) h3::after {
  content: "" !important;
  position: absolute !important;
  left: 50% !important;
  bottom: -34px !important;
  width: 9px !important;
  height: 9px !important;
  border-right: 2px solid rgba(7,155,154,.72) !important;
  border-bottom: 2px solid rgba(7,155,154,.72) !important;
  transform: translateX(-50%) rotate(45deg) !important;
}

.flow-section .p-card h3 {
  position: relative !important;
}


/* REMOVE ARROWHEADS: KEEP ONLY SUBTLE CARD-TO-CARD CONNECTING LINE */
.flow-section .p-card:not(:last-child) h3::after {
  content: none !important;
  display: none !important;
}

.flow-section .p-card:not(:last-child)::after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  left: 50% !important;
  bottom: -34px !important;
  width: 1.5px !important;
  height: 34px !important;
  transform: translateX(-50%) !important;
  background: linear-gradient(180deg, rgba(7,155,154,.18), rgba(7,155,154,.48), rgba(7,155,154,.18)) !important;
  border: 0 !important;
  border-radius: 999px !important;
  box-shadow: none !important;
  opacity: .75 !important;
}


/* REAL CONNECTOR ELEMENTS BETWEEN FLOW TILES */
.flow-section .p-kicker {
  display: none !important;
}

.flow-section .p-card-grid {
  width: 620px !important;
  max-width: 620px !important;
  gap: 0 !important;
  padding-left: 0 !important;
  overflow: visible !important;
}

.flow-section .p-card {
  width: 620px !important;
  min-height: 76px !important;
  padding: 18px 26px !important;
  overflow: hidden !important;
}

.flow-section .p-card::before,
.flow-section .p-card::after,
.flow-section .p-card-grid::before,
.flow-section .p-card-grid::after,
.flow-section .p-card h3::after {
  content: none !important;
  display: none !important;
}

.flow-connector {
  display: block !important;
  position: relative !important;
  width: 620px !important;
  height: 34px !important;
}





@media (max-width: 980px) {
  .flow-section .p-card-grid,
  .flow-section .p-card,
  .flow-connector {
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* RESTORE TILE SPACING WHILE KEEPING SIMPLE CONNECTORS */
.flow-section .p-card-grid {
  gap: 28px !important;
}

.flow-connector {
  display: block !important;
  height: 28px !important;
  width: 620px !important;
  position: relative !important;
}






/* REDUCE FLOW SPACING TO MATCH LOWER SECTION TILES */
.flow-section .p-card-grid {
  gap: 14px !important;
}

.flow-connector {
  height: 14px !important;
}






/* REMOVE FLOW ARROWS + RESTORE NORMAL TILE SPACING */
.flow-connector {
  display: none !important;
}

/* Homepage purpose section */
.market-power {
  padding: 58px 0 52px;
  background:
    radial-gradient(circle at 82% 12%, rgba(55,199,212,.09), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #fbfdfe 100%);
  border-top: 1px solid rgba(16,32,51,.055);
  border-bottom: 1px solid rgba(16,32,51,.055);
}

.market-power-grid {
  display: grid;
  grid-template-columns: minmax(280px, 430px) minmax(0, 620px);
  justify-content: center;
  align-items: center;
  gap: clamp(34px, 6vw, 78px);
}

.market-power-copy h2 {
  margin: 0 0 16px;
  max-width: 430px;
  color: #102033;
  font-size: clamp(2rem, 3.4vw, 3.25rem);
  line-height: 1.04;
  letter-spacing: -.045em;
}

.market-power-copy p {
  max-width: 430px;
  margin: 0;
  color: #53667c;
  font-size: 1.03rem;
  line-height: 1.72;
}

.market-power-cards {
  display: grid;
  gap: 14px;
}

.market-power-cards article {
  padding: 22px 24px;
  border: 1px solid rgba(16,32,51,.085);
  border-radius: 18px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 16px 42px rgba(16,32,51,.055);
}

.market-power-cards h3 {
  margin: 0;
  color: var(--blue);
  font-size: 1.02rem;
  letter-spacing: -.02em;
}

.market-power-cards p {
  margin: 7px 0 0;
  color: #657489;
  font-size: .95rem;
  line-height: 1.55;
}

.market-power-statement {
  max-width: 760px;
  margin: 40px auto 0;
  padding: 24px 28px;
  color: #102033;
  text-align: center;
  font-size: clamp(1.35rem, 2.1vw, 1.85rem);
  font-weight: 760;
  line-height: 1.18;
  letter-spacing: -.035em;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(234,250,250,.9), rgba(255,255,255,.96));
  border: 1px solid rgba(7,155,154,.14);
  box-shadow: 0 18px 48px rgba(16,32,51,.055);
}

@media (max-width: 980px) {
  .market-power-grid {
    grid-template-columns: 1fr;
  }

  .market-power-cards {
    grid-template-columns: 1fr;
  }
}

.flow-section .p-card-grid {
  gap: 18px !important;
}

.flow-section .p-card {
  margin: 0 !important;
}


/* FINAL CLEAN FLOW SECTION RESET */
.flow-connector {
  display: none !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.flow-section .p-kicker {
  display: none !important;
}

.flow-section .p-card-grid {
  gap: 14px !important;
  padding-left: 0 !important;
}

.flow-section .p-card {
  width: 620px !important;
  min-height: 76px !important;
  padding: 18px 26px !important;
  margin: 0 !important;
  overflow: hidden !important;
}

.flow-section .p-card::before,
.flow-section .p-card::after,
.flow-section .p-card h3::after,
.flow-section .p-card-grid::before,
.flow-section .p-card-grid::after {
  content: none !important;
  display: none !important;
}


/* EQUALISE CARD SPACING ACROSS LOWER SECTIONS */
.p-card-grid,
.flow-section .p-card-grid {
  gap: 14px !important;
}

.p-card,
.flow-section .p-card {
  min-height: 76px !important;
  padding: 18px 26px !important;
  margin: 0 !important;
}


/* REMOVE SECTION NUMBER BADGES */
.p-section .p-kicker {
  display: none !important;
}



/* FINAL CARD SIZE CONSISTENCY */
.p-card-grid,
.flow-section .p-card-grid {
  width: 620px !important;
  max-width: 620px !important;
  gap: 14px !important;
}

.p-card,
.flow-section .p-card {
  width: 620px !important;
  min-height: 76px !important;
  max-height: 76px !important;
  padding: 17px 26px !important;
  margin: 0 !important;
  overflow: hidden !important;
}

.p-card h3,
.flow-section .p-card h3 {
  margin: 0 0 5px !important;
  font-size: 1rem !important;
  line-height: 1.15 !important;
}

.p-card p,
.flow-section .p-card p {
  margin: 0 !important;
  font-size: .92rem !important;
  line-height: 1.35 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

/* TIGHTEN HOW-IT-WORKS PAGE VERTICAL RHYTHM */
.page-how-it-works .p-section {
  padding: 28px 0 !important;
}

.page-how-it-works .p-section-grid {
  align-items: center !important;
}

.page-how-it-works .p-section + .p-section {
  margin-top: 0 !important;
}

.page-how-it-works .p-card-grid {
  gap: 14px !important;
}

.page-how-it-works .p-section-copy h2 {
  margin-bottom: 10px !important;
}

.page-how-it-works .p-section-copy p {
  margin-bottom: 0 !important;
}


/* TIGHTEN HOW-IT-WORKS PAGE VERTICAL RHYTHM */
.page-how-it-works .p-section {
  padding: 28px 0 !important;
}

.page-how-it-works .p-section-grid {
  align-items: center !important;
}

.page-how-it-works .p-section + .p-section {
  margin-top: 0 !important;
}

.page-how-it-works .p-card-grid {
  gap: 14px !important;
}

.page-how-it-works .p-section-copy h2 {
  margin-bottom: 10px !important;
}

.page-how-it-works .p-section-copy p {
  margin-bottom: 0 !important;
}


/* TIGHTEN HOW-IT-WORKS PAGE VERTICAL RHYTHM */
.page-how-it-works .p-section {
  padding: 28px 0 !important;
}

.page-how-it-works .p-section-grid {
  align-items: center !important;
}

.page-how-it-works .p-section + .p-section {
  margin-top: 0 !important;
}

.page-how-it-works .p-card-grid {
  gap: 14px !important;
}

.page-how-it-works .p-section-copy h2 {
  margin-bottom: 10px !important;
}

.page-how-it-works .p-section-copy p {
  margin-bottom: 0 !important;
}


/* FORCE HOW-IT-WORKS CARD UNIFORMITY */
.page-how-it-works .p-card-grid,
.page-how-it-works .flow-section .p-card-grid {
  width: 600px !important;
  max-width: 600px !important;
  min-width: 600px !important;
  gap: 14px !important;
}

.page-how-it-works .p-card,
.page-how-it-works .flow-section .p-card {
  width: 600px !important;
  max-width: 600px !important;
  min-width: 600px !important;
  height: 76px !important;
  min-height: 76px !important;
  max-height: 76px !important;
  padding: 17px 26px !important;
  margin: 0 !important;
  overflow: hidden !important;
}

.page-how-it-works .p-card h3,
.page-how-it-works .flow-section .p-card h3 {
  margin: 0 0 5px !important;
  font-size: 1rem !important;
  line-height: 1.15 !important;
}

.page-how-it-works .p-card p,
.page-how-it-works .flow-section .p-card p {
  margin: 0 !important;
  font-size: .92rem !important;
  line-height: 1.35 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

@media (max-width: 980px) {
  .page-how-it-works .p-card-grid,
  .page-how-it-works .flow-section .p-card-grid,
  .page-how-it-works .p-card,
  .page-how-it-works .flow-section .p-card {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }
}


/* FORCE BOTH HOW-IT-WORKS SECTIONS INTO SAME VERTICAL CARD COLUMN */
.page-how-it-works .p-section-grid {
  grid-template-columns: 360px 600px !important;
  justify-content: center !important;
  column-gap: 70px !important;
}

.page-how-it-works .p-card-grid,
.page-how-it-works .flow-section .p-card-grid {
  width: 600px !important;
  max-width: 600px !important;
  min-width: 600px !important;
  justify-self: start !important;
  align-self: center !important;
  gap: 14px !important;
}

.page-how-it-works .p-card,
.page-how-it-works .flow-section .p-card {
  width: 600px !important;
  min-width: 600px !important;
  max-width: 600px !important;
  height: 76px !important;
  min-height: 76px !important;
  max-height: 76px !important;
  box-sizing: border-box !important;
}

@media (max-width: 980px) {
  .page-how-it-works .p-section-grid {
    grid-template-columns: 1fr !important;
  }

  .page-how-it-works .p-card-grid,
  .page-how-it-works .flow-section .p-card-grid,
  .page-how-it-works .p-card,
  .page-how-it-works .flow-section .p-card {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }
}

/* HARD ALIGN HOW-IT-WORKS CARD COLUMNS */
.page-how-it-works .p-section-grid {
  display: grid !important;
  grid-template-columns: 360px 620px !important;
  column-gap: 56px !important;
  justify-content: center !important;
}

.page-how-it-works .p-card-grid {
  grid-column: 2 !important;
  justify-self: start !important;
  width: 620px !important;
  min-width: 620px !important;
  max-width: 620px !important;
}

.page-how-it-works .p-card {
  width: 620px !important;
  min-width: 620px !important;
  max-width: 620px !important;
}


/* HARD FINAL HOW-IT-WORKS ALIGNMENT */
.page-how-it-works .p-card {
  width: 620px !important;
  min-width: 620px !important;
  max-width: 620px !important;
  height: 76px !important;
  min-height: 76px !important;
  max-height: 76px !important;
  padding: 17px 26px !important;
  box-sizing: border-box !important;
}

.page-how-it-works .flow-section .p-card {
  width: 620px !important;
  min-width: 620px !important;
  max-width: 620px !important;
}

.page-how-it-works .p-card-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 14px !important;
}

.page-how-it-works .p-section {
  padding: 28px 0 !important;
}


/* FINAL: SAME CARD COLUMN LEFT EDGE ON HOW-IT-WORKS */
.page-how-it-works .p-section-grid {
  grid-template-columns: 360px 620px !important;
  column-gap: 56px !important;
  justify-content: center !important;
}

.page-how-it-works .p-card-grid {
  grid-column: 2 !important;
  width: 620px !important;
  min-width: 620px !important;
  max-width: 620px !important;
  justify-self: start !important;
  margin-left: 0 !important;
  padding-left: 0 !important;
}

.page-how-it-works .p-card {
  width: 620px !important;
  min-width: 620px !important;
  max-width: 620px !important;
  margin-left: 0 !important;
}


/* EMERGENCY ALIGNMENT FIX: MOVE THE FLOW CARDS LEFT TO MATCH SECTION BELOW */
.page-how-it-works .flow-section .p-card-grid {
  margin-left: -48px !important;
  transform: translateX(-48px) !important;
  width: 620px !important;
  min-width: 620px !important;
  max-width: 620px !important;
}

.page-how-it-works .flow-section .p-card {
  width: 620px !important;
  min-width: 620px !important;
  max-width: 620px !important;
}

.page-how-it-works .p-section:not(.flow-section) .p-card-grid {
  margin-left: 0 !important;
  transform: none !important;
  width: 620px !important;
  min-width: 620px !important;
  max-width: 620px !important;
}

.page-how-it-works .p-section:not(.flow-section) .p-card {
  width: 620px !important;
  min-width: 620px !important;
  max-width: 620px !important;
}


/* REBALANCE FLOW CARD COLUMN POSITION */
.page-how-it-works .flow-section .p-card-grid {
  margin-left: -18px !important;
  transform: translateX(-18px) !important;
}


/* ABSOLUTE HOW-IT-WORKS CARD COLUMN ALIGNMENT */
.page-how-it-works .p-section-grid {
  display: grid !important;
  grid-template-columns: 360px 620px !important;
  column-gap: 56px !important;
  justify-content: center !important;
  align-items: center !important;
}

.page-how-it-works .p-section-copy {
  grid-column: 1 !important;
}

.page-how-it-works .p-card-grid,
.page-how-it-works .flow-section .p-card-grid {
  grid-column: 2 !important;
  justify-self: start !important;
  width: 620px !important;
  min-width: 620px !important;
  max-width: 620px !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: none !important;
}

.page-how-it-works .p-card,
.page-how-it-works .flow-section .p-card {
  width: 620px !important;
  min-width: 620px !important;
  max-width: 620px !important;
  margin: 0 !important;
  transform: none !important;
  box-sizing: border-box !important;
}


/* VISIBLE FIX: MOVE ONLY THE FLOW CARD COLUMN LEFT TO MATCH THE LOWER COLUMN */
.page-how-it-works .flow-section .p-card-grid {
  margin-left: -44px !important;
  transform: translateX(-44px) !important;
}

.page-how-it-works .flow-section .p-card {
  width: 620px !important;
  min-width: 620px !important;
  max-width: 620px !important;
}


/* ONE HARD CARD COLUMN FOR ALL HOW-IT-WORKS CARDS */
.page-how-it-works .p-section-grid {
  display: grid !important;
  grid-template-columns: 360px 640px !important;
  column-gap: 48px !important;
  justify-content: center !important;
  align-items: center !important;
}

.page-how-it-works .p-section-copy {
  grid-column: 1 !important;
}

.page-how-it-works .p-card-grid,
.page-how-it-works .flow-section .p-card-grid,
.page-how-it-works .p-section:not(.flow-section) .p-card-grid {
  grid-column: 2 !important;
  width: 640px !important;
  min-width: 640px !important;
  max-width: 640px !important;
  justify-self: start !important;
  margin-left: 0 !important;
  padding-left: 0 !important;
  transform: none !important;
  gap: 14px !important;
}

.page-how-it-works .p-card,
.page-how-it-works .flow-section .p-card,
.page-how-it-works .p-section:not(.flow-section) .p-card {
  width: 640px !important;
  min-width: 640px !important;
  max-width: 640px !important;
  height: 76px !important;
  min-height: 76px !important;
  max-height: 76px !important;
  box-sizing: border-box !important;
  margin-left: 0 !important;
  transform: none !important;
}

@media (max-width: 980px) {
  .page-how-it-works .p-section-grid {
    grid-template-columns: 1fr !important;
  }

  .page-how-it-works .p-card-grid,
  .page-how-it-works .flow-section .p-card-grid,
  .page-how-it-works .p-card {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }
}

/* FINAL REAL ALIGNMENT: ALL HOW-IT-WORKS CARDS SAME COLUMN */
section.flow-section .p-card-grid,
section.p-section:not(.flow-section) .p-card-grid {
  width: 620px !important;
  min-width: 620px !important;
  max-width: 620px !important;
  margin-left: 0 !important;
  padding-left: 0 !important;
  transform: none !important;
  justify-self: start !important;
}

section.flow-section .p-card,
section.p-section:not(.flow-section) .p-card {
  width: 620px !important;
  min-width: 620px !important;
  max-width: 620px !important;
  box-sizing: border-box !important;
}

/* Move the lower card column to exactly match the top card column */
section.p-section:not(.flow-section) .p-card-grid {
  transform: translateX(48px) !important;
}

/* Keep footer untouched */
footer .p-card-grid,
footer .p-card {
  transform: none !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
}


/* REAL FIX: ALIGN TOP FLOW CARDS WITH LOWER CARDS */
section.flow-section .p-card-grid {
  transform: translateX(-58px) !important;
  margin-left: 0 !important;
}

section.flow-section .p-card {
  width: 620px !important;
  min-width: 620px !important;
  max-width: 620px !important;
}


/* Fix How It Works vertical alignment: make all right-side tile columns share same x-axis */
.how-flow-grid,
.how-boundary-grid,
.how-section-grid {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(560px, 720px);
  column-gap: 96px;
  align-items: center;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.how-flow-grid > *:last-child,
.how-boundary-grid > *:last-child,
.how-section-grid > *:last-child {
  width: 100%;
  max-width: 720px;
  margin-left: 0 !important;
  justify-self: start;
}

.how-flow-grid .card,
.how-boundary-grid .card,
.how-section-grid .card {
  width: 100%;
}

@media (max-width: 900px) {
  .how-flow-grid,
  .how-boundary-grid,
  .how-section-grid {
    grid-template-columns: 1fr;
    row-gap: 32px;
  }
}



/* How It Works card column alignment */
body.page-how-it-works main section.p-section .p-section-grid {
  grid-template-columns: 360px 620px !important;
  column-gap: 56px !important;
  justify-content: center !important;
}

body.page-how-it-works main section.p-section .p-card-grid {
  grid-column: 2 !important;
  justify-self: start !important;
  width: 620px !important;
  min-width: 620px !important;
  max-width: 620px !important;
  margin-left: 0 !important;
  padding-left: 0 !important;
  transform: none !important;
}

body.page-how-it-works main section.p-section .p-card {
  width: 620px !important;
  min-width: 620px !important;
  max-width: 620px !important;
  margin-left: 0 !important;
  transform: none !important;
}

@media (max-width: 980px) {
  body.page-how-it-works main section.p-section .p-section-grid {
    grid-template-columns: 1fr !important;
  }

  body.page-how-it-works main section.p-section .p-card-grid,
  body.page-how-it-works main section.p-section .p-card {
    grid-column: auto !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }
}

/* Homepage card copy wrapping fix */
.home-card p,
.p-card p,
.market-power p,
section p {
  overflow: visible;
  text-overflow: initial;
  white-space: normal;
}

/* Prevent homepage card text clipping */
.p-card,
.home-card,
.market-power-card {
  height: auto !important;
  min-height: fit-content !important;
}

.p-card p,
.home-card p,
.market-power-card p,
.p-card-body,
.card-body {
  display: block !important;
  overflow: visible !important;
  text-overflow: clip !important;
  white-space: normal !important;
  line-clamp: unset !important;
  -webkit-line-clamp: unset !important;
  -webkit-box-orient: unset !important;
}

/* Prevent homepage card text clipping */
.p-card,
.home-card,
.market-power-card {
  height: auto !important;
  min-height: fit-content !important;
}

.p-card p,
.home-card p,
.market-power-card p,
.p-card-body,
.card-body {
  display: block !important;
  overflow: visible !important;
  text-overflow: clip !important;
  white-space: normal !important;
  line-clamp: unset !important;
  -webkit-line-clamp: unset !important;
  -webkit-box-orient: unset !important;
}


/* Public interaction surfaces */
.interaction-hero {
  padding: 74px 0 34px;
  background:
    radial-gradient(circle at 78% 12%, rgba(55,199,212,.13), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f7fbfc 100%);
}
.interaction-hero h1 {
  margin: 18px 0 14px;
  max-width: 840px;
  font-size: clamp(2.45rem, 5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -.055em;
}
.interaction-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.72;
}
.interaction-section {
  padding: 54px 0 84px;
  background: #fff;
}
.interaction-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, .7fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}
.interaction-grid h2,
.section-head h2 {
  margin: 10px 0 12px;
  font-size: clamp(2rem, 3.2vw, 3.3rem);
  line-height: 1.05;
  letter-spacing: -.045em;
}
.interaction-grid p,
.section-head p {
  color: var(--muted);
  line-height: 1.72;
}
.launch-form,
.intake-form,
.access-panel,
.confirmation-panel,
.cluster-card,
.selection-grid article {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(180deg, #fff, #f9fcfd);
  box-shadow: var(--shadow);
}
.launch-form,
.intake-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
}
.launch-form h3,
.intake-form h3,
.access-panel h3 {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--blue);
  letter-spacing: -.02em;
}
.launch-form label,
.intake-form label {
  display: grid;
  gap: 7px;
  font-size: .78rem;
  font-weight: 800;
  color: #41536a;
}
.launch-form input,
.launch-form select,
.launch-form textarea,
.intake-form input,
.intake-form select,
.intake-form textarea {
  width: 100%;
  border: 1px solid rgba(16,32,51,.14);
  border-radius: 16px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}
.launch-form textarea,
.intake-form textarea {
  min-height: 94px;
  resize: vertical;
}
.launch-form .full,
.launch-form button,
.intake-form .full,
.intake-form button,
.form-boundary {
  grid-column: 1 / -1;
}
.form-boundary {
  margin: 0;
  font-size: .82rem;
  color: var(--muted);
}
.compact-form {
  box-shadow: none;
}
.onboarding-forms {
  display: grid;
  gap: 18px;
}
.confirmation-panel,
.access-panel {
  margin-top: 22px;
  padding: 22px;
}
.confirmation-panel span,
.masked-badge {
  display: inline-flex;
  width: max-content;
  border-radius: 999px;
  padding: 7px 10px;
  background: #eafafa;
  color: var(--teal);
  font-size: .72rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.confirmation-panel h2,
.cluster-card h2 {
  margin: 12px 0 8px;
  color: var(--blue);
}
.reference {
  font-size: .84rem;
}
.demand-ladder,
.metrics-strip,
.selection-grid,
.cluster-grid {
  display: grid;
  gap: 14px;
}
.demand-ladder {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 24px;
}
.demand-ladder div,
.metrics-strip div {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: 16px;
}
.demand-ladder strong,
.metrics-strip strong {
  display: block;
  color: var(--blue);
}
.demand-ladder span,
.metrics-strip span {
  color: var(--muted);
  font-size: .86rem;
}
.cluster-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.cluster-card,
.selection-grid article,
.access-panel {
  padding: 22px;
}
.cluster-card ul,
.access-panel ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}
.cluster-card.compact {
  margin-top: 18px;
  max-width: 560px;
}
.demand-meter {
  height: 11px;
  overflow: hidden;
  border-radius: 999px;
  background: #edf4f6;
  border: 1px solid rgba(16,32,51,.08);
}
.demand-meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--cyan), var(--gold));
}
.selection-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 22px;
}
.selection-grid a,
.interaction-preview a {
  color: var(--teal);
  font-weight: 850;
  text-decoration: none;
}
.metrics-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
}
.interaction-preview {
  padding: 76px clamp(22px, 6vw, 72px);
  background: #fff;
}
@media (max-width: 920px) {
  .interaction-grid,
  .cluster-grid,
  .selection-grid,
  .demand-ladder,
  .metrics-strip {
    grid-template-columns: 1fr;
  }
  .launch-form,
.intake-form {
    grid-template-columns: 1fr;
  }
}

.label-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.label-strip span {
  display: inline-flex;
  border-radius: 999px;
  padding: 7px 10px;
  background: #eef7f8;
  color: var(--blue);
  font-size: .76rem;
  font-weight: 850;
}
.auth-grid,
.dashboard-grid,
.dashboard-split {
  display: grid;
  gap: 18px;
}
.auth-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 30px;
}
.dashboard-hero {
  padding: 132px clamp(22px, 6vw, 72px) 56px;
  background:
    radial-gradient(circle at 20% 10%, rgba(75,213,230,.16), transparent 34%),
    linear-gradient(135deg, #061426, #0c2434 62%, #102033);
  color: #fff;
}
.dashboard-heading {
  display: grid;
  gap: 16px;
}
.dashboard-heading h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
}
.dashboard-heading p {
  max-width: 790px;
  margin: 0;
  color: rgba(255,255,255,.76);
  line-height: 1.65;
}
.dashboard-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 24px;
}
.dashboard-grid .dash-card:nth-child(4) {
  grid-column: span 1;
}
.dash-card,
.dashboard-panel,
.action-stack,
.form-error {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 24px 70px rgba(10, 37, 64, .08);
}
.dash-card {
  padding: 22px;
}
.dash-card h2,
.dashboard-panel h2,
.action-stack h2 {
  margin: 0 0 10px;
  color: var(--blue);
}
.dash-card p {
  color: var(--muted);
  margin: 0 0 14px;
  line-height: 1.55;
}
.dashboard-split {
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
  align-items: start;
}
.dashboard-split.wide {
  grid-template-columns: minmax(0, 1fr) minmax(260px, .42fr);
}
.dashboard-panel,
.action-stack,
.form-error {
  margin-top: 24px;
  padding: 24px;
}
.status-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 7px 11px;
  background: #eef9fa;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 850;
  text-transform: capitalize;
}
.table-scroll {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}
.dash-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  font-size: .9rem;
}
.dash-table th,
.dash-table td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.dash-table th {
  color: var(--blue);
  background: #f6fbfb;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.dash-table td {
  color: var(--muted);
}
.empty-state {
  border: 1px dashed var(--line);
  border-radius: 18px;
  padding: 18px;
  color: var(--muted);
  background: #fff;
}
.text-button {
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0;
  font: inherit;
  font-weight: 850;
  text-decoration: underline;
  cursor: pointer;
}
.warning-panel {
  max-width: 700px;
}
.form-error {
  color: #8f2d2d;
  background: #fff7f6;
}
.action-stack form + form {
  margin-top: 10px;
}
@media (max-width: 920px) {
  .auth-grid,
  .dashboard-grid,
  .dashboard-split,
  .dashboard-split.wide {
    grid-template-columns: 1fr;
  }
  .dashboard-hero {
    padding-top: 112px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}





/* GLOBAL CLEANUP: remove decorative route arrows / connector lines */
.p-card-grid::before,
.p-card-grid::after,
.p-card::before,
.p-card::after,
.p-feature-card::before,
.p-feature-card::after,
.p-step-card::before,
.p-step-card::after,
.flow-section .p-card-grid::before,
.flow-section .p-card-grid::after,
.flow-section .p-card::before,
.flow-section .p-card::after,
.flow-section .p-card h3::after,
.flow-connector,
.flow-connector::before,
.flow-connector::after,
[class*="arrow"],
[class*="Arrow"],
[class*="timeline"],
[class*="Timeline"],
[class*="route-line"],
[class*="signal-line"],
[class*="check-arrow"] {
  display: none !important;
  content: none !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  width: 0 !important;
  height: 0 !important;
}

/* Keep cards clean after connector removal */
.p-card,
.p-feature-card,
.p-step-card {
  border-left-color: rgba(12, 36, 61, 0.10) !important;
}

/* Private owner sign-in surface */
.auth-shell {
  max-width: 760px;
  margin: 96px auto;
  padding: 0 24px;
}

.auth-card {
  background: #ffffff;
  border: 1px solid rgba(12, 36, 61, 0.10);
  border-radius: 28px;
  box-shadow: 0 22px 70px rgba(12, 36, 61, 0.08);
  padding: 44px;
}

.auth-card h1 {
  margin: 8px 0 12px;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.055em;
  color: #071f3b;
}

.auth-muted {
  color: #53657d;
  margin-bottom: 28px;
}

.auth-form {
  display: grid;
  gap: 18px;
}

.auth-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
  color: #08213d;
}

.auth-form input {
  border: 1px solid rgba(12, 36, 61, 0.14);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
}

.auth-form button {
  border: 0;
  border-radius: 999px;
  padding: 15px 22px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #075985, #059095);
  cursor: pointer;
}


/* Footer spacing and legal link polish */
.p-footer img,
footer img {
  margin-bottom: 10px !important;
}

.p-footer p,
footer p {
  margin-top: 8px !important;
}

.p-footer .p-brand,
footer .p-brand,
.p-footer-logo,
.footer-logo {
  gap: 8px !important;
  margin-bottom: 12px !important;
}

footer a[href="/terms"],
.p-footer a[href="/terms"] {
  font-weight: 700;
}


/* Footer compact professional spacing */
footer,
.p-footer {
  padding-top: 42px !important;
  padding-bottom: 42px !important;
}

footer img,
.p-footer img,
.footer-logo,
.p-footer-logo {
  display: block !important;
  margin: 0 0 8px 0 !important;
  max-height: 52px !important;
}

footer p,
.p-footer p {
  margin-top: 6px !important;
  margin-bottom: 0 !important;
  max-width: 460px;
}

footer .p-brand,
.p-footer .p-brand,
footer .brand,
.p-footer .brand {
  display: grid !important;
  gap: 6px !important;
  align-content: start !important;
}

footer a[href="/terms"],
.p-footer a[href="/terms"] {
  font-weight: 800 !important;
}


/* Live public polish: remove decorative connector/arrow remnants without changing card alignment */
.flow-connector,
.flow-section .p-card-grid::before,
.flow-section .p-card-grid::after,
.flow-section .p-card::before,
.flow-section .p-card::after,
.flow-section .p-card h3::after {
  content: none !important;
  display: none !important;
  background: none !important;
  background-image: none !important;
  border: 0 !important;
  box-shadow: none !important;
}

.category-showcase,
.region-showcase,
.contact-panel {
  padding: 72px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
  border-top: 1px solid rgba(16,32,51,.06);
}

.compact-head {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}

.category-tile-grid,
.region-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.category-tile,
.region-grid article {
  min-height: 172px;
  padding: 22px;
  border: 1px solid rgba(16,32,51,.085);
  border-radius: 22px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 48px rgba(16,32,51,.07);
}

.category-tile .category-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 14px;
  color: #053b4a;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(55,199,212,.22), rgba(7,155,154,.12));
  border: 1px solid rgba(7,155,154,.18);
  position: relative;
  overflow: hidden;
}

.category-icon::before,
.category-icon::after,
.category-icon i {
  content: "";
  position: absolute;
  display: block;
  border-color: #0f6f7c;
}

.category-icon-electronics::before {
  width: 13px;
  height: 22px;
  border: 2px solid #0f6f7c;
  border-radius: 5px;
  left: 14px;
  top: 11px;
}

.category-icon-electronics::after {
  width: 24px;
  height: 13px;
  border: 2px solid #0f6f7c;
  border-radius: 4px;
  right: 9px;
  bottom: 10px;
}

.category-icon-home::before {
  width: 22px;
  height: 18px;
  border: 2px solid #0f6f7c;
  border-top: 0;
  left: 13px;
  bottom: 11px;
}

.category-icon-home::after {
  width: 20px;
  height: 20px;
  border-left: 2px solid #0f6f7c;
  border-top: 2px solid #0f6f7c;
  transform: rotate(45deg);
  left: 14px;
  top: 10px;
}

.category-icon-fashion::before,
.category-icon-beauty::before,
.category-icon-office::before,
.category-icon-travel::before {
  width: 20px;
  height: 25px;
  border: 2px solid #0f6f7c;
  border-radius: 5px;
  left: 14px;
  top: 10px;
}

.category-icon-fashion::after {
  width: 7px;
  height: 7px;
  border: 2px solid #0f6f7c;
  border-radius: 50%;
  right: 12px;
  top: 13px;
}

.category-icon-beauty::after {
  width: 12px;
  height: 5px;
  border: 2px solid #0f6f7c;
  border-bottom: 0;
  left: 18px;
  top: 7px;
}

.category-icon-sports::before,
.category-icon-toys::before {
  width: 27px;
  height: 20px;
  border: 2px solid #0f6f7c;
  border-radius: 14px;
  left: 10px;
  top: 14px;
}

.category-icon-sports::after {
  width: 2px;
  height: 25px;
  background: #0f6f7c;
  left: 23px;
  top: 11px;
  transform: rotate(32deg);
}

.category-icon-toys::after {
  width: 4px;
  height: 4px;
  background: #0f6f7c;
  border-radius: 50%;
  right: 16px;
  top: 21px;
  box-shadow: -14px 0 0 #0f6f7c, -7px -5px 0 #0f6f7c;
}

.category-icon-baby::before {
  width: 24px;
  height: 15px;
  border: 2px solid #0f6f7c;
  border-radius: 12px 12px 6px 6px;
  left: 12px;
  top: 13px;
}

.category-icon-baby::after {
  width: 5px;
  height: 5px;
  background: #0f6f7c;
  border-radius: 50%;
  left: 15px;
  bottom: 10px;
  box-shadow: 16px 0 0 #0f6f7c;
}

.category-icon-auto::before {
  width: 27px;
  height: 13px;
  border: 2px solid #0f6f7c;
  border-radius: 10px 10px 6px 6px;
  left: 10px;
  top: 18px;
}

.category-icon-auto::after {
  width: 5px;
  height: 5px;
  background: #0f6f7c;
  border-radius: 50%;
  left: 15px;
  bottom: 11px;
  box-shadow: 16px 0 0 #0f6f7c;
}

.category-icon-garden::before,
.category-icon-pets::before,
.category-icon-wellness::before {
  width: 21px;
  height: 21px;
  border: 2px solid #0f6f7c;
  border-radius: 70% 30% 70% 30%;
  left: 13px;
  top: 11px;
  transform: rotate(35deg);
}

.category-icon-garden::after {
  width: 2px;
  height: 18px;
  background: #0f6f7c;
  left: 24px;
  top: 23px;
}

.category-icon-pets::before {
  border-radius: 50%;
  transform: none;
  width: 12px;
  height: 12px;
  left: 18px;
  top: 22px;
}

.category-icon-pets::after {
  width: 5px;
  height: 5px;
  background: #0f6f7c;
  border-radius: 50%;
  left: 14px;
  top: 13px;
  box-shadow: 8px -4px 0 #0f6f7c, 17px 0 0 #0f6f7c;
}

.category-icon-wellness::before {
  border-radius: 8px 8px 12px 12px;
}

.category-icon-travel::after {
  width: 12px;
  height: 5px;
  border: 2px solid #0f6f7c;
  border-bottom: 0;
  left: 18px;
  top: 8px;
}

.category-icon-office::after {
  width: 13px;
  height: 2px;
  background: #0f6f7c;
  left: 18px;
  top: 18px;
  box-shadow: 0 7px 0 #0f6f7c;
}

.category-tile h3,
.region-grid h3 {
  margin: 0 0 8px;
  color: #102033;
  font-size: 1rem;
  letter-spacing: -.02em;
}

.category-tile p,
.region-grid p {
  margin: 0;
  color: #607087;
  font-size: .93rem;
  line-height: 1.55;
}

.legal-section {
  padding: 30px 0;
  background: #fff;
}

.legal-section:first-of-type {
  padding-top: 70px;
}

.legal-section:last-of-type {
  padding-bottom: 82px;
}

.legal-doc {
  max-width: 940px;
}

.legal-clause {
  padding: 0 0 30px;
  border-bottom: 1px solid rgba(16,32,51,.1);
}

.legal-clause h2 {
  margin: 0 0 12px;
  color: #102033;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  letter-spacing: -.03em;
}

.legal-clause > p {
  margin: 0 0 18px;
  color: #51637a;
  line-height: 1.72;
}

.legal-clause ol {
  margin: 0;
  padding-left: 22px;
  display: grid;
  gap: 10px;
}

.legal-clause li {
  color: #53667c;
  line-height: 1.62;
}

.legal-clause li strong {
  display: block;
  color: #102033;
}

.owner-access-section .selection-grid,
.contact-panel .selection-grid {
  margin-top: 22px;
}

.owner-login-form {
  align-self: start;
}

.informational-card,
.informational-ladder {
  border-color: rgba(7,155,154,.13) !important;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(246,253,253,.9)) !important;
}

.p-footer {
  padding: 34px 0 30px !important;
}

.p-footer-grid {
  gap: 26px !important;
  align-items: start !important;
}

.p-footer img {
  width: 86px !important;
  margin: 0 0 8px !important;
}

.p-footer p {
  margin: 0 !important;
  max-width: 320px;
  line-height: 1.5 !important;
}

.p-footer strong {
  margin-bottom: 9px !important;
}

.p-footer a {
  margin-top: 6px !important;
}

@media (max-width: 980px) {
  .category-tile-grid,
  .region-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .category-showcase,
  .region-showcase,
  .contact-panel {
    padding: 48px 0;
  }

  .category-tile-grid,
  .region-grid {
    grid-template-columns: 1fr;
  }

  .category-tile,
  .region-grid article {
    min-height: auto;
  }

  .p-footer {
    padding: 28px 0 26px !important;
  }
}

/* Mobile public-site hardening: make Peddlo feel designed for phones, not squeezed down. */
html,
body,
.p-site {
  max-width: 100%;
  overflow-x: hidden;
}

img,
svg,
video,
canvas {
  max-width: 100%;
}

.p-header,
.p-nav,
.p-brand,
.p-hero-grid,
.p-section-grid,
.p-card-grid,
.category-tile-grid,
.region-grid,
.interaction-grid,
.dashboard-split,
.feature-grid,
.cluster-grid,
.selection-grid,
.demand-ladder,
.metrics-strip,
.legal-doc,
.p-footer-grid {
  min-width: 0;
}

.p-hero h1,
.interaction-hero h1,
.p-section h2,
.section-head h2,
.market-power h2,
.legal-clause h2,
.p-card h3,
.category-tile h3,
.region-grid h3,
.p-card p,
.category-tile p,
.region-grid p,
.legal-clause li,
.legal-clause p {
  overflow-wrap: anywhere;
}

@media (max-width: 900px) {
  .p-wrap {
    width: min(100% - 32px, 1180px);
  }

  .p-header {
    position: sticky;
    align-items: stretch;
    gap: 12px;
    padding: 12px 16px;
  }

  .p-brand {
    min-width: 0;
    width: 100%;
    gap: 9px;
  }

  .p-brand img {
    width: 38px;
    height: 38px;
  }

  .p-brand strong {
    font-size: 1rem;
  }

  .p-brand small {
    font-size: .72rem;
  }

  .p-nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 7px;
    overflow: visible;
    padding: 0;
  }

  .p-nav a {
    min-height: 42px;
    padding: 9px 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: normal;
    line-height: 1.15;
    font-size: .78rem;
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(16,32,51,.08);
  }

  .p-hero {
    padding: 44px 0 46px;
  }

  .p-hero-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .p-hero-copy {
    text-align: left;
  }

  .p-hero h1 {
    max-width: 100%;
    margin: 16px 0 16px;
    font-size: clamp(2.25rem, 10vw, 4rem);
    letter-spacing: -.045em;
  }

  .p-hero-copy p {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.62;
  }

  .p-actions {
    gap: 10px;
  }

  .p-btn {
    min-height: 46px;
    padding: 0 16px;
  }

  .p-visual {
    min-height: 310px;
    transform: none;
  }

  .curve-a,
  .curve-c {
    width: min(520px, 92vw);
    height: 235px;
  }

  .curve-b {
    width: min(350px, 72vw);
    height: 180px;
  }

  .p-mini-brand {
    width: min(260px, 72vw);
    height: min(260px, 72vw);
  }

  .p-mini-brand img {
    width: min(220px, 60vw);
  }

  .p-section {
    padding: 40px 0;
  }

  .p-section-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
    justify-content: stretch !important;
  }

  .p-section h2,
  .p-section-copy p {
    max-width: 100%;
  }

  .p-card-grid,
  body.page-how-it-works main section.p-section .p-card-grid {
    grid-column: auto !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }

  .p-card,
  body.page-how-it-works main section.p-section .p-card,
  section.flow-section .p-card {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }

  .market-power-grid,
  .interaction-grid,
  .dashboard-split,
  .feature-grid,
  .cluster-grid,
  .selection-grid,
  .demand-ladder,
  .metrics-strip {
    grid-template-columns: 1fr !important;
  }

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

  .intake-form,
  .launch-form {
    grid-template-columns: 1fr;
  }

  .p-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px !important;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .p-wrap {
    width: min(100% - 26px, 1180px);
  }

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

  .p-hero {
    padding: 34px 0 38px;
  }

  .p-hero h1,
  .interaction-hero h1 {
    font-size: clamp(2rem, 11vw, 3.25rem);
    line-height: 1.04;
  }

  .p-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .p-actions .p-btn {
    width: 100%;
  }

  .p-visual {
    min-height: 260px;
  }

  .p-mini-brand {
    width: min(220px, 68vw);
    height: min(220px, 68vw);
  }

  .p-mini-brand img {
    width: min(184px, 56vw);
  }

  .curve-a,
  .curve-c {
    height: 190px;
  }

  .curve-b {
    height: 148px;
  }

  .category-showcase,
  .region-showcase,
  .contact-panel,
  .interaction-section {
    padding: 38px 0;
  }

  .category-tile,
  .region-grid article,
  .cluster-card,
  .selection-grid article,
  .intake-form,
  .legal-clause {
    border-radius: 18px;
  }

  .legal-section:first-of-type {
    padding-top: 42px;
  }

  .legal-section:last-of-type {
    padding-bottom: 50px;
  }

  .legal-clause {
    padding-bottom: 22px;
  }
}

@media (max-width: 520px) {
  .p-wrap {
    width: min(100% - 20px, 1180px);
  }

  .p-header {
    padding: 10px;
  }

  .p-brand img {
    width: 34px;
    height: 34px;
  }

  .p-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  .p-nav a {
    min-height: 40px;
    font-size: .75rem;
    padding: 8px 6px;
  }

  .p-pill,
  .p-kicker,
  .eyebrow,
  .confirmation-panel span,
  .masked-badge {
    max-width: 100%;
    white-space: normal;
    letter-spacing: .08em;
  }

  .p-hero h1,
  .interaction-hero h1 {
    font-size: clamp(1.92rem, 12vw, 2.75rem);
    letter-spacing: -.035em;
  }

  .p-hero-copy p,
  .interaction-hero p,
  .section-head p,
  .p-section-copy p {
    font-size: .96rem;
    line-height: 1.58;
  }

  .p-visual {
    min-height: 220px;
  }

  .curve-a,
  .curve-c {
    width: 92vw;
    height: 160px;
  }

  .curve-b {
    width: 68vw;
    height: 124px;
  }

  .p-mini-brand {
    width: min(178px, 62vw);
    height: min(178px, 62vw);
  }

  .p-mini-brand img {
    width: min(150px, 52vw);
  }

  .category-tile-grid,
  .region-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .category-tile {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    column-gap: 14px;
    align-items: start;
    padding: 18px;
  }

  .category-tile .category-icon {
    margin-bottom: 0;
  }

  .category-tile h3 {
    margin-top: 2px;
  }

  .category-tile p {
    grid-column: 2;
  }

  .p-card {
    padding: 16px 17px !important;
    min-height: auto;
  }

  .p-card p {
    white-space: normal !important;
  }

  .intake-form {
    padding: 16px;
    gap: 12px;
  }

  .intake-form input,
  .intake-form select,
  .intake-form textarea {
    min-height: 44px;
    border-radius: 14px;
  }

  .legal-clause ol {
    padding-left: 18px;
  }

  .p-footer {
    padding: 24px 0 22px !important;
  }

  .p-footer-grid {
    grid-template-columns: 1fr;
    gap: 16px !important;
  }

  .p-footer img {
    width: 72px !important;
    margin-bottom: 6px !important;
  }

  .p-footer a {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    margin: 2px 10px 2px 0 !important;
  }
}

@media (max-width: 380px) {
  .p-wrap {
    width: min(100% - 16px, 1180px);
  }

  .p-brand {
    gap: 7px;
  }

  .p-brand strong {
    font-size: .94rem;
  }

  .p-brand small {
    font-size: .66rem;
  }

  .p-nav a {
    font-size: .7rem;
    min-height: 38px;
  }

  .p-hero {
    padding-top: 28px;
  }

  .p-hero h1,
  .interaction-hero h1 {
    font-size: clamp(1.72rem, 12vw, 2.25rem);
  }

  .p-btn {
    min-height: 44px;
    font-size: .9rem;
  }

  .category-tile {
    grid-template-columns: 46px minmax(0, 1fr);
    column-gap: 12px;
    padding: 16px;
  }

  .category-tile .category-icon {
    width: 44px;
    height: 44px;
    transform: scale(.92);
    transform-origin: left top;
  }
}

/* Global shopping expansion and language preference polish */
.language-selector {
  display: grid;
  gap: 4px;
  min-width: 136px;
  color: rgba(255,255,255,.82);
  font-size: .72rem;
}

.language-selector label {
  font-weight: 760;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.language-selector select {
  min-height: 38px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  padding: 0 34px 0 14px;
  color: #f8fdff;
  background: rgba(255,255,255,.08);
  outline: none;
}

.language-selector option {
  color: #102033;
}

.language-selector small {
  max-width: 170px;
  color: rgba(255,255,255,.64);
  line-height: 1.25;
}

.category-choice-field {
  border: 0;
  margin: 0;
  padding: 0;
}

.category-choice-field legend {
  margin-bottom: 10px;
  color: #34485e;
  font-size: .83rem;
  font-weight: 820;
}

.category-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-height: 260px;
  overflow: auto;
  padding: 2px 2px 4px;
}

.category-choice {
  display: grid !important;
  grid-template-columns: 36px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 9px 10px !important;
  border: 1px solid rgba(16,32,51,.1);
  border-radius: 16px;
  background: rgba(255,255,255,.82);
  color: #22384f;
  cursor: pointer;
}

.category-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.category-choice .category-icon {
  width: 34px;
  height: 34px;
  margin: 0;
  border-radius: 11px;
  transform: scale(.82);
  transform-origin: center;
}

.category-choice strong {
  font-size: .84rem;
  line-height: 1.2;
}

.category-choice:has(input:checked) {
  border-color: rgba(7,155,154,.45);
  background: linear-gradient(180deg, rgba(239,254,254,.98), rgba(255,255,255,.92));
  box-shadow: 0 12px 28px rgba(7,155,154,.1);
}

.region-principles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 28px 0;
}

.region-principles article {
  padding: 18px;
  border: 1px solid rgba(16,32,51,.08);
  border-radius: 20px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 16px 38px rgba(16,32,51,.06);
}

.region-principles h3 {
  margin: 0 0 8px;
  color: #102033;
}

.region-principles p {
  margin: 0;
  color: #5c6e83;
  line-height: 1.55;
}

.p-footer a,
.p-footer a[href="/terms"],
footer a[href="/terms"] {
  font-weight: 650 !important;
}

.category-icon-mobile::before,
.category-icon-computers::before,
.category-icon-furniture::before,
.category-icon-shoes::before,
.category-icon-books::before,
.category-icon-gaming::before,
.category-icon-smart-home::before,
.category-icon-tools::before,
.category-icon-grocery::before,
.category-icon-music::before,
.category-icon-cameras::before,
.category-icon-watches::before,
.category-icon-appliances::before,
.category-icon-audio::before,
.category-icon-crafts::before {
  width: 24px;
  height: 18px;
  border: 2px solid #0f6f7c;
  border-radius: 6px;
  left: 12px;
  top: 14px;
}

.category-icon-mobile::before {
  width: 13px;
  height: 25px;
  left: 17px;
  top: 9px;
  border-radius: 5px;
}

.category-icon-mobile::after {
  width: 4px;
  height: 4px;
  background: #0f6f7c;
  border-radius: 50%;
  left: 22px;
  bottom: 10px;
}

.category-icon-computers::after {
  width: 26px;
  height: 2px;
  background: #0f6f7c;
  left: 11px;
  bottom: 11px;
}

.category-icon-furniture::before {
  width: 26px;
  height: 14px;
  top: 19px;
  border-radius: 10px 10px 5px 5px;
}

.category-icon-furniture::after {
  width: 2px;
  height: 11px;
  background: #0f6f7c;
  left: 15px;
  bottom: 8px;
  box-shadow: 18px 0 0 #0f6f7c;
}

.category-icon-shoes::before {
  width: 29px;
  height: 12px;
  top: 22px;
  border-radius: 14px 4px 7px 7px;
}

.category-icon-books::before {
  width: 10px;
  height: 25px;
  left: 13px;
  top: 10px;
  box-shadow: 11px 0 0 rgba(15,111,124,.14), 22px 0 0 rgba(15,111,124,.14);
}

.category-icon-books::after {
  width: 2px;
  height: 25px;
  background: #0f6f7c;
  left: 25px;
  top: 10px;
}

.category-icon-gaming::before {
  width: 30px;
  height: 18px;
  border-radius: 14px;
  left: 9px;
  top: 16px;
}

.category-icon-gaming::after {
  width: 4px;
  height: 4px;
  background: #0f6f7c;
  border-radius: 50%;
  right: 14px;
  top: 23px;
  box-shadow: -17px 0 0 #0f6f7c;
}

.category-icon-smart-home::before {
  width: 22px;
  height: 19px;
  border-top: 0;
  left: 13px;
  bottom: 10px;
}

.category-icon-smart-home::after {
  width: 19px;
  height: 19px;
  border-left: 2px solid #0f6f7c;
  border-top: 2px solid #0f6f7c;
  transform: rotate(45deg);
  left: 14px;
  top: 9px;
}

.category-icon-tools::before {
  width: 27px;
  height: 6px;
  top: 22px;
  transform: rotate(-35deg);
}

.category-icon-tools::after {
  width: 8px;
  height: 8px;
  border: 2px solid #0f6f7c;
  border-radius: 50%;
  left: 12px;
  top: 23px;
}

.category-icon-grocery::before {
  width: 23px;
  height: 19px;
  top: 17px;
  border-radius: 4px 4px 8px 8px;
}

.category-icon-grocery::after {
  width: 13px;
  height: 7px;
  border: 2px solid #0f6f7c;
  border-bottom: 0;
  left: 18px;
  top: 11px;
}

.category-icon-music::before {
  width: 12px;
  height: 21px;
  border-left: 2px solid #0f6f7c;
  border-top: 2px solid #0f6f7c;
  border-right: 0;
  border-bottom: 0;
  border-radius: 0;
  left: 23px;
  top: 10px;
}

.category-icon-music::after {
  width: 9px;
  height: 9px;
  background: #0f6f7c;
  border-radius: 50%;
  left: 14px;
  bottom: 10px;
  box-shadow: 13px -3px 0 #0f6f7c;
}

.category-icon-cameras::before {
  width: 28px;
  height: 19px;
  left: 10px;
  top: 16px;
  border-radius: 6px;
}

.category-icon-cameras::after {
  width: 9px;
  height: 9px;
  border: 2px solid #0f6f7c;
  border-radius: 50%;
  left: 19px;
  top: 21px;
}

.category-icon-watches::before {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  left: 16px;
  top: 16px;
}

.category-icon-watches::after {
  width: 7px;
  height: 28px;
  border: 2px solid #0f6f7c;
  border-radius: 8px;
  left: 20px;
  top: 9px;
}

.category-icon-appliances::before {
  width: 22px;
  height: 24px;
  left: 13px;
  top: 10px;
  border-radius: 5px;
}

.category-icon-appliances::after {
  width: 10px;
  height: 2px;
  background: #0f6f7c;
  left: 19px;
  top: 18px;
  box-shadow: 0 6px 0 #0f6f7c;
}

.category-icon-audio::before {
  width: 26px;
  height: 23px;
  border-radius: 13px 13px 6px 6px;
  left: 11px;
  top: 12px;
}

.category-icon-audio::after {
  width: 5px;
  height: 13px;
  background: #0f6f7c;
  left: 13px;
  top: 22px;
  box-shadow: 17px 0 0 #0f6f7c;
}

.category-icon-crafts::before {
  width: 24px;
  height: 24px;
  border-radius: 50% 50% 45% 45%;
  left: 12px;
  top: 11px;
}

.category-icon-crafts::after {
  width: 3px;
  height: 18px;
  background: #0f6f7c;
  left: 23px;
  top: 15px;
  transform: rotate(35deg);
}

@media (max-width: 900px) {
  .language-selector {
    width: 100%;
    max-width: 280px;
  }

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

@media (max-width: 520px) {
  .language-selector {
    max-width: 100%;
  }

  .category-choice-grid {
    grid-template-columns: 1fr;
    max-height: 340px;
  }

  .region-principles {
    grid-template-columns: 1fr;
  }
}

/* Premium public-site redesign: buyer-led, restrained, and commercially mature. */
.p-header {
  background: rgba(5, 18, 24, .9) !important;
  border-bottom: 1px solid rgba(218, 178, 94, .18) !important;
  backdrop-filter: blur(18px);
}

.p-brand strong,
.p-brand small,
.p-nav a,
.language-selector {
  color: rgba(252, 248, 237, .88) !important;
}

.p-brand small {
  color: rgba(218, 178, 94, .78) !important;
}

.p-nav {
  gap: 6px !important;
}

.p-nav a {
  border-radius: 999px;
  border: 1px solid transparent;
}

.p-nav a:hover,
.p-nav a[aria-current="page"] {
  color: #fff !important;
  background: rgba(21, 122, 116, .2) !important;
  border-color: rgba(88, 211, 196, .2);
}

.p-hero {
  color: #fff !important;
  background:
    radial-gradient(circle at 77% 26%, rgba(55,199,212,.22), transparent 30%),
    radial-gradient(circle at 12% 18%, rgba(214,173,87,.16), transparent 28%),
    linear-gradient(135deg, #041115 0%, #07221f 48%, #0e1720 100%) !important;
}

.p-hero h1 {
  color: #fff !important;
  letter-spacing: -.045em !important;
}

.p-hero-copy p {
  color: rgba(252, 248, 237, .76) !important;
}

.p-pill,
.p-kicker,
.eyebrow {
  color: #cda85b !important;
  background: rgba(218, 178, 94, .1) !important;
  border: 1px solid rgba(218, 178, 94, .24) !important;
}

.p-btn {
  border-radius: 12px !important;
}

.p-btn-primary {
  background: linear-gradient(135deg, #078c84, #d0a65a) !important;
  box-shadow: 0 18px 44px rgba(7, 140, 132, .24) !important;
}

.p-btn-secondary {
  color: #0d3636 !important;
  background: #fff !important;
  border: 1px solid rgba(16,32,51,.12) !important;
}

.p-visual {
  min-height: 410px !important;
}

.p-curve {
  border-color: rgba(218, 178, 94, .25) !important;
}

.curve-b {
  border-color: rgba(55,199,212,.3) !important;
}

.p-mini-brand::before {
  background: radial-gradient(circle, rgba(55,199,212,.16), transparent 70%) !important;
}

.p-mini-brand img {
  filter: drop-shadow(0 24px 36px rgba(0,0,0,.42)) !important;
}

.category-showcase,
.region-showcase,
.contact-panel {
  padding: 58px 0 !important;
}

.area-principles,
.region-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 26px auto 20px;
  max-width: 980px;
}

.area-principles article,
.region-principles article {
  border-radius: 8px !important;
  padding: 18px !important;
  background: rgba(255,255,255,.94) !important;
  border: 1px solid rgba(16,32,51,.09) !important;
  box-shadow: 0 12px 34px rgba(16,32,51,.06) !important;
}

.area-principles h3,
.region-principles h3 {
  margin: 0 0 8px;
  color: #0e3545;
}

.area-principles p,
.region-principles p {
  margin: 0;
  color: #5b6f82;
  line-height: 1.55;
}

.shopping-area-list,
.regional-market-list,
.category-chip-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.shopping-area-list {
  max-width: 1000px;
  margin: 22px auto 0;
}

.shopping-area-list span,
.regional-market-list span,
.category-chip-row span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border-radius: 999px;
  padding: 7px 11px;
  color: #173246;
  background: #f6faf9;
  border: 1px solid rgba(16,32,51,.1);
  font-size: .82rem;
  font-weight: 760;
}

.regional-market-list {
  max-width: 900px;
  margin: 22px auto 0;
}

.category-choice-field.category-combobox {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(16,32,51,.11);
  border-radius: 14px;
  padding: 14px;
  background: rgba(255,255,255,.86);
}

.category-choice-field legend {
  padding: 0 6px;
}

.category-search-label {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 7px !important;
}

.category-multiselect,
.region-multiselect {
  width: 100%;
  border: 1px solid rgba(16,32,51,.14);
  border-radius: 12px;
  padding: 10px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.category-multiselect option,
.region-multiselect option {
  padding: 8px;
}

.field-hint,
.form-intro {
  grid-column: 1 / -1;
  margin: 0;
  color: #637386;
  font-size: .84rem;
  line-height: 1.55;
}

.access-heading {
  max-width: 920px;
}

.access-heading h2 {
  margin: 10px 0 12px;
  max-width: 780px;
  font-size: clamp(2.1rem, 3.6vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -.04em;
}

.access-heading p {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.7;
}

.route-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
  margin: 22px 0 8px;
}

.route-cards a {
  display: grid;
  gap: 5px;
  border: 1px solid rgba(16,32,51,.1);
  border-radius: 8px;
  padding: 15px 16px;
  text-decoration: none;
  background: #fff;
}

.route-cards strong {
  color: #0b3f48;
}

.route-cards span {
  color: #66778a;
  font-size: .9rem;
}

.access-tabs {
  display: inline-flex;
  gap: 4px;
  margin: 26px 0 16px;
  padding: 5px;
  border: 1px solid rgba(16,32,51,.1);
  border-radius: 999px;
  background: #f5f9fa;
}

.access-tabs a {
  border-radius: 999px;
  padding: 9px 13px;
  color: #41536a;
  font-size: .84rem;
  font-weight: 820;
  text-decoration: none;
}

.access-tabs a[aria-current="page"],
.access-tabs a:hover {
  color: #fff;
  background: #0b807b;
}

.access-layout {
  display: grid;
  grid-template-columns: minmax(320px, .78fr) minmax(360px, 1fr);
  gap: 18px;
  align-items: start;
}

.access-primary {
  border-radius: 12px !important;
  background: linear-gradient(180deg, #ffffff, #f7fcfb) !important;
}

.access-side {
  display: grid;
  gap: 16px;
}

.compact-access-form {
  border-radius: 12px !important;
  padding: 18px !important;
  box-shadow: 0 14px 38px rgba(16,32,51,.07) !important;
}

.compact-access-form .category-combobox {
  max-height: none;
}

.p-footer {
  background: #061316 !important;
  color: rgba(252, 248, 237, .74) !important;
  border-top: 1px solid rgba(218,178,94,.18) !important;
}

.p-footer strong {
  color: #f8f0d8 !important;
}

.p-footer a {
  color: rgba(252, 248, 237, .7) !important;
}

.p-footer a:hover {
  color: #d7b261 !important;
}

@media (max-width: 900px) {
  .area-principles,
  .region-principles,
  .access-layout,
  .route-cards {
    grid-template-columns: 1fr !important;
  }

  .access-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    border-radius: 14px;
  }

  .access-tabs a {
    text-align: center;
  }
}

@media (max-width: 520px) {
  .shopping-area-list,
  .regional-market-list,
  .category-chip-row {
    justify-content: flex-start;
  }
}

/* Premium light commerce correction: warm luxury surface with cinematic teal hero. */
:root {
  --ink: #142235;
  --text: #243447;
  --muted: #637184;
  --ivory: #F6F3EE;
  --pearl: #FAF8F4;
  --stone: #ECE7DE;
  --teal: #0F8B8D;
  --teal-deep: #126E72;
  --gold: #C6A15B;
  --champagne: #D8B16A;
  --navy: #10202E;
  --line: rgba(20, 34, 53, .12);
  --shadow: 0 24px 58px rgba(20, 34, 53, .11);
}

body {
  color: var(--ink) !important;
  background: var(--ivory) !important;
}

.p-site {
  background:
    radial-gradient(circle at 12% 8%, rgba(216,177,106,.16), transparent 24%),
    linear-gradient(180deg, var(--pearl), var(--ivory) 42%, var(--stone)) !important;
}

.p-wrap {
  width: min(1160px, calc(100% - 40px)) !important;
}

.p-header {
  padding: 10px clamp(18px, 4vw, 44px) !important;
  min-height: 68px;
  background: rgba(250, 248, 244, .88) !important;
  border-bottom: 1px solid rgba(198, 161, 91, .25) !important;
  box-shadow: 0 12px 36px rgba(20, 34, 53, .06);
  backdrop-filter: blur(18px);
}

.p-brand {
  min-width: 174px !important;
  gap: 10px !important;
}

.p-brand img {
  width: 38px !important;
  height: 38px !important;
  filter: drop-shadow(0 8px 16px rgba(15,139,141,.18)) !important;
}

.p-brand strong,
.p-brand small,
.p-nav a,
.language-selector {
  color: var(--ink) !important;
}

.p-brand strong {
  font-size: 1rem !important;
  letter-spacing: 0 !important;
}

.p-brand small {
  color: var(--gold) !important;
  font-size: .66rem !important;
  letter-spacing: .08em !important;
}

.p-nav {
  gap: 2px !important;
  flex-wrap: nowrap !important;
}

.p-nav a {
  padding: 8px 10px !important;
  border-radius: 999px !important;
  border: 1px solid transparent !important;
  color: rgba(20, 34, 53, .78) !important;
  font-size: .8rem !important;
  letter-spacing: 0 !important;
  white-space: nowrap;
}

.p-nav a:hover,
.p-nav a[aria-current="page"] {
  color: #0d5f64 !important;
  background: rgba(15, 139, 141, .1) !important;
  border-color: rgba(15, 139, 141, .18) !important;
}

.language-selector {
  display: flex !important;
  align-items: center !important;
  gap: 7px !important;
  min-width: 0 !important;
  white-space: nowrap;
  font-size: .76rem !important;
}

.language-selector label {
  margin: 0 !important;
  color: rgba(20,34,53,.62) !important;
}

.language-selector select {
  min-height: 34px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(198, 161, 91, .28) !important;
  background: rgba(255,255,255,.72) !important;
  color: var(--ink) !important;
  padding: 0 28px 0 10px !important;
}

.language-selector small {
  display: none !important;
}

.p-hero {
  color: #fff !important;
  padding: clamp(74px, 8vw, 118px) 0 clamp(64px, 7vw, 96px) !important;
  background:
    radial-gradient(circle at 72% 32%, rgba(15,139,141,.42), transparent 28%),
    radial-gradient(circle at 44% 46%, rgba(216,177,106,.18), transparent 34%),
    radial-gradient(circle at 12% 16%, rgba(250,248,244,.12), transparent 26%),
    linear-gradient(135deg, #10202E 0%, #123A49 44%, #126E72 74%, #10202E 100%) !important;
  overflow: hidden;
}

.p-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 72% 40%, rgba(250,248,244,.16), transparent 36%),
    linear-gradient(180deg, transparent 72%, rgba(246,243,238,.16));
}

.p-hero-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, .92fr) minmax(360px, .9fr) !important;
  gap: clamp(34px, 6vw, 82px) !important;
}

.p-pill,
.p-kicker,
.eyebrow {
  color: #F6E8C3 !important;
  background: rgba(216, 177, 106, .12) !important;
  border: 1px solid rgba(216, 177, 106, .35) !important;
  letter-spacing: .12em !important;
}

.p-hero h1,
.interaction-hero h1,
.dashboard-hero h1,
.p-section-copy h2,
.market-power h2,
.section-head h2,
.access-heading h2,
.legal-clause h2 {
  letter-spacing: 0 !important;
}

.p-hero h1 {
  max-width: 720px !important;
  color: #FFF9EA !important;
  font-size: clamp(2.9rem, 5.4vw, 5.35rem) !important;
  line-height: 1.01 !important;
  text-shadow: 0 18px 44px rgba(0,0,0,.24);
}

.p-hero-copy p {
  max-width: 680px !important;
  color: rgba(255,249,234,.86) !important;
  font-size: clamp(1.04rem, 1.35vw, 1.2rem) !important;
  line-height: 1.72 !important;
}

.hero-secondary-line {
  display: block;
  margin-top: 14px;
  color: rgba(255,249,234,.72);
}

.p-btn {
  min-height: 46px !important;
  border-radius: 13px !important;
  padding: 0 19px !important;
  letter-spacing: 0 !important;
}

.p-btn-primary {
  color: #fff !important;
  background: linear-gradient(135deg, #0F8B8D, #126E72) !important;
  box-shadow: 0 16px 40px rgba(15,139,141,.34), 0 0 0 1px rgba(255,255,255,.14) inset !important;
}

.p-btn-secondary {
  color: #142235 !important;
  background: rgba(250,248,244,.94) !important;
  border: 1px solid rgba(216,177,106,.42) !important;
  box-shadow: 0 14px 32px rgba(20,34,53,.12) !important;
}

.p-visual {
  min-height: 420px !important;
  border-radius: 0 !important;
  background: radial-gradient(circle at 50% 50%, rgba(250,248,244,.09), transparent 58%) !important;
}

.p-curve {
  border-color: rgba(216, 177, 106, .36) !important;
  box-shadow: 0 0 54px rgba(15,139,141,.18);
}

.curve-b {
  border-color: rgba(99, 223, 213, .34) !important;
}

.p-soft-node {
  background: rgba(216,177,106,.78) !important;
  box-shadow: 0 0 28px rgba(216,177,106,.45) !important;
}

.p-mini-brand {
  background: radial-gradient(circle at 50% 40%, rgba(250,248,244,.98), rgba(236,231,222,.88) 56%, rgba(216,177,106,.38)) !important;
  border: 1px solid rgba(216,177,106,.62) !important;
  box-shadow: 0 28px 70px rgba(0,0,0,.3), 0 0 80px rgba(15,139,141,.26) !important;
}

.p-mini-brand::before {
  background: radial-gradient(circle, rgba(216,177,106,.28), rgba(15,139,141,.16), transparent 72%) !important;
}

.p-mini-brand img {
  filter: drop-shadow(0 16px 26px rgba(20,34,53,.28)) !important;
}

.p-float-card {
  color: #FFF9EA !important;
  background: rgba(16,32,46,.46) !important;
  border: 1px solid rgba(216,177,106,.28) !important;
  box-shadow: 0 18px 38px rgba(0,0,0,.16) !important;
  backdrop-filter: blur(14px);
}

.market-power,
.p-section,
.category-showcase,
.region-showcase,
.contact-panel,
.interaction-section {
  background: transparent !important;
}

.market-power {
  padding: 74px 0 34px !important;
}

.market-power-grid,
.p-section-grid {
  gap: clamp(24px, 4vw, 54px) !important;
}

.market-power-copy h2,
.p-section-copy h2,
.section-head h2 {
  color: var(--ink) !important;
}

.market-power-copy p,
.p-section-copy p,
.section-head p,
.legal-clause p {
  color: var(--text) !important;
}

.market-power-cards,
.p-card-grid {
  gap: 14px !important;
}

.market-power-cards article,
.p-card,
.route-cards a,
.access-primary,
.compact-access-form,
.legal-clause,
.access-panel,
.confirmation-panel {
  border-radius: 8px !important;
  background: rgba(250,248,244,.86) !important;
  border: 1px solid rgba(198,161,91,.2) !important;
  box-shadow: 0 20px 54px rgba(20,34,53,.08) !important;
}

.market-power-cards article::before,
.p-card::before {
  background: linear-gradient(90deg, var(--teal), var(--champagne)) !important;
}

.market-power-cards h3,
.p-card h3,
.route-cards strong,
.access-panel h3,
.legal-clause strong {
  color: var(--ink) !important;
}

.market-power-cards p,
.p-card p,
.route-cards span,
.access-panel,
.field-hint,
.form-intro {
  color: var(--text) !important;
}

.category-showcase {
  padding: 44px 0 76px !important;
}

.compact-head {
  max-width: 720px !important;
}

.shopping-area-list {
  max-width: 820px !important;
  gap: 9px !important;
}

.shopping-area-list span,
.category-chip-row span,
.regional-market-list span {
  min-height: 34px !important;
  padding: 8px 13px !important;
  color: #14313B !important;
  background: linear-gradient(180deg, rgba(255,255,255,.8), rgba(246,243,238,.84)) !important;
  border: 1px solid rgba(198,161,91,.28) !important;
  box-shadow: 0 8px 20px rgba(20,34,53,.05) !important;
}

.area-principles {
  display: none !important;
}

.interaction-hero,
.dashboard-hero {
  background:
    radial-gradient(circle at 78% 20%, rgba(15,139,141,.18), transparent 26%),
    linear-gradient(180deg, var(--pearl), var(--ivory)) !important;
  color: var(--ink) !important;
  padding: 58px 0 32px !important;
}

.interaction-hero p,
.dashboard-hero p {
  color: var(--text) !important;
}

.access-heading {
  max-width: 820px !important;
}

.access-heading h2 {
  font-size: clamp(2rem, 3.2vw, 3.2rem) !important;
}

.access-tabs {
  margin: 20px 0 14px !important;
  background: rgba(250,248,244,.78) !important;
  border-color: rgba(198,161,91,.28) !important;
  border-radius: 999px !important;
}

.access-tabs a {
  padding: 8px 12px !important;
}

.access-tabs a[aria-current="page"],
.access-tabs a:hover {
  background: linear-gradient(135deg, var(--teal), var(--teal-deep)) !important;
}

.access-layout {
  grid-template-columns: minmax(300px, .76fr) minmax(340px, .92fr) !important;
  gap: 16px !important;
}

.intake-form {
  border-radius: 8px !important;
  padding: 18px !important;
}

.intake-form label,
.category-search-label {
  gap: 6px !important;
  color: rgba(20,34,53,.78) !important;
}

.intake-form input,
.intake-form select,
.intake-form textarea,
.category-multiselect,
.region-multiselect {
  min-height: 42px !important;
  border-radius: 10px !important;
  border-color: rgba(20,34,53,.14) !important;
  background: rgba(255,255,255,.82) !important;
  color: var(--ink) !important;
}

.category-choice-field.category-combobox {
  border-radius: 10px !important;
  padding: 12px !important;
  background: rgba(255,255,255,.62) !important;
  border-color: rgba(198,161,91,.22) !important;
}

.category-multiselect {
  max-height: 154px !important;
}

.p-card-grid:empty {
  display: none !important;
}

.p-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(15,139,141,.24), transparent 28%),
    radial-gradient(circle at 82% 72%, rgba(216,177,106,.12), transparent 28%),
    #10202E !important;
  color: rgba(250,248,244,.78) !important;
  border-top: 1px solid rgba(216,177,106,.34) !important;
  padding: 58px 0 54px !important;
}

.p-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(216,177,106,.12), transparent);
}

.p-footer-grid {
  position: relative;
  z-index: 1;
  gap: 34px !important;
}

.p-footer strong {
  color: #FFF4D9 !important;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .72rem;
}

.p-footer a {
  color: rgba(250,248,244,.74) !important;
  line-height: 1.9 !important;
}

.p-footer a:hover {
  color: var(--champagne) !important;
}

.footer-brand p {
  color: rgba(250,248,244,.78) !important;
}

.footer-brand img {
  filter: drop-shadow(0 14px 28px rgba(15,139,141,.2)) !important;
}

.legal-section {
  padding: 20px 0 !important;
}

.legal-doc {
  max-width: 920px !important;
}

.legal-clause {
  padding: clamp(22px, 3vw, 34px) !important;
}

.legal-clause h2 {
  font-size: clamp(1.25rem, 2vw, 1.65rem) !important;
  line-height: 1.22 !important;
}

.legal-clause p,
.legal-clause li {
  line-height: 1.74 !important;
}

.legal-clause ol {
  gap: 11px !important;
}

@media (max-width: 1120px) {
  .p-header {
    align-items: flex-start !important;
    display: grid !important;
    grid-template-columns: 1fr auto !important;
  }

  .p-nav {
    grid-column: 1 / -1;
    justify-content: flex-start !important;
    flex-wrap: wrap !important;
  }
}

@media (max-width: 900px) {
  .p-hero-grid,
  .market-power-grid,
  .p-section-grid,
  .access-layout {
    grid-template-columns: 1fr !important;
  }

  .p-visual {
    min-height: 340px !important;
  }

  .p-header {
    position: relative !important;
  }
}

@media (max-width: 560px) {
  .p-wrap {
    width: min(100% - 28px, 1160px) !important;
  }

  .p-header {
    padding: 10px 14px !important;
  }

  .language-selector {
    justify-content: flex-end !important;
  }

  .p-nav a {
    font-size: .76rem !important;
    padding: 7px 8px !important;
  }

  .p-hero {
    padding-top: 56px !important;
  }

  .p-actions,
  .shopping-area-list,
  .category-chip-row,
  .regional-market-list {
    justify-content: flex-start !important;
  }

  .access-tabs {
    display: grid !important;
    grid-template-columns: 1fr !important;
    border-radius: 14px !important;
  }
}

/* Homepage "Why Peddlo exists" section balance */
.page-home .market-power {
  padding: 52px 0 28px !important;
  margin: 0 !important;
}

.page-home .market-power .market-power-grid {
  width: min(1200px, calc(100% - 44px)) !important;
  grid-template-columns: minmax(300px, .78fr) minmax(660px, 1.22fr) !important;
  gap: clamp(30px, 4vw, 48px) !important;
  align-items: start !important;
}

.page-home .market-power .market-power-copy h2 {
  max-width: 440px !important;
  margin-bottom: 14px !important;
}

.page-home .market-power .market-power-copy p {
  max-width: 430px !important;
  line-height: 1.64 !important;
}

.page-home .market-power .market-power-cards {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(200px, 1fr)) !important;
  grid-auto-rows: 1fr !important;
  gap: 16px !important;
  width: 100% !important;
  align-items: stretch !important;
}

.page-home .market-power .market-power-cards > article {
  display: flex !important;
  min-height: 214px !important;
  height: 100% !important;
  flex-direction: column !important;
  padding: 23px 22px 21px !important;
  border-radius: 18px !important;
  -webkit-tap-highlight-color: transparent;
}

.page-home .market-power .market-power-cards > article h3 {
  min-height: 2.55em !important;
  margin: 0 0 11px !important;
  font-size: 1.03rem !important;
  line-height: 1.27 !important;
}

.page-home .market-power .market-power-cards > article p {
  margin: 0 !important;
  font-size: .95rem !important;
  line-height: 1.58 !important;
}

.page-home .market-power .market-power-cards > article::selection,
.page-home .market-power .market-power-cards > article *::selection {
  color: inherit;
  background: rgba(216, 177, 106, .24);
}

@media (max-width: 1100px) {
  .page-home .market-power .market-power-grid {
    grid-template-columns: 1fr !important;
  }

  .page-home .market-power .market-power-cards {
    grid-template-columns: repeat(3, minmax(180px, 1fr)) !important;
  }
}

@media (max-width: 760px) {
  .page-home .market-power {
    padding: 42px 0 24px !important;
  }

  .page-home .market-power .market-power-grid {
    width: min(100% - 28px, 1160px) !important;
  }

  .page-home .market-power .market-power-cards {
    grid-template-columns: 1fr !important;
  }

  .page-home .market-power .market-power-cards > article {
    min-height: 0 !important;
  }

  .page-home .market-power .market-power-cards > article h3 {
    min-height: 0 !important;
  }
}

/* Align homepage market-power cards with the left text block */
.page-home .market-power .market-power-cards {
  align-self: center !important;
  margin-top: 18px !important;
}

/* Public mobile overflow guard */
@media (max-width: 768px) {
  html,
  body {
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  html body[class^="page-"],
  html body[class^="page-"] * {
    box-sizing: border-box;
  }

  html body[class^="page-"] .p-site,
  html body[class^="page-"] main,
  html body[class^="page-"] section {
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  html body[class^="page-"] .p-wrap,
  html body[class^="page-"] .p-hero-grid,
  html body[class^="page-"] .market-power-grid,
  html body[class^="page-"] .p-section-grid,
  html body[class^="page-"] .p-global-band,
  html body[class^="page-"] .p-benefit-grid,
  html body[class^="page-"] .p-footer-grid,
  html body[class^="page-"] .access-layout,
  html body[class^="page-"] .access-lanes {
    width: min(100% - 28px, 1160px) !important;
    max-width: 100% !important;
    grid-template-columns: 1fr !important;
    min-width: 0 !important;
  }

  html body[class^="page-"] .p-header {
    max-width: 100% !important;
    min-width: 0 !important;
    overflow: hidden !important;
  }

  html body[class^="page-"] .p-brand,
  html body[class^="page-"] .language-selector {
    min-width: 0 !important;
  }

  html body[class^="page-"] .p-nav {
    width: 100% !important;
    max-width: calc(100vw - 28px) !important;
    min-width: 0 !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch;
  }

  html body[class^="page-"] .p-nav a {
    min-height: 38px !important;
  }

  html body[class^="page-"] h1,
  html body[class^="page-"] h2,
  html body[class^="page-"] h3,
  html body[class^="page-"] p,
  html body[class^="page-"] a,
  html body[class^="page-"] span {
    overflow-wrap: anywhere;
  }

  html body[class^="page-"] .p-hero {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  html body[class^="page-"] .p-hero h1 {
    max-width: 100% !important;
    font-size: clamp(2.25rem, 11.2vw, 3.55rem) !important;
    line-height: 1.04 !important;
  }

  html body[class^="page-"] .p-hero-copy p {
    max-width: 100% !important;
    font-size: clamp(.98rem, 4vw, 1.08rem) !important;
  }

  html body[class^="page-"] .premium-bag-visual,
  html body[class^="page-"] .p-visual {
    width: 100% !important;
    max-width: 100% !important;
    min-height: clamp(300px, 78vw, 380px) !important;
  }

  html body[class^="page-"] .p-visual-card {
    width: 100% !important;
    max-width: 100% !important;
    height: clamp(290px, 74vw, 350px) !important;
    overflow: hidden !important;
  }

  html body[class^="page-"] .p-bag-front {
    width: min(178px, 46vw) !important;
    height: min(210px, 54vw) !important;
    left: 26% !important;
  }

  html body[class^="page-"] .p-bag-back {
    width: min(132px, 35vw) !important;
    height: min(160px, 42vw) !important;
    right: 7% !important;
  }

  html body[class^="page-"] .market-power-cards,
  html body[class^="page-"] .p-card-grid,
  html body[class^="page-"] .route-cards {
    width: 100% !important;
    max-width: 100% !important;
    grid-template-columns: 1fr !important;
    min-width: 0 !important;
  }

  html body[class^="page-"] .market-power-cards > article,
  html body[class^="page-"] .p-card,
  html body[class^="page-"] .route-cards > * {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  html body[class^="page-"] .p-global-band {
    gap: 20px !important;
  }

  html body[class^="page-"] .p-map,
  html body[class^="page-"] .p-map-field {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow: hidden !important;
  }

  html body[class^="page-"] .p-map {
    min-height: clamp(220px, 58vw, 330px) !important;
  }

  html body[class^="page-"] .global-map-art,
  html body[class^="page-"] .p-map-globe,
  html body[class^="page-"] svg,
  html body[class^="page-"] img {
    max-width: 100% !important;
    height: auto;
  }

  html body[class^="page-"] .p-benefit-grid article {
    width: 100% !important;
    max-width: 100% !important;
  }

  html body[class^="page-"] .p-footer {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

@media (max-width: 480px) {
  html body[class^="page-"] .p-wrap,
  html body[class^="page-"] .p-hero-grid,
  html body[class^="page-"] .market-power-grid,
  html body[class^="page-"] .p-section-grid,
  html body[class^="page-"] .p-global-band,
  html body[class^="page-"] .p-benefit-grid,
  html body[class^="page-"] .p-footer-grid {
    width: min(100% - 22px, 1160px) !important;
  }

  html body[class^="page-"] .p-hero h1 {
    font-size: clamp(2rem, 10.8vw, 2.9rem) !important;
  }

  html body[class^="page-"] .p-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    width: 100% !important;
  }

  html body[class^="page-"] .p-btn {
    width: 100% !important;
    justify-content: center !important;
    min-height: 46px !important;
  }

  html body[class^="page-"] .p-nav {
    max-width: calc(100vw - 22px) !important;
  }

  html body[class^="page-"] .p-footer-grid {
    gap: 18px !important;
  }
}

/* How-it-works: allow flow and boundary tile copy to wrap */
body.page-how-it-works main section.p-section .p-card {
  height: auto !important;
  min-height: 104px !important;
  max-height: none !important;
  padding: 19px 24px !important;
  overflow: visible !important;
}

body.page-how-it-works main section.p-section .p-card p {
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
  line-height: 1.45 !important;
}

/* Compact text-only hero banners for non-home public pages */
body.page-buyers .p-hero,
body.page-sellers .p-hero,
body.page-how-it-works .p-hero,
body.page-questions .p-hero,
body.page-trust .p-hero,
body.page-sign-in .p-hero {
  padding: clamp(42px, 6vw, 68px) 0 clamp(34px, 5vw, 54px) !important;
}

body.page-buyers .p-hero-grid,
body.page-sellers .p-hero-grid,
body.page-how-it-works .p-hero-grid,
body.page-questions .p-hero-grid,
body.page-trust .p-hero-grid,
body.page-sign-in .p-hero-grid {
  display: block !important;
  width: min(1160px, calc(100% - 40px)) !important;
  max-width: 1160px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

body.page-buyers .p-hero-copy,
body.page-sellers .p-hero-copy,
body.page-how-it-works .p-hero-copy,
body.page-questions .p-hero-copy,
body.page-trust .p-hero-copy,
body.page-sign-in .p-hero-copy {
  max-width: 820px !important;
}

body.page-buyers .p-hero h1,
body.page-sellers .p-hero h1,
body.page-how-it-works .p-hero h1,
body.page-questions .p-hero h1,
body.page-trust .p-hero h1,
body.page-sign-in .p-hero h1 {
  max-width: 820px !important;
  font-size: clamp(2.15rem, 4.6vw, 4.05rem) !important;
}

body.page-buyers .p-hero-copy p,
body.page-sellers .p-hero-copy p,
body.page-how-it-works .p-hero-copy p,
body.page-questions .p-hero-copy p,
body.page-trust .p-hero-copy p,
body.page-sign-in .p-hero-copy p {
  max-width: 760px !important;
}

body.page-buyers .p-hero .p-visual,
body.page-sellers .p-hero .p-visual,
body.page-how-it-works .p-hero .p-visual,
body.page-questions .p-hero .p-visual,
body.page-trust .p-hero .p-visual,
body.page-sign-in .p-hero .p-visual {
  display: none !important;
}

/* Sign-in page: three clear account-access blocks */
.page-sign-in .interaction-section {
  padding-top: 30px !important;
}

.page-sign-in .access-heading {
  max-width: 780px !important;
  margin-bottom: 22px !important;
}

.page-sign-in .access-heading .route-cards,
.page-sign-in .access-tabs,
.page-sign-in .access-panel {
  display: none !important;
}

.page-sign-in .access-layout.access-stack {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 18px !important;
  align-items: start !important;
  max-width: 980px !important;
}

.page-sign-in .access-lane {
  width: 100% !important;
  min-width: 0 !important;
  padding: clamp(18px, 2.4vw, 26px) !important;
  border-radius: 16px !important;
}

.page-sign-in .access-priority {
  grid-column: 1 / -1 !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto !important;
  gap: 14px !important;
  align-items: end !important;
  background: linear-gradient(180deg, rgba(250,248,244,.96), rgba(246,243,238,.88)) !important;
  border-color: rgba(198, 161, 91, .32) !important;
}

.page-sign-in .access-priority h3,
.page-sign-in .access-priority .form-intro,
.page-sign-in .access-priority .form-boundary {
  grid-column: 1 / -1 !important;
}

.page-sign-in .access-lane h3 {
  margin-bottom: 6px !important;
  font-size: 1.24rem !important;
}

.page-sign-in .form-intro {
  margin-bottom: 12px !important;
  min-height: 0 !important;
}

.page-sign-in .intake-form label,
.page-sign-in .category-choice-field {
  margin-bottom: 11px !important;
}

.page-sign-in .intake-form input,
.page-sign-in .intake-form select,
.page-sign-in .category-closed-select,
.page-sign-in .region-closed-select {
  width: 100% !important;
  min-height: 44px !important;
}

.page-sign-in .category-choice-field.category-closed-field {
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.page-sign-in .category-choice-field.category-closed-field legend {
  margin: 0 0 6px !important;
  color: rgba(20,34,53,.78) !important;
  font-size: .84rem !important;
  font-weight: 760 !important;
}

.page-sign-in .category-choice-field.category-closed-field .field-hint {
  margin-top: 7px !important;
}

.page-sign-in .form-boundary {
  margin: 2px 0 0 !important;
}

@media (max-width: 860px) {
  .page-sign-in .access-layout.access-stack,
  .page-sign-in .access-priority {
    grid-template-columns: 1fr !important;
  }
}

/* Sign-in page: full-width stacked access blocks */
.page-sign-in .access-layout.access-stack {
  grid-template-columns: 1fr !important;
  max-width: 1080px !important;
  gap: 18px !important;
}

.page-sign-in .access-block {
  display: grid !important;
  grid-template-columns: minmax(220px, .62fr) minmax(0, 1.38fr) !important;
  gap: clamp(18px, 3vw, 34px) !important;
  align-items: start !important;
  width: 100% !important;
  padding: clamp(18px, 2.5vw, 28px) !important;
  border-radius: 18px !important;
  border: 1px solid rgba(198, 161, 91, .2) !important;
  background: rgba(250, 248, 244, .78) !important;
  box-shadow: 0 22px 58px rgba(20, 34, 53, .08) !important;
}

.page-sign-in .access-block-copy h3 {
  margin: 0 0 8px !important;
  color: var(--ink) !important;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem) !important;
  line-height: 1.15 !important;
}

.page-sign-in .access-block-copy p {
  max-width: 320px !important;
  margin: 0 !important;
  color: rgba(36, 52, 71, .78) !important;
  line-height: 1.55 !important;
}

.page-sign-in .access-block .intake-form {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 12px !important;
  margin: 0 !important;
  padding: 18px !important;
  border-radius: 14px !important;
  background: rgba(255, 255, 255, .64) !important;
}

.page-sign-in .access-block .intake-form label,
.page-sign-in .access-block .category-choice-field,
.page-sign-in .access-block .form-boundary {
  margin: 0 !important;
}

.page-sign-in .access-block .intake-form .full,
.page-sign-in .access-block .category-choice-field,
.page-sign-in .access-block .p-btn,
.page-sign-in .access-block .form-boundary {
  grid-column: 1 / -1 !important;
}

.page-sign-in .access-login-block .intake-form {
  grid-template-columns: minmax(150px, .72fr) repeat(2, minmax(0, 1fr)) !important;
}

.page-sign-in .access-login-block .p-btn {
  grid-column: auto !important;
}

.page-sign-in .access-login-block .form-boundary {
  grid-column: 1 / -1 !important;
}

.language-legal-note {
  width: min(920px, calc(100% - 40px));
  margin: 22px auto 0;
  padding: 12px 16px;
  border: 1px solid rgba(198, 161, 91, .28);
  border-radius: 12px;
  background: rgba(250, 248, 244, .9);
  color: rgba(20, 34, 53, .78);
  font-size: .92rem;
}

@media (max-width: 820px) {
  .page-sign-in .access-block,
  .page-sign-in .access-block .intake-form,
  .page-sign-in .access-login-block .intake-form {
    grid-template-columns: 1fr !important;
  }

  .page-sign-in .access-block-copy p {
    max-width: 100% !important;
  }

  .page-sign-in .access-login-block .p-btn {
    grid-column: 1 / -1 !important;
  }
}
