:root {
  --ink: #0d2230;
  --ink-2: #17384d;
  --ink-3: #234f68;
  --paper: #f6f0e7;
  --paper-2: #fbf8f2;
  --sand: #eadcc8;
  --stone: #b8a28b;
  --amber: #d98b4d;
  --amber-soft: #f3c493;
  --peach: #efb7a1;
  --mint: #d5e4d7;
  --sky: #c9e0ec;
  --line: rgba(13, 34, 48, 0.12);
  --line-strong: rgba(13, 34, 48, 0.2);
  --white: #ffffff;
  --shadow-soft: 0 30px 80px rgba(13, 34, 48, 0.14);
  --shadow-card: 0 20px 48px rgba(13, 34, 48, 0.08);
  --shadow-button: 0 18px 28px rgba(11, 33, 50, 0.18);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --max: 1280px;
  --teal: #075e54;
  --wa-chat: #ece5dd;
  --wa-out: #dcf8c6;
  --wa-input: #f3f4f6;
  --wa-green: #25d366;
  --wa-muted: #6b7280;
  --wa-played: #46556b;
  --wa-unplayed: #a0aec0;
  --wa-label: #0f766e;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--paper-2);
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(13, 34, 48, 0.82);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.nav-row {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Mona Sans', sans-serif;
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-on-dark {
  color: var(--white);
}

.desktop-nav,
.desktop-actions {
  display: none;
}

.menu-toggle,
.menu-close {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  padding: 10px 8px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.menu-toggle span:not(.sr-only) {
  width: 100%;
  height: 2px;
  background: currentColor;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(13, 34, 48, 0.48);
  backdrop-filter: blur(12px);
}

.mobile-menu-panel {
  min-height: 100%;
  padding: 20px;
  background: linear-gradient(180deg, #102433 0%, #132d3e 100%);
  color: var(--white);
  display: flex;
  flex-direction: column;
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.menu-close {
  width: 44px;
  height: 44px;
  font-size: 2rem;
  line-height: 1;
}

.mobile-menu-links {
  display: grid;
  gap: 16px;
  margin-bottom: auto;
}

.mobile-menu-links a {
  font-family: 'Mona Sans', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.mobile-menu-footer {
  display: grid;
  gap: 20px;
}

.lang-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.9375rem;
}

.lang-pill a {
  color: rgba(255, 255, 255, 0.68);
}

.lang-pill .is-active {
  color: var(--white);
  font-weight: 700;
  border-bottom: 2px solid currentColor;
  padding-bottom: 4px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

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

.button:focus-visible,
.carousel-button:focus-visible,
.carousel-dot:focus-visible,
.menu-toggle:focus-visible,
.menu-close:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.28), 0 0 0 6px rgba(217, 139, 77, 0.34);
}

.button-sm {
  min-height: 42px;
  padding: 0 16px;
  font-size: 0.9rem;
}

.button-lg {
  min-height: 54px;
  padding: 0 26px;
  font-size: 1rem;
}

.button-primary {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
  box-shadow: var(--shadow-button);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--ink-2);
  border-color: var(--ink-2);
}

.button-on-dark {
  background: var(--paper);
  color: var(--ink);
  border-color: transparent;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.16);
}

.button-on-dark:hover,
.button-on-dark:focus-visible {
  background: var(--white);
  color: var(--ink);
}

.section-ink {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #0d2230 0%, #122a3b 100%);
  color: var(--white);
}

.section-paper {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.1)),
    radial-gradient(circle at top left, rgba(217, 139, 77, 0.08), transparent 35%),
    var(--paper);
}

.hero-noise,
.hero-visual::before,
.section-seam::after,
.trust-strip::before,
.site-footer::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.18'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

.hero {
  padding: 28px 0 48px;
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.hero-shell {
  position: relative;
  display: grid;
  gap: 28px;
  align-items: center;
}

.hero-copy,
.hero-visual,
.section-head,
.value-card,
.quote-showcase,
.feature-carousel,
.testimonial-inner,
.steps,
.how-demo,
.final-cta-copy,
.final-qr-shell,
.trust-shell {
  position: relative;
  z-index: 1;
}

.hero-copy {
  padding-top: 8px;
}

.hero-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.eyebrow-pill,
.live-pill,
.section-kicker,
.panel-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow-pill,
.live-pill {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
}

.live-pill::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #59d67d;
  box-shadow: 0 0 0 6px rgba(89, 214, 125, 0.12);
}

.hero-copy h1,
.section-head h2,
.final-cta-copy h2,
.consent-card h1 {
  margin: 0;
  font-family: 'Mona Sans', sans-serif;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.hero-copy h1 {
  font-size: clamp(2.9rem, 11vw, 5rem);
  line-height: 0.96;
  max-width: 11ch;
}

.hero-subhead,
.section-head p,
.final-cta-copy p,
.footer-tagline,
.consent-card p {
  font-size: 1rem;
  line-height: 1.7;
}

.hero-subhead {
  max-width: 34rem;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.8);
}

.hero-actions {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.hero-qr-note {
  max-width: 320px;
}

.microcopy {
  margin: 16px 0 0;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.58);
}

.hero-visual {
  min-height: 420px;
  padding: 18px 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.1;
  pointer-events: none;
  mix-blend-mode: overlay;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(251, 236, 215, 0.9), transparent 28%),
    radial-gradient(circle at 76% 22%, rgba(239, 183, 161, 0.78), transparent 26%),
    radial-gradient(circle at 66% 78%, rgba(217, 139, 77, 0.72), transparent 32%),
    radial-gradient(circle at 24% 72%, rgba(36, 79, 104, 0.34), transparent 34%),
    linear-gradient(135deg, #f9e8cb 0%, #efc195 38%, #cf8456 72%, #6b4f43 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.hero-blueprint {
  position: absolute;
  inset: 12% 7% 12% auto;
  width: 46%;
  border-radius: 24px;
  background:
    linear-gradient(to right, rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.2;
  transform: rotate(-8deg);
}

.hero-blueprint::before,
.hero-blueprint::after {
  content: '';
  position: absolute;
  border: 1.5px solid rgba(255, 255, 255, 0.34);
}

.hero-blueprint::before {
  inset: 18% 20% 32% 14%;
  border-radius: 18px;
}

.hero-blueprint::after {
  width: 46%;
  height: 36%;
  right: 12%;
  bottom: 16%;
  border-radius: 999px 999px 30px 30px;
}

.hero-ground-line {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 12%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.52), transparent);
  opacity: 0.65;
}

.hero-stage {
  position: relative;
  z-index: 2;
  width: min(100%, 410px);
  min-height: 532px;
}

.hero-stage__phone,
.hero-stage__invoice {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 760ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 760ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity, filter;
}

.hero-stage__phone {
  z-index: 2;
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
  pointer-events: auto;
}

.hero-stage__invoice {
  z-index: 3;
  opacity: 0;
  filter: blur(10px);
  transform: translate3d(0, 18px, 0) scale(0.96);
  pointer-events: none;
}

.hero-stage.is-transitioning .hero-stage__phone,
.hero-stage.is-showing-invoice .hero-stage__phone {
  opacity: 0;
  filter: blur(6px);
  transform: translate3d(0, -14px, 0) scale(0.94);
  pointer-events: none;
}

.hero-stage.is-transitioning .hero-stage__invoice,
.hero-stage.is-showing-invoice .hero-stage__invoice {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

.hero-stage.is-showing-invoice .hero-stage__invoice {
  pointer-events: auto;
}

.phone-stage {
  position: relative;
  width: min(100%, 330px);
  filter: drop-shadow(0 34px 60px rgba(13, 34, 48, 0.32));
}

.phone-stage-hero {
  width: 252px;
  max-width: 100%;
}

.phone-stage-hero .claridad-demo,
.phone-stage-hero .phone-frame {
  width: 252px;
}

.phone-stage-hero .phone-shell {
  padding: 8px;
  border-radius: 25px;
}

.phone-stage-hero .phone-shell::after {
  bottom: -13px;
  height: 20px;
  filter: blur(13px);
}

.phone-stage-hero .phone-notch {
  top: 14px;
  width: 90px;
  height: 22px;
  margin-left: -45px;
}

.phone-stage-hero .phone-screen {
  height: 488px;
  border-radius: 21px;
}

.phone-stage-hero .phone-status-spacer {
  height: 37px;
}

.phone-stage-hero .phone-home-spacer {
  height: 20px;
}

.phone-stage-hero .wa-app {
  height: calc(100% - 57px);
}

.phone-stage-hero .wa-header {
  padding: 9px 11px;
  gap: 9px;
}

.phone-stage-hero .wa-header svg,
.phone-stage-hero .wa-inputbar svg {
  width: 17px;
  height: 17px;
}

.phone-stage-hero .wa-header-main,
.phone-stage-hero .wa-header-icons {
  gap: 9px;
}

.phone-stage-hero .wa-avatar {
  width: 30px;
  height: 30px;
  font-size: 0.75rem;
}

.phone-stage-hero .wa-contact strong {
  font-size: 0.8125rem;
}

.phone-stage-hero .wa-contact span {
  font-size: 0.625rem;
}

.phone-stage-hero .wa-chat {
  padding: 11px 11px 7px;
}

.phone-stage-hero .wa-date-pill {
  margin-bottom: 9px;
  font-size: 0.5625rem;
}

.phone-stage-hero .wa-bubble {
  max-width: 194px;
  padding: 5px 7px 5px 8px;
  margin-bottom: 5px;
}

.phone-stage-hero .wa-audio-row {
  gap: 6px;
}

.phone-stage-hero .wa-audio-button {
  width: 22px;
  height: 22px;
}

.phone-stage-hero .wa-waveform {
  height: 20px;
}

.phone-stage-hero .wa-meta {
  margin-top: 1px;
  font-size: 0.53125rem;
}

.phone-stage-hero .wa-label {
  font-size: 0.625rem;
}

.phone-stage-hero .wa-transcript,
.phone-stage-hero .wa-bubble p {
  font-size: 0.65625rem;
  line-height: 1.32;
}

.phone-stage-hero .wa-transcript {
  min-height: 0;
}

.phone-stage-hero .wa-inputbar {
  padding: 6px 11px;
  gap: 9px;
}

.phone-stage-hero .wa-input-pill {
  padding: 6px 11px;
  gap: 9px;
}

.phone-stage-hero .wa-input-pill span {
  font-size: 0.75rem;
}

.phone-stage-hero .wa-send-button {
  width: 38px;
  height: 38px;
}

.invoice-card {
  width: min(95vw, 376px);
  padding: 12px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 249, 240, 0.98), rgba(243, 232, 214, 0.96));
  box-shadow: 0 34px 70px rgba(13, 34, 48, 0.22);
}

.invoice-card__sheet {
  border-radius: 14px;
  border: 1px solid rgba(13, 34, 48, 0.12);
  background: var(--white);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  overflow: hidden;
}

.invoice-card__header,
.invoice-card__prepared,
.invoice-card__item,
.invoice-card__pricing,
.invoice-card__payments,
.invoice-card__footer {
  padding-left: 18px;
  padding-right: 18px;
}

.invoice-card__header {
  padding-top: 18px;
  padding-bottom: 15px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  background: #f8f3eb;
  border-bottom: 1px solid rgba(13, 34, 48, 0.08);
}

.invoice-card__eyebrow,
.invoice-card__label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(13, 34, 48, 0.48);
}

.invoice-card__title-group strong,
.invoice-card__contractor strong,
.invoice-card__prepared strong,
.invoice-card__item-top strong,
.invoice-card__total strong {
  font-family: 'Mona Sans', sans-serif;
}

.invoice-card__title-group strong,
.invoice-card__contractor strong {
  display: block;
  font-size: 1rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.invoice-card__contractor {
  text-align: right;
}

.invoice-card__contractor span,
.invoice-card__prepared p,
.invoice-card__item-top p,
.invoice-card__footer p,
.invoice-card__approval span {
  color: rgba(13, 34, 48, 0.64);
}

.invoice-card__contractor span,
.invoice-card__prepared p,
.invoice-card__item-top p {
  font-size: 0.74rem;
  line-height: 1.45;
}

.invoice-card__prepared,
.invoice-card__item,
.invoice-card__payments,
.invoice-card__footer {
  padding-top: 14px;
  padding-bottom: 14px;
}

.invoice-card__prepared,
.invoice-card__item,
.invoice-card__pricing,
.invoice-card__payments {
  border-bottom: 1px solid rgba(13, 34, 48, 0.08);
}

.invoice-card__prepared strong,
.invoice-card__item-top strong {
  display: block;
  font-size: 0.92rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.invoice-card__prepared p,
.invoice-card__item-top p,
.invoice-card__footer p,
.invoice-card__approval span {
  margin: 0;
}

.invoice-card__item-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.invoice-card__item-top code {
  padding-top: 3px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  line-height: 1.45;
  color: rgba(13, 34, 48, 0.62);
  text-align: right;
}

.invoice-card__subitems {
  margin: 12px 0 0;
  padding: 0 0 0 16px;
  display: grid;
  gap: 6px;
  color: rgba(13, 34, 48, 0.78);
  font-size: 0.74rem;
  line-height: 1.45;
}

.invoice-card__pricing {
  padding-top: 14px;
  padding-bottom: 14px;
  display: grid;
  gap: 8px;
}

.invoice-card__pricing div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.76rem;
  color: rgba(13, 34, 48, 0.72);
}

.invoice-card__pricing strong {
  font-size: 0.8rem;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  color: var(--ink);
}

.invoice-card__total {
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px solid rgba(13, 34, 48, 0.08);
}

.invoice-card__total span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.invoice-card__total strong {
  font-size: 1.18rem;
  letter-spacing: -0.04em;
}

.invoice-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.invoice-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 28px;
  padding: 0 10px 0 8px;
  border-radius: 999px;
  border: 1px solid rgba(13, 34, 48, 0.08);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.invoice-chip b {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Mona Sans', sans-serif;
  font-size: 0.6rem;
  line-height: 1;
  background: rgba(255, 255, 255, 0.7);
}

.invoice-chip--venmo {
  background: rgba(0, 154, 255, 0.12);
}

.invoice-chip--zelle {
  background: rgba(111, 66, 193, 0.12);
}

.invoice-chip--paypal {
  background: rgba(0, 87, 184, 0.12);
}

.invoice-chip--cashapp {
  background: rgba(0, 200, 83, 0.12);
}

.invoice-card__footer {
  display: grid;
  gap: 10px;
  background: linear-gradient(180deg, rgba(248, 243, 235, 0.42), rgba(255, 255, 255, 0));
}

.invoice-card__approval {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
}

.invoice-card__approval span {
  font-size: 0.72rem;
}

.invoice-card__signature {
  min-width: 110px;
  padding-top: 11px;
  border-top: 1px solid rgba(13, 34, 48, 0.18);
  font-family: 'Mona Sans', sans-serif;
  font-size: 0.8rem;
  line-height: 1;
  text-align: right;
  color: rgba(13, 34, 48, 0.74);
}

.invoice-card__footer p {
  font-size: 0.64rem;
  line-height: 1.45;
}

.hero-stage__burst {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  pointer-events: none;
  opacity: 0;
  z-index: 4;
}

.hero-stage__burst.is-active {
  opacity: 1;
}

.hero-burst-ring,
.hero-burst-particle {
  position: absolute;
  top: 0;
  left: 0;
}

.hero-burst-ring {
  margin-left: -46px;
  margin-top: -46px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  opacity: 0;
}

.hero-burst-ring--terracotta {
  border: 2px solid #c96a43;
}

.hero-burst-ring--emerald {
  border: 2px solid #1d6d5c;
}

.hero-stage__burst.is-active .hero-burst-ring--terracotta {
  animation: claridad-burst-ring 900ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-stage__burst.is-active .hero-burst-ring--emerald {
  animation: claridad-burst-ring 900ms cubic-bezier(0.22, 1, 0.36, 1) 120ms forwards;
}

.hero-burst-particle {
  width: 10px;
  height: 10px;
  margin-left: -5px;
  margin-top: -5px;
  border-radius: 50%;
  opacity: 0;
  background: #c96a43;
}

.hero-burst-particle:nth-of-type(2n + 1) {
  background: #1d6d5c;
}

.hero-stage__burst.is-active .hero-burst-particle {
  animation: claridad-burst-particle 900ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--delay);
}

.section-seam {
  position: relative;
  height: 72px;
  overflow: hidden;
}

.section-seam::before {
  content: '';
  position: absolute;
  inset: 0;
}

.section-seam::after {
  content: '';
  position: absolute;
  inset: 20px -10% 12px;
  background-image: radial-gradient(circle, rgba(13, 34, 48, 0.16) 1.5px, transparent 1.6px);
  background-size: 18px 18px;
  mask-image: linear-gradient(180deg, transparent, black 25%, black 72%, transparent);
  opacity: 0.32;
}

.section-seam-down::before {
  background: linear-gradient(180deg, #122a3b 0%, rgba(18, 42, 59, 0.46) 42%, var(--paper) 100%);
}

.section-seam-up::before {
  background: linear-gradient(180deg, var(--paper-2) 0%, rgba(246, 240, 231, 0.58) 40%, #11293a 100%);
}

.trust-strip {
  position: relative;
  padding: 12px 0 20px;
  background: var(--paper);
}

.trust-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.05;
  pointer-events: none;
}

.trust-shell {
  padding: 10px 0 4px;
  text-align: center;
}

.trust-strip p {
  margin: 0 0 16px;
  font-size: 0.9rem;
  color: rgba(13, 34, 48, 0.64);
}

.trade-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.trade-row span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(13, 34, 48, 0.1);
  background: rgba(255, 255, 255, 0.64);
  font-family: 'Mona Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: rgba(13, 34, 48, 0.76);
}

.value-section,
.feature-section,
.how-section,
.final-cta {
  padding: 68px 0;
}

.section-head {
  text-align: center;
  margin-bottom: 38px;
}

.section-head h2,
.final-cta-copy h2,
.consent-card h1 {
  font-size: clamp(2.35rem, 7vw, 4rem);
  line-height: 0.98;
}

.section-head p {
  max-width: 46rem;
  margin: 18px auto 0;
  color: rgba(13, 34, 48, 0.78);
  text-wrap: pretty;
}

.value-grid,
.footer-grid,
.quote-showcase {
  display: grid;
  gap: 18px;
}

.value-card,
.feature-card,
.consent-card,
.showcase-panel,
.demo-frame {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(10px);
}

.value-card,
.feature-card {
  padding: 30px 22px;
}

.feature-icon {
  width: 88px;
  margin: 0 auto 18px;
}

.value-card h3,
.feature-card h3,
.step-card h3,
.site-footer h3,
.consent-card h2,
.showcase-panel h3 {
  margin: 0 0 10px;
  font-family: 'Mona Sans', sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.value-card h3 {
  font-size: 1.56rem;
  line-height: 1.05;
}

.value-card p,
.feature-card p,
.step-card p,
.showcase-panel p {
  margin: 0;
  font-size: 0.96rem;
  color: rgba(13, 34, 48, 0.78);
}

.centered-cta {
  margin-top: 34px;
  text-align: center;
}

.quote-showcase {
  margin-top: 28px;
}

.showcase-panel {
  padding: 24px;
}

.panel-kicker,
.section-kicker {
  color: var(--amber);
}

.showcase-panel h3 {
  font-size: 1.55rem;
  line-height: 1.05;
  margin-bottom: 12px;
}

.showcase-panel-voice {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.82)),
    radial-gradient(circle at top left, rgba(213, 228, 215, 0.42), transparent 32%);
}

.voice-quote {
  font-size: 1.02rem;
  line-height: 1.8;
}

.voice-meta {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.voice-meta span,
.quote-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(13, 34, 48, 0.06);
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(13, 34, 48, 0.72);
}

.showcase-panel-quote {
  background:
    linear-gradient(180deg, rgba(18, 42, 59, 0.03), rgba(18, 42, 59, 0.1)),
    rgba(255, 255, 255, 0.92);
}

.quote-sheet {
  margin-top: 18px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(13, 34, 48, 0.08);
  background: var(--white);
}

.quote-sheet-head,
.quote-lines div,
.quote-sheet-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.quote-sheet-head {
  margin-bottom: 18px;
}

.quote-sheet-head strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.1rem;
}

.quote-sheet-head span,
.quote-lines span,
.quote-sheet-total span {
  font-size: 0.82rem;
  color: rgba(13, 34, 48, 0.62);
}

.quote-lines {
  display: grid;
  gap: 12px;
}

.quote-lines div {
  padding-top: 12px;
  border-top: 1px solid rgba(13, 34, 48, 0.08);
}

.quote-lines strong {
  max-width: 58%;
  text-align: right;
  font-size: 0.92rem;
  line-height: 1.5;
}

.quote-sheet-total {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(13, 34, 48, 0.08);
}

.quote-sheet-total strong {
  font-size: 1.5rem;
  letter-spacing: -0.04em;
}

.feature-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0)),
    var(--paper-2);
}

.feature-carousel {
  overflow: hidden;
}

.feature-track {
  --carousel-index: 0;
  --carousel-visible: 1;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - (var(--carousel-visible) - 1) * 20px) / var(--carousel-visible));
  gap: 20px;
  transform: translateX(calc(var(--carousel-index) * -1 * ((100% + 20px) / var(--carousel-visible))));
  transition: transform 450ms cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-card {
  min-height: 100%;
  border: 1px solid rgba(13, 34, 48, 0.08);
}

.feature-card h3 {
  font-size: 1.34rem;
  line-height: 1.08;
}

.carousel-controls {
  margin-top: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.carousel-rail {
  min-width: 132px;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(13, 34, 48, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(13, 34, 48, 0.14);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.carousel-button svg {
  width: 12px;
  height: 20px;
  fill: currentColor;
}

.carousel-button[data-carousel-prev] svg {
  transform: rotate(180deg);
}

.carousel-button:hover,
.carousel-button:focus-visible {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-1px);
}

.carousel-button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.carousel-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(13, 34, 48, 0.2);
  cursor: pointer;
  transition: width 220ms ease, background-color 220ms ease, transform 180ms ease;
}

.carousel-dot:hover,
.carousel-dot:focus-visible {
  transform: scale(1.08);
}

.carousel-dot.is-active {
  width: 28px;
  background: var(--ink);
}

.testimonial {
  padding: 84px 0;
}

.testimonial-inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-mark {
  position: absolute;
  top: -36px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Mona Sans', sans-serif;
  font-size: clamp(6rem, 14vw, 10rem);
  line-height: 1;
  color: rgba(243, 196, 147, 0.38);
}

.testimonial blockquote {
  margin: 14px 0 0;
  font-family: 'Mona Sans', sans-serif;
  font-size: clamp(1.65rem, 4.1vw, 2.8rem);
  font-style: italic;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.testimonial-person {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f2c689, #d98b4d);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Mona Sans', sans-serif;
  font-weight: 900;
}

.testimonial-person strong,
.testimonial-person span {
  display: block;
}

.testimonial-person span {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.66);
}

.promise-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 220px));
  gap: 12px;
  justify-content: center;
}

.promise-card {
  padding: 20px 16px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.promise-card:hover {
  transform: translateY(-2px);
  border-color: rgba(243, 196, 147, 0.28);
  background: rgba(255, 255, 255, 0.07);
}

.promise-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: 'Mona Sans', sans-serif;
  font-size: 1.9rem;
  line-height: 1;
  color: var(--white);
}

.promise-card span {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.86);
}

.how-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0)),
    var(--paper-2);
}

.how-grid {
  display: grid;
  gap: 28px;
}

.steps {
  display: grid;
  gap: 20px;
}

.step-card {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.step-card:first-child {
  padding-top: 0;
  border-top: 0;
}

.step-number {
  font-family: 'Mona Sans', sans-serif;
  font-size: 3.6rem;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: rgba(217, 139, 77, 0.88);
}

.how-demo {
  display: flex;
  justify-content: center;
}

.demo-frame {
  width: 100%;
  max-width: 480px;
  padding: 18px;
}

.demo-frame-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 14px;
}

.demo-frame-head p {
  margin: 0;
  font-size: 0.86rem;
  color: rgba(13, 34, 48, 0.68);
}

.demo-frame-head .live-pill {
  border-color: rgba(13, 34, 48, 0.08);
  background: rgba(13, 34, 48, 0.05);
  color: var(--ink);
}

.final-cta {
  padding: 84px 0;
}

.final-cta-inner {
  position: relative;
  display: grid;
  gap: 28px;
  align-items: center;
}

.final-cta-copy {
  text-align: center;
}

.final-cta-copy p {
  max-width: 34rem;
  margin: 18px auto 30px;
  color: rgba(255, 255, 255, 0.8);
}

.final-qr-shell {
  display: flex;
  justify-content: center;
}

.qr-card {
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.qr-card-compact {
  padding: 10px 14px 10px 10px;
}

.qr-card-large {
  width: min(100%, 430px);
  padding: 18px;
}

.qr-grid {
  position: relative;
  flex: none;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--white);
  overflow: hidden;
}

.qr-card-large .qr-grid {
  width: 112px;
  height: 112px;
}

.qr-grid::before {
  content: '';
  position: absolute;
  inset: 4px;
  background:
    linear-gradient(to right, rgba(13, 34, 48, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(13, 34, 48, 0.08) 1px, transparent 1px);
  background-size: calc(100% / 7) calc(100% / 7);
}

.qr-finder,
.qr-finder::before,
.qr-finder::after,
.qr-module {
  position: absolute;
  background: var(--ink);
}

.qr-finder {
  width: 22px;
  height: 22px;
}

.qr-card-large .qr-finder {
  width: 42px;
  height: 42px;
}

.qr-finder::before {
  content: '';
  inset: 3px;
  background: var(--white);
}

.qr-finder::after {
  content: '';
  inset: 7px;
}

.qr-card-large .qr-finder::before {
  inset: 5px;
}

.qr-card-large .qr-finder::after {
  inset: 13px;
}

.qr-finder.tl {
  top: 4px;
  left: 4px;
}

.qr-finder.tr {
  top: 4px;
  right: 4px;
}

.qr-finder.bl {
  bottom: 4px;
  left: 4px;
}

.qr-module {
  width: 6px;
  height: 6px;
}

.qr-card-large .qr-module {
  width: 11px;
  height: 11px;
}

.m01 { top: 11px; left: 33px; }
.m02 { top: 19px; left: 29px; }
.m03 { top: 27px; left: 37px; }
.m04 { top: 34px; left: 22px; }
.m05 { top: 41px; left: 34px; }
.m06 { top: 19px; left: 45px; }
.m07 { top: 44px; left: 46px; }
.m08 { top: 29px; left: 14px; }
.m09 { top: 35px; left: 41px; }
.m10 { top: 46px; left: 24px; }
.m11 { top: 12px; left: 23px; }
.m12 { top: 27px; left: 46px; }

.qr-card-large .m01 { top: 21px; left: 66px; }
.qr-card-large .m02 { top: 37px; left: 58px; }
.qr-card-large .m03 { top: 53px; left: 74px; }
.qr-card-large .m04 { top: 68px; left: 44px; }
.qr-card-large .m05 { top: 82px; left: 68px; }
.qr-card-large .m06 { top: 37px; left: 90px; }
.qr-card-large .m07 { top: 88px; left: 91px; }
.qr-card-large .m08 { top: 57px; left: 28px; }
.qr-card-large .m09 { top: 70px; left: 82px; }
.qr-card-large .m10 { top: 92px; left: 48px; }
.qr-card-large .m11 { top: 22px; left: 46px; }
.qr-card-large .m12 { top: 54px; left: 92px; }

.qr-copy {
  display: grid;
  gap: 4px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.78rem;
  line-height: 1.45;
}

.qr-copy strong {
  color: var(--white);
}

.site-footer {
  position: relative;
  background: linear-gradient(180deg, #102433 0%, #0d2230 100%);
  color: rgba(255, 255, 255, 0.72);
  padding: 40px 0 28px;
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.07;
  pointer-events: none;
}

.site-footer h3 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 0.95rem;
}

.site-footer a {
  display: block;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.76);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--white);
}

.footer-tagline {
  max-width: 20rem;
  margin: 16px 0 0;
}

.footer-legal-links,
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 0.84rem;
}

.footer-legal-links {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 8px;
}

.footer-bottom {
  color: rgba(255, 255, 255, 0.52);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 18px;
}

.consent-body {
  background:
    radial-gradient(circle at top left, rgba(243, 196, 147, 0.18), transparent 28%),
    var(--paper);
}

.consent-header {
  padding: 22px 0;
}

.consent-main {
  padding: 0 0 56px;
}

.consent-card {
  width: min(calc(100% - 32px), 860px);
  margin: 0 auto;
  padding: 28px 20px;
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(13, 34, 48, 0.52);
}

.consent-card h2 {
  font-size: 1.3rem;
  margin-top: 28px;
}

.consent-card a {
  color: var(--ink-3);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.consent-card pre {
  margin: 16px 0 0;
  padding: 16px;
  border-radius: 18px;
  background: rgba(13, 34, 48, 0.05);
  overflow-x: auto;
}

.consent-card code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.92rem;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.claridad-demo {
  width: 390px;
  max-width: 100%;
  margin-inline: auto;
}

.phone-frame {
  width: 390px;
  max-width: 100%;
}

.phone-shell {
  position: relative;
  padding: 14px;
  border-radius: 38px;
  background: linear-gradient(160deg, #24292d 0%, #111418 45%, #1c2126 100%);
  box-shadow: var(--shadow-soft);
}

.phone-shell::after {
  content: '';
  position: absolute;
  left: 14%;
  right: 14%;
  bottom: -18px;
  height: 26px;
  border-radius: 999px;
  background: rgba(13, 34, 48, 0.28);
  filter: blur(18px);
}

.phone-notch {
  position: absolute;
  top: 18px;
  left: 50%;
  width: 126px;
  height: 30px;
  margin-left: -63px;
  border-radius: 18px;
  background: #060708;
  z-index: 3;
}

.phone-screen {
  height: 728px;
  border-radius: 30px;
  overflow: hidden;
  background: #ece5dd;
}

.phone-status-spacer {
  height: 52px;
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
}

.phone-home-spacer {
  height: 28px;
  background: #f3f4f6;
}

.wa-app {
  height: calc(100% - 80px);
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.wa-header {
  background: var(--teal);
  color: var(--white);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.wa-header svg,
.wa-inputbar svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wa-header-main {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.wa-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: #c96442;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
}

.wa-contact {
  min-width: 0;
}

.wa-contact strong,
.wa-contact span {
  display: block;
}

.wa-contact strong {
  font-size: 1rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wa-contact span {
  font-size: 0.75rem;
  color: #d1fae5;
}

.wa-header-icons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.wa-chat {
  padding: 16px 16px 10px;
  overflow-y: auto;
  background-color: var(--wa-chat);
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10' cy='10' r='1' fill='%23F4F4F4'/%3E%3C/svg%3E");
  background-size: 20px auto;
}

.wa-date-pill {
  width: fit-content;
  margin: 0 auto 12px;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(225, 245, 254, 0.92);
  box-shadow: 0 1px 0.5px rgba(0, 0, 0, 0.08);
  color: var(--wa-muted);
  font-size: 0.6875rem;
}

.wa-bubble {
  position: relative;
  max-width: 252px;
  padding: 6px 9px 6px 10px;
  margin-bottom: 8px;
  border-radius: 18px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  color: #111;
}

.wa-bubble-out {
  margin-left: auto;
  border-radius: 18px 18px 4px 18px;
  background: var(--wa-out);
}

.wa-bubble-in {
  margin-right: auto;
  border-radius: 18px 18px 18px 4px;
  background: var(--white);
}

.wa-tail {
  position: absolute;
  bottom: 0;
  width: 12px;
  height: 12px;
}

.wa-tail-out {
  right: -3px;
  clip-path: polygon(0% 0%, 100% 100%, 0% 100%);
  background: var(--wa-out);
}

.wa-tail-in {
  left: -3px;
  clip-path: polygon(100% 0%, 100% 100%, 0% 100%);
  background: var(--white);
}

.wa-audio-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.wa-audio-button {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.wa-waveform {
  position: relative;
  height: 24px;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 2px;
}

.wa-bar {
  flex: 1;
  border-radius: 1px;
  background: var(--wa-unplayed);
  transition: background-color 80ms linear;
}

.wa-bar.is-played {
  background: var(--wa-played);
}

.wa-playhead {
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  border-radius: 50%;
  background: var(--wa-green);
}

.wa-meta {
  margin-top: 2px;
  display: flex;
  justify-content: flex-end;
  color: var(--wa-muted);
  font-size: 0.6875rem;
  line-height: 1;
}

.wa-meta-between {
  justify-content: space-between;
}

.wa-meta-group {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.wa-meta-group svg {
  width: 14px;
  height: 14px;
  stroke: #3b82f6;
  stroke-width: 2.5;
}

.wa-tabular {
  font-variant-numeric: tabular-nums;
}

.wa-label {
  margin-bottom: 2px;
  color: var(--wa-label);
  font-size: 0.75rem;
  font-weight: 700;
}

.wa-transcript,
.wa-bubble p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.38;
}

.wa-transcript {
  min-height: 38px;
  color: #4b5563;
  font-style: italic;
}

.wa-muted {
  color: var(--wa-muted);
}

.wa-caret {
  display: inline-block;
  width: 2px;
  height: 12px;
  margin-left: 2px;
  vertical-align: middle;
  background: var(--wa-label);
  animation: claridad-blink 900ms step-end infinite;
}

.wa-message-stack {
  display: grid;
  justify-items: stretch;
}

.wa-message-stack.is-hidden,
.wa-bubble.is-hidden {
  display: none;
}

.claridad-slide {
  animation: claridad-slide-in 350ms ease-out both;
}

.claridad-slide-delay {
  animation-delay: 350ms;
}

.wa-inputbar {
  background: var(--wa-input);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.wa-input-pill {
  flex: 1;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--white);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  color: var(--wa-muted);
}

.wa-input-pill span {
  flex: 1;
  font-size: 0.875rem;
}

.wa-send-button {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--wa-green);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 12px 18px rgba(0, 0, 0, 0.14);
  transition: transform 250ms ease;
}

.wa-send-button.is-sending {
  transform: scale(1.08);
}

.wa-send-button svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
}

.wa-send-button [style*='fill:'] {
  stroke: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 480ms ease, transform 480ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes claridad-blink {
  50% {
    opacity: 0;
  }
}

@keyframes claridad-slide-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes claridad-burst-ring {
  0% {
    opacity: 0.82;
    transform: scale(0.28);
  }

  100% {
    opacity: 0;
    transform: scale(2.15);
  }
}

@keyframes claridad-burst-particle {
  0% {
    opacity: 0;
    transform: rotate(var(--angle)) translateY(0) scale(0.2);
  }

  18% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: rotate(var(--angle)) translateY(calc(var(--distance) * -1)) scale(1);
  }
}

@media (min-width: 700px) {
  .container {
    width: min(calc(100% - 88px), var(--max));
  }

  .desktop-nav,
  .desktop-actions {
    display: flex;
    align-items: center;
  }

  .desktop-nav {
    gap: 28px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
  }

  .desktop-actions {
    gap: 14px;
  }

  .menu-toggle {
    display: none;
  }

  .hero {
    padding: 42px 0 62px;
  }

  .hero-shell {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 42px;
    min-height: 650px;
  }

  .hero-copy {
    padding: 20px 0;
  }

  .hero-copy h1 {
    max-width: 11.4ch;
  }

  .hero-actions {
    grid-template-columns: auto auto;
    align-items: center;
    justify-content: start;
    gap: 16px;
  }

  .hero-visual {
    min-height: 580px;
    padding: 22px 18px;
  }

  .hero-stage {
    width: min(100%, 560px);
    min-height: 640px;
  }

  .phone-stage-hero {
    width: 300px;
  }

  .phone-stage-hero .claridad-demo,
  .phone-stage-hero .phone-frame {
    width: 300px;
  }

  .phone-stage-hero .phone-shell {
    padding: 10px;
    border-radius: 30px;
  }

  .phone-stage-hero .phone-shell::after {
    bottom: -14px;
    height: 22px;
    filter: blur(14px);
  }

  .phone-stage-hero .phone-notch {
    top: 15px;
    width: 108px;
    height: 26px;
    margin-left: -54px;
  }

  .phone-stage-hero .phone-screen {
    height: 580px;
    border-radius: 24px;
  }

  .phone-stage-hero .phone-status-spacer {
    height: 44px;
  }

  .phone-stage-hero .phone-home-spacer {
    height: 24px;
  }

  .phone-stage-hero .wa-app {
    height: calc(100% - 68px);
  }

  .phone-stage-hero .wa-header {
    padding: 10px 12px;
    gap: 10px;
  }

  .phone-stage-hero .wa-header svg,
  .phone-stage-hero .wa-inputbar svg {
    width: 18px;
    height: 18px;
  }

  .phone-stage-hero .wa-header-main,
  .phone-stage-hero .wa-header-icons {
    gap: 10px;
  }

  .phone-stage-hero .wa-avatar {
    width: 32px;
    height: 32px;
    font-size: 0.8125rem;
  }

  .phone-stage-hero .wa-contact strong {
    font-size: 0.875rem;
  }

  .phone-stage-hero .wa-contact span {
    font-size: 0.6875rem;
  }

  .phone-stage-hero .wa-chat {
    padding: 12px 12px 8px;
  }

  .phone-stage-hero .wa-date-pill {
    margin-bottom: 10px;
    font-size: 0.625rem;
  }

  .phone-stage-hero .wa-bubble {
    max-width: 210px;
    padding: 5px 8px 5px 9px;
    margin-bottom: 6px;
  }

  .phone-stage-hero .wa-audio-row {
    gap: 7px;
  }

  .phone-stage-hero .wa-audio-button {
    width: 24px;
    height: 24px;
  }

  .phone-stage-hero .wa-waveform {
    height: 22px;
  }

  .phone-stage-hero .wa-meta {
    margin-top: 1px;
    font-size: 0.59375rem;
  }

  .phone-stage-hero .wa-label {
    font-size: 0.6875rem;
  }

  .phone-stage-hero .wa-transcript,
  .phone-stage-hero .wa-bubble p {
    font-size: 0.71875rem;
    line-height: 1.34;
  }

  .phone-stage-hero .wa-transcript {
    min-height: 0;
  }

  .phone-stage-hero .wa-inputbar {
    padding: 7px 12px;
    gap: 10px;
  }

  .phone-stage-hero .wa-input-pill {
    padding: 7px 12px;
    gap: 10px;
  }

  .phone-stage-hero .wa-input-pill span {
    font-size: 0.8125rem;
  }

  .phone-stage-hero .wa-send-button {
    width: 42px;
    height: 42px;
  }

  .invoice-card {
    width: min(100%, 408px);
    padding: 14px;
  }

  .invoice-card__header,
  .invoice-card__prepared,
  .invoice-card__item,
  .invoice-card__pricing,
  .invoice-card__payments,
  .invoice-card__footer {
    padding-left: 22px;
    padding-right: 22px;
  }

  .invoice-card__header {
    padding-top: 22px;
    padding-bottom: 18px;
  }

  .invoice-card__title-group strong,
  .invoice-card__contractor strong {
    font-size: 1.06rem;
  }

  .invoice-card__prepared strong,
  .invoice-card__item-top strong {
    font-size: 1rem;
  }

  .invoice-card__contractor span,
  .invoice-card__prepared p,
  .invoice-card__item-top p,
  .invoice-card__subitems,
  .invoice-card__pricing div {
    font-size: 0.78rem;
  }

  .invoice-card__item-top code {
    font-size: 0.64rem;
  }

  .invoice-card__total strong {
    font-size: 1.3rem;
  }

  .invoice-chip {
    min-height: 30px;
    padding: 0 11px 0 8px;
  }

  .trade-row {
    gap: 12px;
  }

  .value-section,
  .feature-section,
  .how-section {
    padding: 98px 0;
  }

  .final-cta {
    padding: 104px 0;
  }

  .section-head {
    margin-bottom: 52px;
  }

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

  .quote-showcase {
    margin-top: 34px;
    grid-template-columns: 1fr 1.08fr;
  }

  .feature-track {
    gap: 24px;
    grid-auto-columns: calc((100% - (var(--carousel-visible) - 1) * 24px) / var(--carousel-visible));
    transform: translateX(calc(var(--carousel-index) * -1 * ((100% + 24px) / var(--carousel-visible))));
  }

  .testimonial {
    padding: 104px 0;
  }

  .promise-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 240px));
  }

  .promise-card strong {
    font-size: 2.4rem;
  }

  .how-grid {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 460px);
    gap: 56px;
    align-items: center;
  }

  .step-card {
    grid-template-columns: 94px 1fr;
    gap: 22px;
    padding: 26px 0;
  }

  .step-number {
    font-size: 4.2rem;
  }

  .final-cta-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 40px;
    justify-content: space-between;
  }

  .final-cta-copy {
    text-align: left;
  }

  .final-cta-copy p {
    margin-left: 0;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 34px;
  }

  .consent-main {
    padding-bottom: 76px;
  }

  .consent-card {
    padding: 46px 52px;
  }
}

@media (min-width: 1100px) {
  .hero-shell {
    grid-template-columns: minmax(0, 1.14fr) minmax(0, 0.86fr);
  }

  .hero-copy h1 {
    max-width: 12.3ch;
  }

  .hero-subhead {
    max-width: 36rem;
  }

  .phone-stage {
    width: 356px;
  }

  .hero-stage {
    width: min(100%, 600px);
  }

  .phone-stage-hero {
    width: 300px;
  }

  .invoice-card {
    width: 422px;
  }

  .quote-lines strong {
    max-width: 60%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .hero-stage,
  .hero-stage__phone,
  .hero-stage__invoice {
    transition: none !important;
  }

  .hero-stage__invoice,
  .hero-stage__burst {
    display: none !important;
  }
}
