:root {
  color-scheme: light;
  --ink: #171717;
  --muted: #6f6a63;
  --line: #dfd9ce;
  --surface: #ffffff;
  --canvas: #f6f2e9;
  --highlight: #f0dfbe;
  --accent: #cf852c;
  --success: #287a55;
  font-family:
    "Geist", "Helvetica Neue", Arial, ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: #fcfbf8;
}

html {
  scroll-behavior: smooth;
}

a {
  color: inherit;
}

.site-header {
  min-height: 72px;
  padding: 0 5vw;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  border-bottom: 1px solid rgba(23, 23, 23, 0.12);
  background: #fff;
}

.site-brand {
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.site-nav a {
  color: #4f4b46;
  font-size: 0.85rem;
  text-decoration: none;
}

.header-cta,
.primary-cta,
.secondary-cta {
  min-height: 46px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent);
  border-radius: 5px;
  background: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease;
}

.header-cta:hover,
.primary-cta:hover {
  border-color: #e0ad55;
  background: #e0ad55;
}

.site-shell {
  width: 100%;
}

.landing-hero {
  min-height: 650px;
  padding: 90px 24px 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--ink);
  text-align: center;
}

.hero-rating {
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.72rem;
}

.hero-rating > span:first-child,
.review-stars {
  color: #f2b634;
  letter-spacing: 0.08em;
}

.hero-rating > span:last-child {
  color: rgba(255, 255, 255, 0.66);
}

.landing-hero h1 {
  max-width: 900px;
  margin: 34px 0 0;
  font-size: clamp(2.75rem, 4.5vw, 4.5rem);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 0.98;
}

.landing-hero > p:not(.hero-note) {
  max-width: 690px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.75;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.secondary-cta {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.36);
  background: transparent;
}

.secondary-cta:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hero-note {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-note span {
  margin: 0 7px;
}

.hero-stats {
  width: min(100%, 680px);
  margin-top: 40px;
  padding-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-stats > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  font-size: 1.05rem;
}

.hero-stats span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.68rem;
}

.agent-stage {
  scroll-margin-top: 24px;
  background: var(--canvas);
}

button,
textarea,
input {
  font: inherit;
}

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

.page-shell {
  min-height: 100vh;
  width: 100%;
  padding: 28px 16px;
  display: grid;
  place-items: center;
}

.appeal-card {
  width: min(100%, 480px);
  height: min(820px, calc(100vh - 56px));
  min-height: 640px;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto auto auto minmax(0, 1fr) auto auto auto;
  border: 1px solid rgba(23, 23, 23, 0.14);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 24px 64px rgba(23, 23, 23, 0.14);
}

.brand-header {
  min-height: 58px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  background: var(--ink);
  border-bottom: 2px solid var(--accent);
}

.brand-chip {
  min-width: 0;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-chip img {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  object-fit: cover;
  object-position: 50% 28%;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
}

.brand-chip strong,
.brand-chip span {
  display: block;
}

.brand-chip strong {
  overflow: hidden;
  font-size: 0.88rem;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-chip span {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 7px;
}

.whatsapp-header-button,
.reset-button {
  min-height: 34px;
  flex: 0 0 auto;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 5px;
  color: white;
  background: transparent;
  font-size: 0.74rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease;
}

.whatsapp-header-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-color: #74b897;
  color: var(--ink);
  background: #dff4e8;
  text-decoration: none;
}

.whatsapp-header-button svg {
  width: 15px;
  height: 15px;
  fill: #16724a;
}

.whatsapp-header-button:hover,
.whatsapp-header-button:focus-visible {
  border-color: #9bd0b4;
  background: #effaf4;
}

.reset-button:hover,
.reset-button:focus-visible {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 420px) {
  .brand-header {
    flex-wrap: wrap;
  }

  .brand-chip,
  .header-actions {
    width: 100%;
  }

  .header-actions > * {
    flex: 1 1 0;
    justify-content: center;
  }
}

.persona-hero {
  padding: 16px 18px 8px;
  background: var(--surface);
}

.persona-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.persona-summary > img {
  width: 66px;
  height: 66px;
  flex: 0 0 66px;
  display: block;
  object-fit: cover;
  object-position: 50% 24%;
  border: 3px solid white;
  border-radius: 50%;
  box-shadow:
    0 0 0 1px var(--line),
    0 10px 24px rgba(23, 23, 23, 0.12);
}

.persona-copy {
  min-width: 0;
  text-align: left;
}

.persona-hero h1,
.persona-hero h2 {
  margin: 0;
  font-size: 1.22rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.1;
}

.persona-promise {
  margin: 7px 0 0;
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.35;
}

.persona-promise i {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: #75d29a;
  box-shadow: 0 0 0 4px rgba(117, 210, 154, 0.16);
}

.free-check-badge {
  margin-top: 8px;
  padding: 4px 8px;
  display: inline-flex;
  align-items: center;
  border: 1px solid #9bd0b4;
  border-radius: 999px;
  color: var(--success);
  background: #effaf4;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1;
}

.service-cards {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.service-card {
  min-width: 0;
  min-height: 38px;
  padding: 7px 8px;
  border: 1px solid #9bd0b4;
  border-radius: 7px;
  color: var(--success);
  background: #effaf4;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.15;
  cursor: pointer;
  transition:
    border-color 150ms ease,
    background 150ms ease,
    color 150ms ease,
    transform 150ms ease;
}

.service-card:hover,
.service-card:focus-visible {
  border-color: var(--success);
  color: white;
  background: var(--success);
  transform: translateY(-1px);
}

.service-card:disabled {
  opacity: 0.55;
  cursor: wait;
  transform: none;
}

.persona-proof {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.71rem;
  font-weight: 650;
  line-height: 1.35;
  text-align: center;
}

.persona-proof a {
  color: var(--success);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.persona-proof a:hover,
.persona-proof a:focus-visible {
  color: var(--ink);
}

.day-divider {
  position: relative;
  padding: 12px 18px 7px;
  color: var(--muted);
  text-align: center;
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.day-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  left: 18px;
  height: 1px;
  background: var(--line);
}

.day-divider span {
  position: relative;
  padding: 0 10px;
  background: var(--surface);
}

.messages {
  min-height: 0;
  padding: 10px 18px 12px;
  overflow-y: auto;
  scroll-behavior: smooth;
  background: var(--surface);
}

.message {
  margin: 0 0 12px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  animation: message-in 180ms ease-out both;
}

.message.assistant::before {
  content: "";
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: url("/__pmuk/widget-proxy.php?route=image") center 28% / cover no-repeat;
}

.message.user {
  justify-content: flex-end;
}

.bubble {
  max-width: min(84%, 360px);
  padding: 11px 13px;
  border-radius: 8px;
  line-height: 1.45;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  font-size: 0.86rem;
}

.assistant .bubble {
  border: 1px solid var(--line);
  border-bottom-left-radius: 2px;
  background: #f5f3ef;
}

.user .bubble {
  color: white;
  border-bottom-right-radius: 2px;
  background: var(--ink);
}

.bubble a {
  color: inherit;
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.message-file {
  display: flex;
  align-items: center;
  gap: 8px;
}

.message-file::before {
  content: "\2191";
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 4px;
}

.typing {
  width: fit-content;
  margin: 0 18px 10px 54px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 8px 8px 8px 2px;
  background: #f5f3ef;
}

.typing span:not(.sr-only) {
  width: 6px;
  height: 6px;
  margin: 0 2px;
  display: inline-block;
  border-radius: 50%;
  background: #8a847d;
  animation: bounce 900ms infinite alternate;
}

.typing span:nth-child(2) {
  animation-delay: 150ms;
}

.typing span:nth-child(3) {
  animation-delay: 300ms;
}

.quick-options {
  padding: 0 18px 12px 54px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
}

.option-button,
.payment-button {
  min-height: 42px;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--ink);
  background: var(--surface);
  font-size: 0.76rem;
  font-weight: 650;
  text-align: left;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.option-button:first-child {
  color: white;
  border-color: var(--ink);
  background: var(--ink);
}

.option-button:hover,
.option-button:focus-visible {
  border-color: var(--accent);
  background: var(--highlight);
}

.option-button:first-child:hover,
.option-button:first-child:focus-visible {
  color: var(--ink);
}

.payment-button {
  grid-column: 1 / -1;
  color: white;
  border-color: var(--success);
  background: var(--success);
  text-align: center;
  text-decoration: none;
}

.composer {
  min-height: 52px;
  margin: 0 12px 9px;
  padding: 6px;
  display: flex;
  align-items: flex-end;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 4px 16px rgba(23, 23, 23, 0.08);
}

.composer[hidden],
.composer textarea[hidden],
.composer .upload-button[hidden],
.composer .send-button[hidden] {
  display: none;
}

.composer.upload-only {
  justify-content: center;
}

.composer.upload-only .upload-button {
  width: 100%;
  min-height: 40px;
  font-size: 0;
}

.composer.upload-only .upload-button::after {
  content: "Upload a photo or PDF";
  font-size: 0.82rem;
  font-weight: 650;
}

.composer:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(207, 133, 44, 0.13);
}

.composer textarea {
  flex: 1;
  min-height: 38px;
  max-height: 100px;
  padding: 9px 3px 7px;
  resize: none;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
}

.upload-button,
.send-button {
  min-width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 5px;
  cursor: pointer;
}

.upload-button {
  color: var(--ink);
  background: var(--highlight);
  font-size: 1.25rem;
}

.send-button {
  border: 0;
  color: white;
  background: var(--ink);
  font-size: 1rem;
  font-weight: 700;
}

.send-button:disabled,
.upload-button.disabled {
  opacity: 0.45;
  pointer-events: none;
}

.privacy-copy {
  margin: 0;
  padding: 0 12px 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
  color: var(--muted);
  text-align: center;
  font-size: 0.62rem;
}

.privacy-copy a {
  color: inherit;
  text-underline-offset: 2px;
}

.privacy-copy strong {
  color: var(--ink);
}

.review-strip {
  padding: 34px 6vw;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.review-strip figure {
  margin: 0;
}

.review-strip blockquote {
  margin: 10px 0 0;
  font-size: 0.82rem;
  line-height: 1.6;
}

.review-strip figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.content-section {
  padding: 96px max(6vw, 24px);
  text-align: center;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto;
}

.section-heading > p,
.pricing-grid small,
.process-grid small {
  margin: 0;
  color: #a96112;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 17px 0 0;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  font-weight: 300;
  line-height: 1.05;
}

.section-heading span {
  margin-top: 20px;
  display: block;
  color: var(--muted);
  line-height: 1.75;
}

.process-section {
  background: #fcfbf8;
}

.process-grid {
  max-width: 980px;
  margin: 58px auto 44px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 46px;
  list-style: none;
}

.process-grid li {
  position: relative;
}

.process-grid b {
  width: 48px;
  height: 48px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--ink);
  font-size: 1.05rem;
  font-weight: 500;
}

.process-grid h3 {
  margin: 9px 0 0;
  font-size: 1.05rem;
  font-weight: 600;
}

.process-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.7;
}

.pricing-section {
  background: var(--canvas);
}

.pricing-grid {
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  text-align: left;
}

.pricing-grid article {
  min-height: 360px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  color: #fff;
  border-radius: 6px;
  background: var(--ink);
}

.pricing-grid h3 {
  margin: 14px 0 0;
  font-size: 1.2rem;
  font-weight: 500;
}

.pricing-grid article > strong {
  margin-top: 5px;
  font-size: 1.7rem;
  font-weight: 300;
}

.pricing-grid article > p {
  margin: 22px 0 0;
  flex: 1;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.82rem;
  line-height: 1.7;
}

.pricing-grid ul {
  margin: 24px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  list-style: none;
  font-size: 0.8rem;
  line-height: 1.8;
}

.pricing-note {
  max-width: 760px;
  margin: 30px auto 26px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.7;
}

.faq-section {
  background: #fff;
}

.faq-list {
  max-width: 820px;
  margin: 48px auto 0;
  border-top: 1px solid var(--line);
  text-align: left;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  padding: 22px 0;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
}

.faq-list details p {
  margin: -4px 0 24px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.75;
}

.site-footer {
  padding: 62px max(6vw, 24px);
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 50px;
  color: #fff;
  background: #0b1220;
}

.site-footer strong,
.site-footer a,
.site-footer p {
  display: block;
}

.site-footer strong {
  margin-bottom: 16px;
}

.site-footer a,
.site-footer p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  line-height: 1.7;
  text-decoration: none;
}

.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;
}

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

@keyframes bounce {
  to {
    transform: translateY(-4px);
    opacity: 0.55;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 62px;
    padding: 0 18px;
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .site-nav {
    display: none;
  }

  .header-cta {
    min-height: 38px;
    padding-inline: 14px;
    font-size: 0.72rem;
  }

  .landing-hero {
    min-height: 610px;
    padding: 72px 20px 46px;
  }

  .landing-hero h1 {
    font-size: 2.5rem;
  }

  .landing-hero h1 br {
    display: none;
  }

  .hero-rating {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero-stats > div + div {
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 0;
  }

  .page-shell {
    padding: 0;
  }

  .appeal-card {
    width: 100%;
    height: 100dvh;
    min-height: 580px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .quick-options {
    grid-template-columns: 1fr;
    padding-left: 54px;
  }

  .payment-button {
    grid-column: auto;
  }

  .review-strip,
  .process-grid,
  .pricing-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .review-strip {
    gap: 28px;
  }

  .content-section {
    padding: 70px 20px;
  }

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

  .process-grid {
    gap: 40px;
  }

  .pricing-grid article {
    min-height: 320px;
  }

  .site-footer {
    gap: 28px;
  }
}

@media (min-width: 561px) and (max-width: 980px) {
  .site-nav {
    display: none;
  }

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

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

@media (max-height: 700px) and (min-width: 561px) {
  .appeal-card {
    height: calc(100vh - 24px);
    min-height: 580px;
  }

  .page-shell {
    padding-block: 12px;
  }

  .persona-hero {
    padding-top: 12px;
  }

  .persona-summary > img {
    width: 60px;
    height: 60px;
    flex-basis: 60px;
  }
}

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