:root {
  --ink: #111c44;
  --ink-soft: #4f5876;
  --muted: #7b839e;
  --surface: #ffffff;
  --background: #f7f8ff;
  --line: #e8e9f3;
  --purple: #8d5cf6;
  --purple-dark: #6f42d8;
  --pink: #ff5fa2;
  --orange: #ff9f43;
  --yellow: #ffd166;
  --green: #29c58b;
  --blue: #4f7cff;
  --gradient: linear-gradient(120deg, var(--purple) 0%, var(--pink) 55%, var(--orange) 100%);
  --shadow-sm: 0 10px 30px rgba(32, 38, 75, 0.08);
  --shadow-md: 0 22px 60px rgba(49, 43, 94, 0.14);
  --shadow-color: 0 22px 55px rgba(141, 92, 246, 0.26);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 34px;
  --shell: 1480px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--background);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
}

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

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

[hidden] {
  display: none !important;
}

.shell {
  width: min(calc(100% - 64px), var(--shell));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 3px solid rgba(79, 124, 255, 0.55);
  outline-offset: 3px;
}

.announcement {
  min-height: 38px;
  padding: 7px 20px;
  color: #fff;
  background: var(--gradient);
  font-size: 0.79rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-align: center;
}

.announcement strong {
  font-weight: 800;
}

.announcement__spark {
  display: inline-block;
  margin-right: 8px;
  animation: twinkle 1.8s ease-in-out infinite;
}

.announcement__dot {
  padding-inline: 8px;
  opacity: 0.75;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(226, 227, 239, 0.78);
  background: rgba(255, 255, 255, 0.83);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 76px;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 10px;
  font-family: "Outfit", sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.brand strong {
  color: var(--purple-dark);
  font-weight: 800;
}

.brand-mark {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 9px);
  grid-template-rows: repeat(2, 9px);
  gap: 3px;
  width: 30px;
  height: 30px;
  padding: 3px;
  transform: rotate(-4deg);
}

.brand-mark span {
  border-radius: 4px 7px 4px 7px;
  background: var(--purple);
}

.brand-mark span:nth-child(2) {
  background: var(--pink);
}

.brand-mark span:nth-child(3) {
  background: var(--orange);
}

.brand-mark span:nth-child(4) {
  background: var(--green);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: #4a5270;
  font-size: 0.9rem;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  transition: color 180ms ease;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--gradient);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.main-nav a:hover {
  color: var(--ink);
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.header-inner > .button {
  justify-self: end;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  gap: 9px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  font-size: 0.89rem;
  font-weight: 800;
  line-height: 1.15;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease,
    background 180ms ease;
}

.button:hover:not(:disabled) {
  transform: translateY(-2px);
}

.button:active:not(:disabled) {
  transform: translateY(0);
}

.button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.button--small {
  min-height: 42px;
  padding-inline: 18px;
}

.button--large {
  min-height: 56px;
  padding-inline: 26px;
  border-radius: 17px;
}

.button--gradient {
  color: #fff;
  background: var(--gradient);
  box-shadow: 0 12px 28px rgba(141, 92, 246, 0.25);
}

.button--gradient:hover:not(:disabled) {
  box-shadow: 0 16px 34px rgba(141, 92, 246, 0.34);
}

.button--ghost {
  border-color: #e1e3ef;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 8px 20px rgba(17, 28, 68, 0.04);
}

.button--ghost:hover {
  border-color: rgba(141, 92, 246, 0.36);
  background: #fff;
}

.button--outline {
  border-color: rgba(141, 92, 246, 0.28);
  color: var(--purple-dark);
  background: #fff;
}

.button--white {
  color: var(--purple-dark);
  background: #fff;
  box-shadow: 0 14px 32px rgba(70, 30, 119, 0.2);
}

.button--wide {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background:
    radial-gradient(circle at 11% 28%, rgba(255, 95, 162, 0.09), transparent 24%),
    radial-gradient(circle at 88% 10%, rgba(79, 124, 255, 0.1), transparent 25%),
    linear-gradient(180deg, #fff 0%, #f9f8ff 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(470px, 0.97fr);
  align-items: center;
  min-height: 650px;
  gap: clamp(40px, 7vw, 110px);
  padding-block: 72px 86px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 7px 13px;
  border: 1px solid rgba(141, 92, 246, 0.14);
  border-radius: 999px;
  color: var(--purple-dark);
  background: rgba(141, 92, 246, 0.08);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(41, 197, 139, 0.5);
  animation: pulse 2s infinite;
}

.eyebrow--soft {
  margin-bottom: 13px;
  border: 0;
  color: var(--pink);
  background: rgba(255, 95, 162, 0.09);
}

.hero h1,
.section-heading h2,
.bottom-cta h2,
.modal-card h2,
.profile-hero h1,
.auth-card h1 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.03;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(3.35rem, 5.8vw, 6.2rem);
}

.hero h1 span {
  color: transparent;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-lead {
  max-width: 670px;
  margin: 27px 0 31px;
  color: var(--ink-soft);
  font-size: clamp(1.04rem, 1.4vw, 1.22rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.hero-promises {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 25px;
  color: #59617c;
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-promises span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-promises i {
  display: inline-grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-size: 0.69rem;
  font-style: normal;
}

.hero-visual {
  position: relative;
  min-height: 500px;
  perspective: 900px;
}

.hero-visual::before {
  position: absolute;
  inset: 7% 2% 2% 10%;
  border-radius: 50%;
  background: linear-gradient(140deg, rgba(141, 92, 246, 0.13), rgba(255, 95, 162, 0.16));
  filter: blur(2px);
  content: "";
  transform: rotate(-7deg);
}

.mosaic-card {
  position: absolute;
  z-index: 2;
  top: 53px;
  left: 50%;
  width: min(350px, 70%);
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.86);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 35px 75px rgba(55, 43, 105, 0.22);
  transform: translateX(-50%) rotate(3deg);
  animation: float-card 5s ease-in-out infinite;
}

.mosaic-card__cover {
  position: relative;
  height: 175px;
  overflow: hidden;
}

.gradient-agaplink {
  background:
    radial-gradient(circle at 70% 15%, rgba(255, 255, 255, 0.45) 0 8%, transparent 9%),
    radial-gradient(circle at 18% 85%, rgba(255, 255, 255, 0.24) 0 11%, transparent 12%),
    linear-gradient(130deg, #7259ee, #ff5fa2 70%, #ffb155);
}

.mosaic-heart {
  position: absolute;
  top: 15px;
  right: 16px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  font-size: 1.4rem;
}

.mosaic-badge {
  position: absolute;
  bottom: 14px;
  left: 15px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.68rem;
  font-weight: 800;
}

.mosaic-card__body {
  position: relative;
  padding: 34px 22px 25px;
}

.mosaic-logo {
  position: absolute;
  top: -31px;
  left: 21px;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 5px solid #fff;
  border-radius: 19px;
  color: #fff;
  background: var(--ink);
  font-family: "Outfit", sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
}

.mosaic-card__body p {
  margin: 0 0 2px;
  color: var(--purple);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.mosaic-card__body h3 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 1.55rem;
}

.mosaic-card__body > span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.78rem;
}

.mini-card,
.floating-pill {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(13px);
}

.mini-card {
  gap: 12px;
  min-width: 205px;
  padding: 13px 16px;
  border-radius: 19px;
}

.mini-card__icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  background: #effbf6;
  font-size: 1.25rem;
}

.mini-card strong,
.mini-card small {
  display: block;
}

.mini-card strong {
  font-size: 0.82rem;
}

.mini-card small {
  color: var(--muted);
  font-size: 0.66rem;
}

.mini-card--one {
  top: 270px;
  left: -6px;
  transform: rotate(-4deg);
  animation: float-one 4.8s ease-in-out infinite;
}

.mini-card--two {
  right: -2px;
  bottom: 62px;
  transform: rotate(4deg);
  animation: float-two 5.4s ease-in-out infinite;
}

.floating-pill {
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 800;
}

.floating-pill--top {
  top: 22px;
  right: 7px;
  animation: bob 4.2s ease-in-out infinite;
}

.floating-pill--bottom {
  bottom: 28px;
  left: 23%;
  color: #fff;
  background: var(--ink);
  animation: bob 4.6s ease-in-out 0.5s infinite;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  opacity: 0.48;
}

.hero-blob--one {
  top: 60px;
  right: -100px;
  width: 330px;
  height: 330px;
  background: rgba(255, 209, 102, 0.2);
}

.hero-blob--two {
  bottom: -130px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: rgba(141, 92, 246, 0.12);
}

.hero-dots {
  position: absolute;
  top: 78px;
  left: 4%;
  width: 100px;
  height: 100px;
  opacity: 0.34;
  background-image: radial-gradient(var(--purple) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
}

.trust-strip {
  position: relative;
  z-index: 3;
  border-block: 1px solid rgba(228, 229, 239, 0.86);
  background: #fff;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 108px;
}

.trust-grid article {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 20px;
  border-right: 1px solid var(--line);
}

.trust-grid article:last-child {
  border-right: 0;
}

.trust-grid article > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  background: #f4f1ff;
  font-size: 1.2rem;
}

.trust-grid strong,
.trust-grid small {
  display: block;
}

.trust-grid strong {
  font-size: 0.86rem;
}

.trust-grid small {
  color: var(--muted);
  font-size: 0.71rem;
}

.mural-section,
.how-section {
  padding-block: 100px;
}

.mural-section {
  background:
    radial-gradient(circle at 0 30%, rgba(79, 124, 255, 0.07), transparent 22%),
    var(--background);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 35px;
}

.section-heading h2 {
  max-width: 790px;
  font-size: clamp(2.2rem, 3.6vw, 3.8rem);
}

.section-heading p {
  max-width: 700px;
  margin: 16px 0 0;
  color: var(--ink-soft);
}

.section-heading--center {
  display: block;
  text-align: center;
}

.section-heading--center h2 {
  margin-inline: auto;
}

.directory-toolbar {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-sm);
}

.search-box {
  display: flex;
  align-items: center;
  flex: 0 0 min(330px, 31%);
  min-height: 46px;
  gap: 10px;
  padding: 0 15px;
  border: 1px solid #e2e4ee;
  border-radius: 13px;
  background: #fff;
}

.search-box > span[aria-hidden] {
  color: var(--purple);
  font-family: sans-serif;
  font-size: 1.45rem;
  line-height: 1;
}

.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 0.83rem;
}

.search-box input::placeholder {
  color: #9ba1b7;
}

.category-scroll {
  display: flex;
  overflow-x: auto;
  flex: 1;
  gap: 8px;
  padding: 2px 2px 5px;
  scrollbar-width: thin;
}

.category-chip {
  flex: none;
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid #e7e8f0;
  border-radius: 999px;
  color: #606881;
  background: #fff;
  cursor: pointer;
  font-size: 0.74rem;
  font-weight: 800;
  transition: all 170ms ease;
}

.category-chip:hover,
.category-chip.is-active {
  border-color: var(--purple);
  color: #fff;
  background: var(--purple);
  box-shadow: 0 8px 19px rgba(141, 92, 246, 0.2);
}

.directory-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 19px 2px 22px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.directory-status p {
  margin: 0;
}

.directory-status > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.directory-status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(41, 197, 139, 0.12);
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.business-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(225, 226, 238, 0.9);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 26px rgba(25, 32, 72, 0.06);
  opacity: 0;
  transform: translateY(12px);
  animation: card-in 450ms ease forwards;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.business-card:hover {
  z-index: 1;
  border-color: color-mix(in srgb, var(--card-primary) 30%, #e2e4ef);
  box-shadow: 0 20px 45px color-mix(in srgb, var(--card-primary) 13%, transparent);
  transform: translateY(-6px);
}

.business-card__cover {
  position: relative;
  height: 92px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 22%, rgba(255, 255, 255, 0.4) 0 7%, transparent 7.5%),
    radial-gradient(circle at 15% 90%, rgba(255, 255, 255, 0.24) 0 13%, transparent 13.5%),
    linear-gradient(135deg, var(--card-primary), var(--card-secondary));
}

.business-card__cover::after {
  position: absolute;
  top: -34px;
  right: 30px;
  width: 75px;
  height: 130px;
  border: 16px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
  transform: rotate(30deg);
}

.business-card__cover.has-image {
  background-position: center;
  background-size: cover;
}

.business-card__category,
.business-card__featured {
  position: absolute;
  z-index: 2;
  top: 12px;
  padding: 5px 8px;
  border-radius: 999px;
  font-size: 0.59rem;
  font-weight: 800;
  line-height: 1;
}

.business-card__category {
  left: 11px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
}

.business-card__featured {
  right: 10px;
  color: #fff;
  background: rgba(17, 28, 68, 0.72);
  backdrop-filter: blur(8px);
}

.business-card__featured--new {
  background: rgba(30, 169, 116, 0.9);
}

.business-card__body {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 262px;
  padding: 40px 16px 15px;
}

.business-card__logo {
  position: absolute;
  top: -31px;
  left: 15px;
  display: grid;
  width: 58px;
  height: 58px;
  overflow: hidden;
  place-items: center;
  border: 4px solid #fff;
  border-radius: 17px;
  color: #fff;
  background: linear-gradient(135deg, var(--card-primary), var(--card-secondary));
  box-shadow: 0 8px 18px rgba(17, 28, 68, 0.13);
  font-family: "Outfit", sans-serif;
  font-size: 1.13rem;
  font-weight: 800;
}

.business-card__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.business-card h3 {
  overflow: hidden;
  margin: 0 0 7px;
  font-family: "Outfit", sans-serif;
  font-size: 1.08rem;
  letter-spacing: -0.025em;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.business-card h3 a:hover {
  color: var(--card-primary);
}

.business-card__body > p {
  display: -webkit-box;
  min-height: 58px;
  overflow: hidden;
  margin: 0 0 12px;
  color: var(--ink-soft);
  font-size: 0.73rem;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.business-card__location {
  display: block;
  overflow: hidden;
  margin-top: auto;
  padding-bottom: 12px;
  color: #7a829a;
  font-size: 0.66rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.business-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 35px;
  gap: 7px;
  padding-top: 11px;
  border-top: 1px solid #eff0f5;
}

.business-card__socials {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 5px;
}

.business-card__socials a {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid #e7e8f0;
  border-radius: 8px;
  color: #636b85;
  background: #fafaff;
  font-size: 0.6rem;
  font-weight: 800;
  transition: all 160ms ease;
}

.business-card__socials a:hover {
  border-color: var(--card-primary);
  color: #fff;
  background: var(--card-primary);
}

.business-card__private-contact {
  color: #9a9fb0;
  font-size: 0.58rem;
  font-weight: 700;
}

.business-card__view {
  flex: none;
  padding: 5px 0 5px 5px;
  color: var(--card-primary);
  background: transparent;
  cursor: pointer;
  font-size: 0.65rem;
  font-weight: 800;
}

.skeleton-card {
  height: 354px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
}

.skeleton-card::after {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(100deg, transparent 20%, rgba(237, 238, 247, 0.9) 45%, transparent 70%);
  content: "";
  transform: translateX(-100%);
  animation: skeleton 1.4s infinite;
}

.empty-state {
  padding: 70px 20px;
  border: 1px dashed #d9dbea;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.empty-state > span {
  font-size: 2.2rem;
}

.empty-state h3 {
  margin: 10px 0 4px;
  font-family: "Outfit", sans-serif;
}

.empty-state p {
  margin: 0;
  color: var(--muted);
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 34px;
}

.pagination > span {
  min-width: 80px;
  color: var(--ink-soft);
  font-size: 0.77rem;
  font-weight: 800;
  text-align: center;
}

.page-button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid #dedfea;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  font-size: 0.74rem;
  font-weight: 800;
}

.page-button:hover:not(:disabled) {
  border-color: var(--purple);
  color: var(--purple-dark);
}

.page-button:disabled {
  cursor: not-allowed;
  opacity: 0.4;
}

.how-section {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.how-section::before {
  position: absolute;
  top: 20px;
  left: -80px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(255, 95, 162, 0.06);
  content: "";
}

.steps-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1130px;
  gap: 22px;
  margin: 55px auto 0;
}

.steps-grid::before {
  position: absolute;
  z-index: 0;
  top: 74px;
  right: 22%;
  left: 22%;
  border-top: 2px dashed #ded9f3;
  content: "";
}

.step-card {
  position: relative;
  z-index: 1;
  padding: 31px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.step-card--raised {
  border-color: rgba(141, 92, 246, 0.2);
  box-shadow: var(--shadow-color);
  transform: translateY(-14px);
}

.step-number {
  position: absolute;
  top: 20px;
  right: 23px;
  color: #e7e2f6;
  font-family: "Outfit", sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
}

.step-icon {
  display: grid;
  width: 61px;
  height: 61px;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 19px;
  font-size: 1.6rem;
}

.step-icon--purple {
  background: #eee8ff;
}

.step-icon--pink {
  background: #fff0f6;
}

.step-icon--orange {
  background: #fff4e6;
}

.step-card h3 {
  margin: 0 0 9px;
  font-family: "Outfit", sans-serif;
  font-size: 1.25rem;
}

.step-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.bottom-cta {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(120deg, #6846ce, #a650e4 48%, #eb579d 100%);
}

.bottom-cta__blob {
  position: absolute;
  top: -100px;
  right: 15%;
  width: 320px;
  height: 320px;
  border: 60px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
}

.bottom-cta__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 225px;
  gap: 30px;
}

.bottom-cta__emoji {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 23px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 2rem;
  transform: rotate(-5deg);
}

.bottom-cta p {
  margin: 0 0 4px;
  opacity: 0.82;
  font-size: 0.9rem;
  font-weight: 700;
}

.bottom-cta h2 {
  font-size: clamp(2rem, 3vw, 3.1rem);
}

.site-footer {
  padding-block: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #c5c8d8;
  background: #111735;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  font-size: 0.75rem;
}

.brand--footer {
  color: #fff;
}

.brand--footer strong {
  color: #d5c2ff;
}

.footer-grid p {
  margin: 0;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

.footer-links a:hover {
  color: #fff;
}

.modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  overflow-y: auto;
  place-items: center;
  padding: 28px;
  opacity: 0;
  transition: opacity 180ms ease;
}

.modal.is-visible {
  opacity: 1;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(12, 17, 45, 0.68);
  backdrop-filter: blur(10px);
}

.modal-backdrop--color {
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 95, 162, 0.33), transparent 35%),
    radial-gradient(circle at 85% 80%, rgba(79, 124, 255, 0.32), transparent 34%),
    rgba(12, 17, 45, 0.75);
}

.modal-card {
  position: relative;
  z-index: 2;
  width: min(100%, 700px);
  max-height: calc(100vh - 56px);
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 27px;
  background: #fff;
  box-shadow: 0 35px 100px rgba(12, 17, 45, 0.35);
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  transition: opacity 200ms ease, transform 220ms ease;
}

.modal.is-visible .modal-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  z-index: 5;
  top: 17px;
  right: 17px;
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border: 1px solid #e5e6ef;
  border-radius: 50%;
  color: #666e86;
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  font-size: 1.45rem;
  line-height: 1;
  transition: transform 170ms ease, background 170ms ease;
}

.modal-close:hover {
  color: var(--ink);
  background: #f3f1fa;
  transform: rotate(5deg);
}

.modal-card--form {
  width: min(100%, 810px);
  padding: 37px;
}

.form-intro {
  display: flex;
  gap: 17px;
  margin: 2px 48px 28px 0;
}

.form-intro__icon {
  display: grid;
  flex: none;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 17px;
  background: linear-gradient(135deg, #eee8ff, #fff0f6);
  font-size: 1.3rem;
}

.form-intro__tag,
.offer-kicker {
  display: inline-block;
  margin-bottom: 5px;
  color: var(--purple-dark);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.form-intro h2 {
  font-size: clamp(1.7rem, 4vw, 2.35rem);
}

.form-intro p {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 17px;
}

.field {
  display: block;
  min-width: 0;
}

.field--wide {
  grid-column: 1 / -1;
}

.field > span,
.social-fieldset__heading > span {
  display: block;
  margin: 0 0 7px 2px;
  color: #333c5e;
  font-size: 0.72rem;
  font-weight: 800;
}

.field b,
.check-row b {
  color: var(--pink);
}

.field input,
.field select,
.field textarea,
.social-input {
  width: 100%;
  border: 1px solid #dfe1ec;
  border-radius: 12px;
  background: #fbfbfe;
  outline: none;
  transition: border-color 170ms ease, box-shadow 170ms ease, background 170ms ease;
}

.field input,
.field select {
  height: 47px;
  padding: 0 13px;
}

.field textarea {
  min-height: 88px;
  padding: 12px 13px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.social-input:focus-within {
  border-color: rgba(141, 92, 246, 0.75);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(141, 92, 246, 0.1);
}

.field input::placeholder,
.field textarea::placeholder,
.social-input input::placeholder {
  color: #a1a6b7;
}

.field > small {
  display: block;
  margin: 4px 3px 0;
  color: var(--muted);
  font-size: 0.62rem;
  text-align: right;
}

.social-fieldset {
  padding: 16px;
  border: 1px solid #e5e6ef;
  border-radius: 16px;
  background: #fafaff;
}

.social-fieldset__heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 10px;
}

.social-fieldset__heading > span {
  margin: 0;
}

.social-fieldset__heading small {
  color: var(--muted);
  font-size: 0.62rem;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.social-input {
  display: flex;
  align-items: center;
  height: 44px;
  overflow: hidden;
}

.social-input i {
  display: grid;
  flex: none;
  width: 43px;
  height: 100%;
  place-items: center;
  border-right: 1px solid #e5e6ef;
  color: var(--purple);
  background: #fff;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 800;
}

.social-input input {
  min-width: 0;
  height: 100%;
  padding: 0 10px;
  border: 0;
  background: transparent;
  outline: 0;
  font-size: 0.75rem;
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 15px;
  color: #59617a;
  cursor: pointer;
  font-size: 0.69rem;
  line-height: 1.45;
}

.check-row + .check-row {
  margin-top: 10px;
}

.check-row input {
  flex: none;
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: var(--purple);
}

.check-row a {
  color: var(--purple-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.form-error {
  margin-top: 15px;
  padding: 11px 13px;
  border: 1px solid #ffc7da;
  border-radius: 11px;
  color: #9e2f58;
  background: #fff2f7;
  font-size: 0.72rem;
  font-weight: 700;
}

.button--submit {
  width: 100%;
  min-height: 52px;
  margin-top: 18px;
}

.button--submit.is-loading strong {
  width: 17px;
  height: 17px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: #fff;
  border-radius: 50%;
  font-size: 0;
  animation: spin 0.8s linear infinite;
}

.privacy-note {
  margin: 9px 0 0;
  color: #8c92a6;
  font-size: 0.61rem;
  text-align: center;
}

.modal-card--quick {
  width: min(100%, 500px);
  overflow: hidden;
  padding: 0 30px 31px;
  text-align: center;
}

.quick-cover {
  position: relative;
  height: 132px;
  margin-inline: -30px;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.34) 0 8%, transparent 8.5%),
    linear-gradient(135deg, var(--quick-primary), var(--quick-secondary));
}

.quick-cover > span {
  position: absolute;
  bottom: 17px;
  left: 30px;
  font-size: 2rem;
}

.quick-cover > b {
  position: absolute;
  right: 60px;
  bottom: 20px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.61rem;
}

.quick-logo {
  display: grid;
  width: 76px;
  height: 76px;
  margin: -38px auto 13px;
  place-items: center;
  border: 5px solid #fff;
  border-radius: 22px;
  color: #fff;
  background: var(--ink);
  box-shadow: var(--shadow-sm);
  font-family: "Outfit", sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
}

.quick-category {
  color: var(--purple);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.modal-card--quick h2 {
  margin-top: 5px;
  font-size: 2rem;
}

.modal-card--quick p {
  margin: 12px auto;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.quick-location {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.quick-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
  margin: 18px 0;
}

.quick-social-link {
  padding: 7px 12px;
  border: 1px solid #e3e4ed;
  border-radius: 999px;
  color: var(--purple-dark);
  background: #faf9ff;
  font-size: 0.66rem;
  font-weight: 800;
}

.quick-contact-note {
  color: var(--muted);
  font-size: 0.7rem;
}

.quick-profile-link {
  width: 100%;
}

.modal--celebration {
  z-index: 120;
}

#confettiCanvas {
  position: fixed;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.modal-card--offer {
  width: min(100%, 740px);
  overflow: visible;
  padding: 40px;
}

.modal-card--offer h2 {
  font-size: clamp(2rem, 4.5vw, 3.15rem);
}

.modal-card--offer h2 em {
  color: transparent;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  font-style: normal;
}

.celebration-stage,
.offer-stage,
.plans-stage,
.payment-stage,
.transfer-stage,
.payment-loading,
.offer-error {
  text-align: center;
  animation: stage-in 280ms ease both;
}

.celebration-icons {
  display: flex;
  justify-content: center;
  gap: 17px;
  margin: -9px 0 15px;
  font-size: 2.5rem;
}

.celebration-icons span:nth-child(1) {
  transform: rotate(-10deg);
}

.celebration-icons span:nth-child(2) {
  transform: translateY(-9px);
}

.celebration-icons span:nth-child(3) {
  transform: rotate(10deg);
}

.celebration-stage > p,
.offer-stage > p,
.plans-stage > p,
.payment-stage > p,
.transfer-stage > p,
.offer-error > p {
  max-width: 600px;
  margin: 15px auto;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.success-check {
  display: grid;
  width: 64px;
  height: 64px;
  margin: 22px auto 13px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  box-shadow: 0 0 0 10px rgba(41, 197, 139, 0.1);
  font-size: 1.8rem;
  font-weight: 800;
}

.celebration-stage .stage-hint {
  margin-bottom: 18px;
  color: var(--purple-dark);
  font-size: 0.75rem;
  font-weight: 800;
}

.offer-emoji {
  display: grid;
  width: 70px;
  height: 70px;
  margin: -8px auto 13px;
  place-items: center;
  border-radius: 23px;
  background: linear-gradient(135deg, #f0ebff, #fff0f7);
  font-size: 2rem;
  transform: rotate(-4deg);
}

.offer-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 14px;
  margin: 19px 0 23px;
  padding: 0;
  list-style: none;
  color: #566079;
  font-size: 0.72rem;
  font-weight: 700;
}

.offer-benefits li::first-letter {
  color: var(--green);
}

.offer-choice-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 13px;
}

.choice-card,
.price-card,
.payment-card {
  cursor: pointer;
  font-family: inherit;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.choice-card:hover,
.price-card:hover,
.payment-card:hover {
  transform: translateY(-3px);
}

.choice-card {
  display: grid;
  min-height: 137px;
  place-items: center;
  align-content: center;
  padding: 18px;
  border-radius: 20px;
}

.choice-card > span {
  margin-bottom: 2px;
  font-size: 1.8rem;
}

.choice-card strong,
.choice-card small {
  display: block;
}

.choice-card strong {
  font-size: 1rem;
}

.choice-card small {
  margin-top: 3px;
  font-size: 0.63rem;
  opacity: 0.8;
}

.choice-card--yes {
  color: #fff;
  background: var(--gradient);
  box-shadow: 0 16px 35px rgba(141, 92, 246, 0.24);
}

.choice-card--no {
  border: 1px solid #e6e7ef;
  color: #777e93;
  background: #f5f6f9;
}

.offer-fineprint {
  display: block;
  margin-top: 14px;
  color: #9499aa;
  font-size: 0.61rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: stretch;
  gap: 14px;
  margin-top: 24px;
  text-align: left;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 290px;
  padding: 25px;
  border: 1px solid #e2e3ed;
  border-radius: 21px;
  color: var(--ink);
  background: #fff;
}

.price-card:hover {
  border-color: var(--purple);
  box-shadow: var(--shadow-md);
}

.price-card--featured {
  border: 2px solid var(--purple);
  background: linear-gradient(160deg, #fff 0%, #f7f2ff 100%);
}

.price-card__popular {
  position: absolute;
  top: -12px;
  right: 17px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--gradient);
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.price-card__label {
  color: var(--purple);
  font-size: 0.64rem;
  font-weight: 800;
  text-transform: uppercase;
}

.price-card > strong {
  margin-top: 4px;
  font-family: "Outfit", sans-serif;
  font-size: 1.35rem;
}

.price-card > div {
  margin: 11px 0 2px;
  font-family: "Outfit", sans-serif;
  font-size: 2.55rem;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.price-card > div small {
  font-size: 1rem;
  vertical-align: top;
}

.price-card > p,
.price-card > ul {
  color: var(--ink-soft);
  font-size: 0.71rem;
}

.price-card > p {
  margin: 0 0 8px;
}

.price-card > ul {
  margin: 3px 0 17px;
  padding-left: 17px;
}

.price-card > b {
  margin-top: auto;
  color: var(--purple-dark);
  font-size: 0.72rem;
}

.text-button {
  margin-top: 18px;
  padding: 6px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 800;
}

.text-button:hover {
  color: var(--purple-dark);
}

.payment-options {
  display: grid;
  gap: 11px;
  margin-top: 24px;
}

.payment-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 17px;
  border: 1px solid #e1e3ed;
  border-radius: 17px;
  background: #fff;
  text-align: left;
}

.payment-card:hover {
  border-color: var(--purple);
  box-shadow: var(--shadow-sm);
}

.payment-card > span {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border-radius: 14px;
  background: #f1edff;
  font-size: 1.25rem;
}

.payment-card strong,
.payment-card small {
  display: block;
}

.payment-card strong {
  font-size: 0.84rem;
}

.payment-card small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.64rem;
}

.payment-card > b {
  color: var(--purple-dark);
  font-size: 0.66rem;
}

.payment-card--online {
  opacity: 0.72;
}

.demo-warning {
  margin-top: 14px;
  padding: 9px 12px;
  border: 1px solid #ffe0a1;
  border-radius: 11px;
  color: #80601e;
  background: #fff9e9;
  font-size: 0.63rem;
  font-weight: 700;
}

.demo-warning--strong {
  max-width: 610px;
  margin: 17px auto;
  color: #87395a;
  border-color: #ffc6dd;
  background: #fff1f7;
}

.payment-loading {
  padding-block: 45px;
}

.payment-loading > span {
  display: block;
  width: 50px;
  height: 50px;
  margin: 0 auto 18px;
  border: 4px solid #e8e3f7;
  border-top-color: var(--purple);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.payment-loading h2 {
  font-size: 1.8rem;
}

.payment-loading p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.bank-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  overflow: hidden;
  margin: 18px 0;
  border: 1px solid #e3e4ed;
  border-radius: 17px;
  text-align: left;
}

.bank-details > div {
  padding: 12px 15px;
  border-right: 1px solid #e8e9f0;
  border-bottom: 1px solid #e8e9f0;
}

.bank-details > div:nth-child(2n) {
  border-right: 0;
}

.bank-details > div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.bank-details dt {
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 800;
  text-transform: uppercase;
}

.bank-details dd {
  margin: 2px 0 0;
  font-size: 0.78rem;
  font-weight: 800;
}

.transfer-instruction {
  font-size: 0.72rem !important;
}

.button--instagram {
  color: #fff;
  background: linear-gradient(110deg, #7259ee, #df3a99, #ff8a45);
  box-shadow: 0 12px 27px rgba(199, 57, 144, 0.22);
}

.offer-error {
  padding-block: 30px;
}

.offer-error > span {
  font-size: 2.5rem;
}

.offer-error h2 {
  margin-top: 12px;
  font-size: 2rem;
}

.toast {
  position: fixed;
  z-index: 200;
  right: 22px;
  bottom: 22px;
  max-width: min(390px, calc(100% - 44px));
  padding: 13px 17px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 13px;
  color: #fff;
  background: #192249;
  box-shadow: 0 18px 50px rgba(17, 28, 68, 0.3);
  font-size: 0.72rem;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.toast[data-tone="success"] {
  background: #16845f;
}

.toast[data-tone="error"] {
  background: #a33660;
}

@keyframes twinkle {
  0%,
  100% { transform: scale(1) rotate(0); opacity: 0.7; }
  50% { transform: scale(1.35) rotate(35deg); opacity: 1; }
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 7px rgba(41, 197, 139, 0); }
  100% { box-shadow: 0 0 0 0 rgba(41, 197, 139, 0); }
}

@keyframes float-card {
  0%,
  100% { transform: translateX(-50%) translateY(0) rotate(3deg); }
  50% { transform: translateX(-50%) translateY(-10px) rotate(1.5deg); }
}

@keyframes float-one {
  0%,
  100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(9px) rotate(-2deg); }
}

@keyframes float-two {
  0%,
  100% { transform: translateY(0) rotate(4deg); }
  50% { transform: translateY(-9px) rotate(2deg); }
}

@keyframes bob {
  0%,
  100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@keyframes card-in {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes skeleton {
  to { transform: translateX(100%); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes stage-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1260px) {
  .business-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.86fr);
    gap: 35px;
  }
}

@media (max-width: 1040px) {
  .shell {
    width: min(calc(100% - 40px), var(--shell));
  }

  .main-nav {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .hero-grid {
    grid-template-columns: 1fr 390px;
  }

  .hero h1 {
    font-size: clamp(3rem, 6.5vw, 4.8rem);
  }

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

  .directory-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .search-box {
    flex: auto;
    width: 100%;
  }
}

@media (max-width: 820px) {
  .hero-grid {
    display: block;
    padding-block: 65px;
    text-align: center;
  }

  .hero-copy {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-promises {
    justify-content: center;
  }

  .hero-visual {
    min-height: 485px;
    margin-top: 45px;
  }

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

  .trust-grid article:nth-child(2) {
    border-right: 0;
  }

  .trust-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .steps-grid::before {
    display: none;
  }

  .step-card--raised {
    transform: none;
  }

  .bottom-cta__content {
    grid-template-columns: auto 1fr;
    padding-block: 42px;
  }

  .bottom-cta__content .button {
    grid-column: 1 / -1;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .footer-links {
    justify-content: center;
  }

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

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .price-card {
    min-height: 250px;
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .announcement {
    padding-inline: 12px;
    font-size: 0.67rem;
  }

  .announcement__dot,
  .announcement strong {
    display: none;
  }

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

  .brand {
    font-size: 0.94rem;
  }

  .brand-mark {
    transform: scale(0.88) rotate(-4deg);
  }

  .header-inner > .button {
    min-height: 39px;
    padding-inline: 13px;
    font-size: 0.7rem;
  }

  .hero {
    min-height: 0;
  }

  .hero-grid {
    min-height: 0;
    padding-block: 54px 58px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 14vw, 4rem);
  }

  .hero-lead {
    margin-block: 22px 26px;
    font-size: 0.95rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-promises {
    display: grid;
    justify-items: start;
    width: max-content;
    margin-inline: auto;
    text-align: left;
  }

  .hero-visual {
    min-height: 400px;
    margin-top: 35px;
  }

  .mosaic-card {
    width: 75%;
  }

  .mini-card {
    min-width: 165px;
    padding: 10px;
  }

  .mini-card--one {
    top: 245px;
  }

  .mini-card--two {
    right: -8px;
    bottom: 8px;
  }

  .floating-pill--top {
    right: 0;
  }

  .floating-pill--bottom {
    bottom: -3px;
    left: 8%;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid article {
    justify-content: flex-start;
    min-height: 82px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-grid article:last-child {
    border-bottom: 0;
  }

  .mural-section,
  .how-section {
    padding-block: 72px;
  }

  .section-heading h2 {
    font-size: 2.35rem;
  }

  .section-heading .button {
    width: 100%;
  }

  .directory-toolbar {
    margin-inline: -2px;
    padding: 10px;
  }

  .directory-status {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .business-grid {
    grid-template-columns: 1fr;
  }

  .business-card__cover {
    height: 110px;
  }

  .business-card__body {
    min-height: 245px;
  }

  .bottom-cta__content {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }

  .bottom-cta__content .button {
    width: 100%;
  }

  .modal {
    align-items: end;
    padding: 0;
  }

  .modal-card {
    width: 100%;
    max-height: calc(100vh - 12px);
    border-radius: 25px 25px 0 0;
  }

  .modal-card--form,
  .modal-card--offer {
    padding: 26px 18px 22px;
  }

  .form-intro {
    display: block;
    margin-right: 38px;
  }

  .form-intro__icon {
    width: 45px;
    height: 45px;
    margin-bottom: 10px;
  }

  .social-fieldset__heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .offer-choice-grid {
    grid-template-columns: 1fr;
  }

  .choice-card {
    min-height: 112px;
  }

  .payment-card {
    grid-template-columns: auto 1fr;
  }

  .payment-card > b {
    grid-column: 2;
  }

  .bank-details {
    grid-template-columns: 1fr;
  }

  .bank-details > div,
  .bank-details > div:nth-child(2n),
  .bank-details > div:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid #e8e9f0;
  }

  .bank-details > div:last-child {
    border-bottom: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Perfil público */
.profile-page,
.panel-page {
  --profile-primary: var(--purple);
  --profile-secondary: var(--pink);
  min-height: 100vh;
  background: #fff;
}

.profile-topbar {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid #ececf3;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(16px);
}

.profile-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 20px;
}

.profile-loading,
.profile-not-found {
  min-height: calc(100vh - 220px);
  text-align: center;
}

.profile-loading {
  display: grid;
  place-content: center;
  color: var(--muted);
  font-size: 0.8rem;
}

.profile-loading > span,
.dashboard-loading > span {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  border: 4px solid #ece9f6;
  border-top-color: var(--purple);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.profile-not-found {
  display: grid;
  place-content: center;
  justify-items: center;
  padding-block: 70px;
}

.profile-not-found > span {
  font-size: 3rem;
}

.profile-not-found h1 {
  margin: 13px 0 4px;
  font-family: "Outfit", sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -0.04em;
}

.profile-not-found p {
  max-width: 520px;
  margin: 0 0 22px;
  color: var(--muted);
}

.profile-cover {
  position: relative;
  height: 300px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 80% 22%, rgba(255, 255, 255, 0.23) 0 6%, transparent 6.5%),
    radial-gradient(circle at 15% 84%, rgba(255, 255, 255, 0.17) 0 10%, transparent 10.5%),
    linear-gradient(125deg, var(--profile-primary), var(--profile-secondary));
  background-position: center;
  background-size: cover;
}

.profile-cover::before {
  position: absolute;
  top: -140px;
  right: 10%;
  width: 380px;
  height: 380px;
  border: 70px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  content: "";
}

.profile-cover__pattern {
  position: absolute;
  bottom: -80px;
  left: 7%;
  width: 240px;
  height: 240px;
  border: 40px solid rgba(255, 255, 255, 0.08);
  border-radius: 42% 58% 63% 37%;
  transform: rotate(18deg);
}

.profile-cover__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 36px;
}

.profile-category,
.profile-share {
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  color: #fff;
  background: rgba(17, 28, 68, 0.2);
  backdrop-filter: blur(11px);
  font-size: 0.7rem;
  font-weight: 800;
}

.profile-share {
  cursor: pointer;
}

.profile-share:hover {
  background: rgba(17, 28, 68, 0.34);
}

.profile-identity {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 25px;
  margin-top: -68px;
  padding-bottom: 42px;
  border-bottom: 1px solid #ececf2;
}

.profile-logo {
  display: grid;
  width: 144px;
  height: 144px;
  overflow: hidden;
  place-items: center;
  border: 7px solid #fff;
  border-radius: 36px;
  color: #fff;
  background: linear-gradient(135deg, var(--profile-primary), var(--profile-secondary));
  box-shadow: 0 20px 50px rgba(23, 29, 66, 0.2);
  font-family: "Outfit", sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
}

.profile-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-identity__copy {
  min-width: 0;
  padding-bottom: 4px;
}

.profile-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 8px;
}

.profile-badges > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 9px;
  border-radius: 999px;
  color: color-mix(in srgb, var(--profile-primary) 78%, #111c44);
  background: color-mix(in srgb, var(--profile-primary) 10%, #fff);
  font-size: 0.61rem;
  font-weight: 800;
}

.profile-badges .profile-live {
  color: #16805c;
  background: #eaf9f3;
}

.profile-live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.profile-identity h1 {
  overflow: hidden;
  color: var(--ink);
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-identity__copy > p {
  max-width: 730px;
  margin: 16px 0 6px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.profile-location {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.profile-primary-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  max-width: 330px;
  gap: 8px;
  padding-bottom: 7px;
}

.profile-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 43px;
  padding-inline: 15px;
  border: 1px solid #dedfe8;
  border-radius: 12px;
  color: var(--ink-soft);
  background: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  transition: transform 160ms ease, border-color 160ms ease;
}

.profile-action:hover {
  border-color: var(--profile-primary);
  transform: translateY(-2px);
}

.profile-action--primary {
  border-color: transparent;
  color: #fff;
  background: linear-gradient(120deg, var(--profile-primary), var(--profile-secondary));
  box-shadow: 0 11px 27px color-mix(in srgb, var(--profile-primary) 23%, transparent);
}

.profile-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  align-items: start;
  gap: clamp(45px, 7vw, 100px);
  padding-block: 68px 90px;
}

.profile-main-column {
  min-width: 0;
}

.profile-section + .profile-section {
  margin-top: 62px;
}

.profile-section__eyebrow {
  display: block;
  margin-bottom: 7px;
  color: var(--profile-primary);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.profile-section h2,
.contact-card h2,
.dashboard-roadmap h2,
.owner-empty h2 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.65rem, 2.8vw, 2.35rem);
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.profile-about {
  max-width: 850px;
  margin: 19px 0 0;
  color: #515a73;
  font-size: 1rem;
  line-height: 1.9;
  white-space: pre-line;
}

.profile-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.profile-services > div {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 70px;
  padding: 13px;
  border: 1px solid #e7e7ef;
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(21, 28, 64, 0.04);
}

.profile-services span {
  display: grid;
  flex: none;
  width: 39px;
  height: 39px;
  place-items: center;
  border-radius: 12px;
  color: var(--profile-primary);
  background: color-mix(in srgb, var(--profile-primary) 10%, #fff);
  font-size: 0.67rem;
  font-weight: 800;
}

.profile-services strong {
  font-size: 0.78rem;
}

.profile-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 22px;
}

.profile-gallery img {
  width: 100%;
  aspect-ratio: 1 / 0.8;
  border-radius: 15px;
  object-fit: cover;
}

.profile-aside {
  position: sticky;
  top: 25px;
}

.contact-card {
  padding: 28px;
  border: 1px solid color-mix(in srgb, var(--profile-primary) 22%, #e6e6ef);
  border-radius: 24px;
  background: linear-gradient(
    155deg,
    color-mix(in srgb, var(--profile-primary) 8%, #fff),
    #fff 65%
  );
  box-shadow: 0 20px 48px color-mix(in srgb, var(--profile-primary) 10%, transparent);
}

.contact-card__icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 19px;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--profile-primary), var(--profile-secondary));
  font-size: 1.4rem;
}

.contact-card h2 {
  font-size: 1.75rem;
}

.contact-card > p {
  margin: 9px 0 20px;
  color: var(--ink-soft);
  font-size: 0.77rem;
}

.contact-list {
  display: grid;
  gap: 8px;
}

.contact-list > a {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 47px;
  padding: 8px 11px;
  border: 1px solid #e7e7ef;
  border-radius: 13px;
  background: #fff;
  transition: border-color 160ms ease, transform 160ms ease;
}

.contact-list > a:hover {
  border-color: var(--profile-primary);
  transform: translateX(3px);
}

.contact-list > a span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 9px;
  color: #fff;
  background: var(--profile-primary);
  font-size: 0.63rem;
  font-weight: 800;
}

.contact-list > a strong {
  font-size: 0.7rem;
}

.contact-empty {
  margin: 0;
  padding: 13px;
  border-radius: 12px;
  color: var(--muted);
  background: #f5f5f9;
  font-size: 0.69rem;
}

.map-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 11px;
  margin-top: 13px;
  padding: 15px;
  border: 1px solid #e5e6ed;
  border-radius: 17px;
  background: #fff;
}

.map-card > span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 12px;
  background: #f1edff;
}

.map-card strong,
.map-card small {
  display: block;
}

.map-card strong {
  font-size: 0.7rem;
}

.map-card small {
  color: var(--muted);
  font-size: 0.6rem;
}

.map-card > b {
  color: var(--profile-primary);
}

.profile-owner-card {
  margin-top: 13px;
  padding: 14px 16px;
  border-radius: 15px;
  color: #6d748b;
  background: #f5f5f8;
  font-size: 0.65rem;
}

.profile-owner-card span,
.profile-owner-card a {
  display: block;
}

.profile-owner-card a {
  margin-top: 3px;
  color: var(--profile-primary);
  font-weight: 800;
}

.profile-free-note {
  border-top: 1px solid #e9e9f0;
  background: #f8f8fc;
}

.profile-free-note > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 94px;
  gap: 25px;
  font-size: 0.74rem;
}

.profile-free-note div > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.profile-free-note p {
  margin: 0;
}

.profile-free-note a {
  color: var(--profile-primary);
  font-weight: 800;
}

.profile-footer {
  background: #111735;
}

/* Acceso y panel del propietario */
.panel-page {
  background:
    radial-gradient(circle at 8% 25%, rgba(255, 95, 162, 0.09), transparent 25%),
    radial-gradient(circle at 92% 14%, rgba(79, 124, 255, 0.11), transparent 25%),
    #f7f8ff;
}

.panel-main {
  min-height: calc(100vh - 154px);
}

.auth-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 440px;
  align-items: center;
  gap: clamp(50px, 9vw, 150px);
  min-height: calc(100vh - 155px);
  padding-block: 70px;
}

.auth-copy h1,
.dashboard-heading h1,
.link-sent h1 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.7rem, 5vw, 5.2rem);
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.auth-copy > p {
  max-width: 680px;
  margin: 22px 0;
  color: var(--ink-soft);
  font-size: 1rem;
}

.auth-points {
  display: grid;
  gap: 9px;
  color: #5c647d;
  font-size: 0.78rem;
  font-weight: 700;
}

.auth-points span {
  display: flex;
  align-items: center;
  gap: 9px;
}

.auth-points i {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-size: 0.65rem;
  font-style: normal;
}

.auth-card {
  padding: 35px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 28px 70px rgba(55, 43, 105, 0.16);
  backdrop-filter: blur(15px);
}

.auth-card__icon {
  display: grid;
  width: 60px;
  height: 60px;
  margin-bottom: 17px;
  place-items: center;
  border-radius: 19px;
  background: linear-gradient(135deg, #eee8ff, #fff0f6);
  font-size: 1.5rem;
}

.auth-card__tag,
.dashboard-roadmap > span {
  color: var(--purple);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.auth-card h1 {
  margin-top: 4px;
  font-size: 2.35rem;
}

.auth-card > p {
  margin: 10px 0 21px;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.auth-card form .button {
  margin-top: 14px;
}

.auth-card > small {
  display: block;
  margin-top: 12px;
  color: #979cad;
  font-size: 0.58rem;
  text-align: center;
}

.link-sent {
  display: grid;
  min-height: calc(100vh - 155px);
  place-content: center;
  justify-items: center;
  padding-block: 70px;
  text-align: center;
}

.link-sent > span {
  font-size: 3.5rem;
}

.link-sent h1 {
  margin-top: 12px;
  font-size: 3.5rem;
}

.link-sent p {
  max-width: 560px;
  color: var(--ink-soft);
}

.dashboard {
  min-height: calc(100vh - 155px);
  padding-block: 65px 90px;
}

.dashboard-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 42px;
}

.dashboard-heading h1 {
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.dashboard-heading h1 span {
  color: transparent;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
}

.dashboard-heading p {
  margin: 9px 0 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.dashboard-loading {
  display: grid;
  justify-items: center;
  padding: 70px;
  color: var(--muted);
  font-size: 0.75rem;
}

.dashboard-loading p {
  margin: 0;
}

.owner-businesses {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.owner-business-card {
  padding: 24px;
  border: 1px solid #e4e5ee;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.owner-business-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.owner-business-card__header > span {
  display: grid;
  flex: none;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: var(--gradient);
  font-family: "Outfit", sans-serif;
  font-weight: 800;
}

.owner-business-card h2 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 1.25rem;
}

.owner-business-card__header p {
  margin: 1px 0 0;
  color: var(--purple);
  font-size: 0.64rem;
  font-weight: 800;
}

.owner-business-card__description {
  min-height: 47px;
  margin: 17px 0;
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.owner-plan {
  padding: 13px;
  border-radius: 14px;
  color: #61697f;
  background: #f4f4f8;
}

.owner-plan--active {
  color: #23684f;
  background: #eaf9f3;
}

.owner-plan strong,
.owner-plan small {
  display: block;
}

.owner-plan strong {
  font-size: 0.72rem;
}

.owner-plan small {
  margin-top: 1px;
  font-size: 0.6rem;
  opacity: 0.8;
}

.owner-business-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 17px;
}

.owner-business-card__actions .button {
  flex: 1;
  min-width: 150px;
  padding-inline: 13px;
  font-size: 0.68rem;
}

.owner-empty {
  display: grid;
  justify-items: center;
  padding: 65px 20px;
  border: 1px dashed #d9dbea;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.owner-empty > span {
  font-size: 2.7rem;
}

.owner-empty h2 {
  margin-top: 10px;
}

.owner-empty p {
  max-width: 570px;
  margin: 9px 0 20px;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.dashboard-roadmap {
  margin-top: 28px;
  padding: 27px;
  overflow: hidden;
  border-radius: 23px;
  color: #fff;
  background:
    radial-gradient(circle at 92% 10%, rgba(255, 255, 255, 0.15), transparent 22%),
    linear-gradient(120deg, #17224d, #34316d);
}

.dashboard-roadmap > span {
  color: #cdbbff;
}

.dashboard-roadmap h2 {
  margin-top: 5px;
  font-size: 1.7rem;
}

.dashboard-roadmap p {
  max-width: 800px;
  margin: 9px 0 0;
  color: #c7cada;
  font-size: 0.75rem;
}

@media (max-width: 980px) {
  .profile-identity {
    grid-template-columns: auto 1fr;
    align-items: end;
  }

  .profile-primary-actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
    max-width: none;
  }

  .profile-body {
    grid-template-columns: 1fr;
  }

  .profile-aside {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px;
  }

  .contact-card {
    grid-row: span 2;
  }

  .map-card,
  .profile-owner-card {
    margin-top: 0;
  }

  .auth-layout {
    grid-template-columns: 1fr 400px;
    gap: 45px;
  }
}

@media (max-width: 760px) {
  .profile-cover {
    height: 230px;
  }

  .profile-identity {
    display: block;
    margin-top: -55px;
  }

  .profile-logo {
    width: 110px;
    height: 110px;
    margin-bottom: 15px;
    border-radius: 29px;
    font-size: 2.2rem;
  }

  .profile-identity h1 {
    overflow: visible;
    color: var(--ink);
    font-size: 3rem;
    text-shadow: none;
    white-space: normal;
  }

  .profile-primary-actions {
    justify-content: flex-start;
    margin-top: 18px;
  }

  .profile-body {
    padding-block: 50px 70px;
  }

  .profile-aside {
    display: block;
  }

  .map-card,
  .profile-owner-card {
    margin-top: 13px;
  }

  .auth-layout {
    display: block;
    padding-block: 55px;
  }

  .auth-copy {
    margin-bottom: 38px;
    text-align: center;
  }

  .auth-copy h1 {
    font-size: 3.3rem;
  }

  .auth-copy > p {
    margin-inline: auto;
  }

  .auth-points {
    width: max-content;
    max-width: 100%;
    margin-inline: auto;
    text-align: left;
  }

  .owner-businesses {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .profile-topbar__inner {
    min-height: 68px;
  }

  .profile-topbar .button {
    min-height: 39px;
    padding-inline: 12px;
    font-size: 0.66rem;
  }

  .profile-cover__inner {
    padding-top: 25px;
  }

  .profile-identity h1 {
    font-size: 2.55rem;
  }

  .profile-services {
    grid-template-columns: 1fr;
  }

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

  .profile-free-note > div {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 22px;
  }

  .auth-copy h1 {
    font-size: 2.65rem;
  }

  .auth-card {
    padding: 27px 20px;
  }

  .dashboard-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .dashboard-heading .button {
    width: 100%;
  }
}

/* Textos legales */
.legal-page {
  background: #fff;
}

.legal-content {
  max-width: 900px;
  padding-block: 78px 95px;
}

.legal-content > h1 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.legal-updated {
  margin: 15px 0 26px;
  color: var(--muted);
  font-size: 0.72rem;
}

.legal-notice {
  margin-bottom: 44px;
  padding: 15px 17px;
  border: 1px solid #ffe1a5;
  border-radius: 14px;
  color: #76581b;
  background: #fff9eb;
  font-size: 0.73rem;
}

.legal-content section {
  padding-block: 25px;
  border-top: 1px solid #ececf2;
}

.legal-content section h2 {
  margin: 0 0 10px;
  font-family: "Outfit", sans-serif;
  font-size: 1.4rem;
  letter-spacing: -0.025em;
}

.legal-content section p {
  margin: 0;
  color: #505971;
  font-size: 0.88rem;
  line-height: 1.9;
}

.legal-content section a {
  color: var(--purple-dark);
  font-weight: 800;
  text-decoration: underline;
}

@media (max-width: 560px) {
  .legal-content {
    padding-block: 58px 75px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ========================================================================== */
/* MURAL EMPRENDEDOR · AJUSTES SOLICITADOS · 2026-09-04                      */
/* Mantiene intacto el CSS original y corrige/actualiza la capa visual.        */
/* ========================================================================== */

:root {
  --ink: #0b1739 !important;
  --ink-soft: #40506d !important;
  --muted: #71809a !important;
  --surface: #ffffff !important;
  --background: #f4f7ff !important;
  --line: #dfe7f3 !important;

  /* Se conservan los nombres de variables originales para no romper nada,
     pero la paleta pasa a azul/cyan/turquesa con acentos cálidos. */
  --purple: #2563eb !important;
  --purple-dark: #1746b8 !important;
  --pink: #06b6d4 !important;
  --orange: #f97316 !important;
  --yellow: #fbbf24 !important;
  --green: #10b981 !important;
  --blue: #1457ff !important;

  --gradient: linear-gradient(
    120deg,
    #1457ff 0%,
    #2563eb 36%,
    #06b6d4 70%,
    #f97316 100%
  ) !important;

  --shadow-sm: 0 10px 30px rgba(15, 35, 83, 0.08) !important;
  --shadow-md: 0 22px 60px rgba(15, 43, 99, 0.16) !important;
  --shadow-color: 0 22px 55px rgba(37, 99, 235, 0.22) !important;
}

/* -------------------------------------------------------------------------- */
/* PALETA GENERAL                                                             */
/* -------------------------------------------------------------------------- */

body {
  background:
    radial-gradient(circle at 10% 0%, rgba(37, 99, 235, 0.035), transparent 24%),
    radial-gradient(circle at 93% 10%, rgba(6, 182, 212, 0.04), transparent 22%),
    var(--background) !important;
}

:focus-visible {
  outline-color: rgba(20, 87, 255, 0.55) !important;
}

.brand strong {
  color: #1457ff !important;
}

.brand-mark span:nth-child(1) {
  background: #1457ff !important;
}

.brand-mark span:nth-child(2) {
  background: #06b6d4 !important;
}

.brand-mark span:nth-child(3) {
  background: #f97316 !important;
}

.brand-mark span:nth-child(4) {
  background: #10b981 !important;
}

.button--gradient {
  background: var(--gradient) !important;
  box-shadow: 0 13px 30px rgba(20, 87, 255, 0.24) !important;
}

.button--gradient:hover:not(:disabled) {
  box-shadow: 0 17px 38px rgba(20, 87, 255, 0.32) !important;
}

.button--outline {
  border-color: rgba(20, 87, 255, 0.26) !important;
  color: #1746b8 !important;
}

.button--white {
  color: #1746b8 !important;
}

.eyebrow {
  border-color: rgba(20, 87, 255, 0.15) !important;
  color: #1746b8 !important;
  background: rgba(20, 87, 255, 0.075) !important;
}

.eyebrow--soft {
  color: #0369a1 !important;
  background: rgba(6, 182, 212, 0.09) !important;
}

.hero {
  background:
    radial-gradient(circle at 10% 28%, rgba(20, 87, 255, 0.08), transparent 25%),
    radial-gradient(circle at 88% 10%, rgba(6, 182, 212, 0.09), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f7faff 100%) !important;
}

.hero-visual::before {
  background: linear-gradient(
    140deg,
    rgba(20, 87, 255, 0.14),
    rgba(6, 182, 212, 0.16)
  ) !important;
}

.hero-dots {
  background-image: radial-gradient(#1457ff 1.5px, transparent 1.5px) !important;
}

.gradient-agaplink {
  background:
    radial-gradient(circle at 70% 15%, rgba(255, 255, 255, 0.42) 0 8%, transparent 9%),
    radial-gradient(circle at 18% 85%, rgba(255, 255, 255, 0.22) 0 11%, transparent 12%),
    linear-gradient(130deg, #1457ff 0%, #2563eb 43%, #06b6d4 78%, #f97316 100%) !important;
}

.mosaic-card__body p {
  color: #1457ff !important;
}

.hero-blob--one {
  background: rgba(249, 115, 22, 0.14) !important;
}

.hero-blob--two {
  background: rgba(20, 87, 255, 0.14) !important;
}

.mural-section {
  background:
    radial-gradient(circle at 0 30%, rgba(20, 87, 255, 0.075), transparent 23%),
    radial-gradient(circle at 100% 10%, rgba(6, 182, 212, 0.055), transparent 20%),
    var(--background) !important;
}

/* -------------------------------------------------------------------------- */
/* HERO · EVITAR QUE LOS ELEMENTOS FLOTANTES TAPEN LA TARJETA DE AGAPLINK     */
/* -------------------------------------------------------------------------- */

.hero-visual {
  min-height: 530px !important;
}

.mosaic-card {
  z-index: 4 !important;
  width: min(390px, 74%) !important;
  box-shadow: 0 35px 75px rgba(16, 43, 92, 0.22) !important;
}

.mini-card {
  z-index: 2 !important;
}

.floating-pill {
  z-index: 5 !important;
}

.mini-card--one {
  top: 292px !important;
  left: -42px !important;
}

.mini-card--two {
  right: -18px !important;
  bottom: 34px !important;
}

.floating-pill--top {
  top: 10px !important;
  right: 0 !important;
}

.floating-pill--bottom {
  bottom: 8px !important;
  left: 17% !important;
}

/* -------------------------------------------------------------------------- */
/* MURAL · SOLO 3 TARJETAS POR FILA                                           */
/* -------------------------------------------------------------------------- */

.business-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 26px !important;
}

.business-card {
  border-radius: 24px !important;
  box-shadow: 0 10px 32px rgba(15, 35, 83, 0.075) !important;
}

.business-card:hover {
  box-shadow: 0 24px 52px color-mix(in srgb, var(--card-primary) 14%, transparent) !important;
}

/* Portada grande para foto del emprendimiento */
.business-card__cover {
  height: 205px !important;
  background:
    radial-gradient(circle at 82% 22%, rgba(255, 255, 255, 0.30) 0 7%, transparent 7.5%),
    radial-gradient(circle at 15% 90%, rgba(255, 255, 255, 0.18) 0 13%, transparent 13.5%),
    linear-gradient(135deg, var(--card-primary), var(--card-secondary)) !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.business-card__cover.has-image {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

/* Cuando hay fotografía, se elimina el aro decorativo que ensucia la imagen. */
.business-card__cover.has-image::after {
  display: none !important;
}

.business-card__category,
.business-card__featured {
  top: 14px !important;
  padding: 7px 10px !important;
  border-radius: 999px !important;
  font-size: 0.66rem !important;
  box-shadow: 0 5px 15px rgba(11, 23, 57, 0.09);
}

.business-card__category {
  left: 14px !important;
  background: rgba(255, 255, 255, 0.94) !important;
  backdrop-filter: blur(10px);
}

.business-card__featured {
  right: 14px !important;
  background: rgba(11, 23, 57, 0.79) !important;
}

.business-card__featured--new {
  background: rgba(5, 150, 105, 0.93) !important;
}

/* Tarjetas más amplias y fáciles de leer */
.business-card__body {
  min-height: 300px !important;
  padding: 51px 22px 20px !important;
}

/* El espacio de la inicial ahora está preparado para mostrar un logo real. */
.business-card__logo {
  top: -39px !important;
  left: 21px !important;
  width: 78px !important;
  height: 78px !important;
  border: 5px solid #ffffff !important;
  border-radius: 22px !important;
  background: #ffffff !important;
  box-shadow: 0 10px 28px rgba(11, 23, 57, 0.18) !important;
  color: var(--card-primary) !important;
  font-size: 1.3rem !important;
}

.business-card__logo img {
  width: 100% !important;
  height: 100% !important;
  padding: 6px !important;
  background: #ffffff !important;
  object-fit: contain !important;
}

.business-card h3 {
  margin-bottom: 9px !important;
  font-size: 1.34rem !important;
}

.business-card__body > p {
  min-height: 68px !important;
  margin-bottom: 17px !important;
  color: #4b5873 !important;
  font-size: 0.84rem !important;
  line-height: 1.65 !important;
}

.business-card__location {
  padding-bottom: 14px !important;
  color: #6c7a93 !important;
  font-size: 0.74rem !important;
}

.business-card__footer {
  min-height: 42px !important;
  padding-top: 13px !important;
}

/* -------------------------------------------------------------------------- */
/* REDES DE LAS TARJETAS · COLORES DE MARCA                                  */
/* -------------------------------------------------------------------------- */

.business-card__socials a {
  width: 34px !important;
  height: 34px !important;
  border-radius: 10px !important;
  font-size: 0.69rem !important;
  font-weight: 900 !important;
}

.business-card__socials a[aria-label^="Instagram"] {
  border-color: transparent !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045) !important;
}

.business-card__socials a[aria-label^="Facebook"] {
  border-color: #1877f2 !important;
  color: #ffffff !important;
  background: #1877f2 !important;
}

.business-card__socials a[aria-label^="TikTok"] {
  border-color: #111111 !important;
  color: #ffffff !important;
  background: #111111 !important;
}

.business-card__socials a[aria-label^="X"] {
  border-color: #111111 !important;
  color: #ffffff !important;
  background: #111111 !important;
}

.business-card__socials a[aria-label^="Correo"] {
  border-color: #1457ff !important;
  color: #1457ff !important;
  background: #eef4ff !important;
}

/* -------------------------------------------------------------------------- */
/* FORMULARIO · SUBIDA DE FOTO Y LOGO                                         */
/* -------------------------------------------------------------------------- */

.image-upload-section {
  padding: 18px !important;
  border: 1px solid #dce6f3 !important;
  border-radius: 20px !important;
  background:
    linear-gradient(180deg, rgba(238, 245, 255, 0.85), rgba(255, 255, 255, 0.96)) !important;
}

.image-upload-section__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.image-upload-section__heading span,
.image-upload-section__heading small {
  display: block;
}

.image-upload-section__heading span {
  color: #0b1739;
  font-size: 0.79rem;
  font-weight: 800;
}

.image-upload-section__heading small {
  margin-top: 2px;
  color: #71809a;
  font-size: 0.65rem;
  font-weight: 600;
}

.image-upload-section__heading b {
  flex: none;
  padding: 6px 9px;
  border-radius: 999px;
  color: #0369a1;
  background: #e6f8fc;
  font-size: 0.61rem;
  white-space: nowrap;
}

.image-upload-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(150px, 0.7fr);
  align-items: stretch;
  gap: 13px;
}

.image-picker {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1.5px dashed #b8c9df;
  border-radius: 17px;
  background: #ffffff;
  cursor: pointer;
  transition:
    transform 170ms ease,
    border-color 170ms ease,
    box-shadow 170ms ease;
}

.image-picker:hover {
  border-color: #1457ff;
  box-shadow: 0 12px 26px rgba(20, 87, 255, 0.10);
  transform: translateY(-2px);
}

.image-picker input[type="file"] {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.image-picker__preview {
  display: grid;
  min-height: 150px;
  place-content: center;
  justify-items: center;
  gap: 3px;
  padding: 18px;
  color: #52617c;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
}

.image-picker--logo .image-picker__preview {
  min-height: 150px;
  background-size: contain;
}

.image-picker__preview i {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 5px;
  place-items: center;
  border-radius: 12px;
  color: #1457ff;
  background: #edf4ff;
  font-size: 1.3rem;
  font-style: normal;
  font-weight: 600;
}

.image-picker__preview strong {
  color: #0b1739;
  font-size: 0.75rem;
}

.image-picker__preview small {
  color: #7c899f;
  font-size: 0.62rem;
}

.image-picker__label {
  position: absolute;
  right: 9px;
  bottom: 9px;
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(11, 23, 57, 0.72);
  backdrop-filter: blur(8px);
  font-size: 0.58rem;
  font-weight: 800;
}

.image-upload-note {
  margin: 11px 2px 0;
  color: #71809a;
  font-size: 0.62rem;
}

/* -------------------------------------------------------------------------- */
/* FORMULARIO · REDES CON IDENTIDAD VISUAL REAL                              */
/* -------------------------------------------------------------------------- */

.social-fieldset {
  border-color: #dfe7f3 !important;
  background: #f8fbff !important;
}

.social-input {
  min-height: 50px !important;
  border-color: #dfe7f3 !important;
  background: #ffffff !important;
}

.social-input i {
  width: 50px !important;
  color: #ffffff !important;
  border-right: 0 !important;
}

.social-input i svg {
  width: 22px;
  height: 22px;
}

.social-input--instagram i {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045) !important;
}

.social-input--facebook i {
  background: #1877f2 !important;
}

.social-input--tiktok i {
  background: #111111 !important;
  text-shadow:
    -1px 0 #25f4ee,
    1px 0 #fe2c55;
}

.social-input--x i {
  background: #111111 !important;
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.social-input:focus-within {
  border-color: rgba(20, 87, 255, 0.72) !important;
  box-shadow: 0 0 0 4px rgba(20, 87, 255, 0.10) !important;
}

.check-row input {
  accent-color: #1457ff !important;
}

.check-row a {
  color: #1746b8 !important;
}

.field b,
.check-row b {
  color: #1457ff !important;
}

/* Aviso para colaboración en Instagram */
.collaboration-note {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 15px 16px;
  border: 1px solid #cfe3ff;
  border-radius: 17px;
  background: linear-gradient(135deg, #eef5ff, #f4fbff);
}

.collaboration-note__icon {
  display: grid;
  flex: none;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: 13px;
  color: #ffffff;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  box-shadow: 0 8px 18px rgba(131, 58, 180, 0.18);
}

.collaboration-note__icon svg {
  width: 22px;
  height: 22px;
}

.collaboration-note strong {
  display: block;
  color: #0b1739;
  font-size: 0.76rem;
}

.collaboration-note p {
  margin: 4px 0 0;
  color: #576680;
  font-size: 0.66rem;
  line-height: 1.6;
}

/* -------------------------------------------------------------------------- */
/* POPUP "VER MÁS" · PORTADA Y LOGO SIN CORTES                               */
/* -------------------------------------------------------------------------- */

.modal-card--quick {
  width: min(100%, 580px) !important;
  overflow: visible !important;
  padding: 0 34px 34px !important;
  border-radius: 28px !important;
}

.modal-card--quick .modal-close {
  z-index: 10 !important;
}

.quick-cover {
  height: 220px !important;
  margin-inline: -34px !important;
  overflow: hidden !important;
  border-radius: 28px 28px 0 0 !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.quick-cover > span {
  bottom: 22px !important;
  left: 34px !important;
}

.quick-cover > b {
  right: 65px !important;
  bottom: 23px !important;
}

.quick-logo {
  position: relative;
  z-index: 4;
  width: 98px !important;
  height: 98px !important;
  margin: -49px auto 14px !important;
  overflow: hidden !important;
  border: 6px solid #ffffff !important;
  border-radius: 26px !important;
  background: #ffffff !important;
  box-shadow: 0 13px 30px rgba(11, 23, 57, 0.18) !important;
  color: #1457ff !important;
}

.quick-logo img {
  width: 100% !important;
  height: 100% !important;
  padding: 7px !important;
  background: #ffffff !important;
  object-fit: contain !important;
}

.quick-category {
  color: #1457ff !important;
}

.quick-social-link {
  border-color: #dfe7f3 !important;
  color: #1746b8 !important;
  background: #f7faff !important;
}

.quick-profile-link {
  box-shadow: 0 12px 30px rgba(20, 87, 255, 0.20) !important;
}

/* -------------------------------------------------------------------------- */
/* PERFIL/PANEL · QUITAR MENCIÓN TÉCNICA DE FIREBASE                          */
/* Si el texto "Acceso protegido por Firebase Authentication." está dentro    */
/* del <small> directo de .auth-card, queda oculto sin cambiar el HTML.         */
/* -------------------------------------------------------------------------- */

.auth-card > small {
  display: none !important;
}

.panel-page {
  background:
    radial-gradient(circle at 8% 25%, rgba(20, 87, 255, 0.075), transparent 25%),
    radial-gradient(circle at 92% 14%, rgba(6, 182, 212, 0.09), transparent 25%),
    #f4f7ff !important;
}

.auth-card__icon {
  background: linear-gradient(135deg, #eaf2ff, #e9fbff) !important;
}

.auth-card__tag,
.dashboard-roadmap > span {
  color: #1457ff !important;
}

/* -------------------------------------------------------------------------- */
/* PERFIL PÚBLICO/PREMIUM · MISMA IDENTIDAD MÁS MODERNA                       */
/* -------------------------------------------------------------------------- */

.profile-page,
.panel-page {
  --profile-primary: #1457ff;
  --profile-secondary: #06b6d4;
}

.profile-cover {
  background:
    radial-gradient(circle at 80% 22%, rgba(255, 255, 255, 0.22) 0 6%, transparent 6.5%),
    radial-gradient(circle at 15% 84%, rgba(255, 255, 255, 0.16) 0 10%, transparent 10.5%),
    linear-gradient(125deg, var(--profile-primary), var(--profile-secondary)) !important;
  background-position: center !important;
  background-size: cover !important;
}

.profile-logo {
  background: #ffffff !important;
}

.profile-logo img {
  padding: 8px;
  background: #ffffff;
  object-fit: contain !important;
}

.map-card > span {
  background: #eaf2ff !important;
}

/* -------------------------------------------------------------------------- */
/* RESPONSIVE                                                                 */
/* -------------------------------------------------------------------------- */

@media (max-width: 1100px) {
  .business-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .business-card__cover {
    height: 190px !important;
  }
}

@media (max-width: 820px) {
  .hero-visual {
    min-height: 500px !important;
  }

  .mosaic-card {
    width: min(390px, 72%) !important;
  }

  .mini-card--one {
    left: 0 !important;
  }

  .mini-card--two {
    right: 0 !important;
  }

  .image-upload-grid {
    grid-template-columns: 1fr;
  }

  .image-picker--logo {
    max-width: 230px;
  }
}

@media (max-width: 650px) {
  .business-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .business-card__cover {
    height: 210px !important;
  }

  .business-card__body {
    min-height: 275px !important;
    padding: 49px 19px 18px !important;
  }

  .modal-card--quick {
    padding-right: 18px !important;
    padding-left: 18px !important;
    border-radius: 25px 25px 0 0 !important;
    overflow: hidden !important;
  }

  .quick-cover {
    height: 190px !important;
    margin-inline: -18px !important;
    border-radius: 25px 25px 0 0 !important;
  }

  .quick-logo {
    width: 90px !important;
    height: 90px !important;
    margin-top: -45px !important;
  }

  .image-upload-section__heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .image-upload-section__heading b {
    align-self: flex-start;
  }
}

@media (max-width: 560px) {
  .hero-visual {
    min-height: 430px !important;
  }

  .mosaic-card {
    width: 82% !important;
  }

  .mini-card {
    min-width: 150px !important;
    opacity: 0.92;
    transform: scale(0.92);
  }

  .mini-card--one {
    top: 255px !important;
    left: -16px !important;
  }

  .mini-card--two {
    right: -14px !important;
    bottom: 4px !important;
  }

  .floating-pill--bottom {
    left: 4% !important;
  }
}

/* ============================= FIN AJUSTES ================================ */

