:root {
  color-scheme: light;
  --background: #f7fafd;
  --surface: #ffffff;
  --surface-soft: #f4f9ff;
  --surface-accent: #eef6ff;
  --line: #d9e5f3;
  --ink: #14253f;
  --muted: #6c757d;
  --primary: #007bff;
  --secondary: #18a2b7;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(0, 123, 255, 0.12), transparent 28%),
    radial-gradient(circle at bottom right, rgba(24, 162, 183, 0.11), transparent 24%),
    var(--background);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
}

body.site-loading-active {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "DM Serif Display", serif;
}

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

code,
pre {
  font-family: "Cascadia Code", Consolas, monospace;
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
  display: inline-block;
  vertical-align: middle;
}

.hero-glow {
  position: absolute;
  border-radius: 9999px;
  filter: blur(120px);
  opacity: 0.28;
}

.hero-glow-one {
  top: -10rem;
  left: -10rem;
  width: 30rem;
  height: 30rem;
  background: rgba(0, 123, 255, 0.18);
}

.hero-glow-two {
  right: -12rem;
  bottom: -10rem;
  width: 32rem;
  height: 32rem;
  background: rgba(24, 162, 183, 0.16);
}

.mesh-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 2px 2px, rgba(0, 123, 255, 0.06) 1px, transparent 0);
  background-size: 34px 34px;
}

.marketing-shell,
.app-shell,
.auth-shell {
  position: relative;
}

.glass-panel {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 24px 60px rgba(20, 37, 63, 0.08);
}

.panel-outline {
  border: 1px solid rgba(217, 229, 243, 0.92);
}

.section-card {
  border: 1px solid rgba(217, 229, 243, 0.92);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 40px rgba(20, 37, 63, 0.05);
}

.gradient-text {
  background: linear-gradient(135deg, #007bff 0%, #18a2b7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-home-link,
.brand-name-link {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-mark {
  width: 2.9rem;
  height: 2.9rem;
  object-fit: cover;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
}

.brand-name {
  font-family: "DM Serif Display", serif;
  font-size: 1.35rem;
  line-height: 1;
  color: var(--ink);
}

.brand-powered {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
}

.qrplus-wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 0.05rem;
}

.font-fredoka {
  font-family: "Fredoka", sans-serif;
}

.font-dm-serif {
  font-family: "DM Serif Display", serif;
}

.field-shell {
  border: 1px solid rgba(217, 229, 243, 0.96);
  background: #ffffff;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.field-shell:focus-within {
  border-color: rgba(0, 123, 255, 0.4);
  box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.08);
  transform: translateY(-1px);
}

.app-nav-link {
  color: var(--muted);
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.app-nav-link:hover {
  color: var(--ink);
  background: rgba(0, 123, 255, 0.06);
}

.app-nav-link-active {
  color: var(--primary);
  background: rgba(0, 123, 255, 0.08);
  border-color: rgba(0, 123, 255, 0.14);
}

.token-field {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  min-height: 3rem;
}

.token-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.token-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: 9999px;
  background: rgba(0, 123, 255, 0.08);
  color: var(--primary);
  padding: 0.45rem 0.8rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.token-pill button {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.token-input {
  border: 0;
  background: transparent;
  color: var(--ink);
  flex: 1 1 12rem;
  min-width: 10rem;
  outline: none;
  padding: 0;
}

.report-color-input {
  appearance: none;
  -webkit-appearance: none;
  border-radius: 1rem;
  overflow: hidden;
}

.report-color-input::-webkit-color-swatch-wrapper {
  padding: 0;
}

.report-color-input::-webkit-color-swatch {
  border: 1px solid rgba(217, 229, 243, 0.96);
  border-radius: 1rem;
}

.report-color-input::-moz-color-swatch {
  border: 1px solid rgba(217, 229, 243, 0.96);
  border-radius: 1rem;
}

.report-contact-line {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.report-contact-icon {
  border-radius: 9999px;
  background: rgba(0, 123, 255, 0.08);
  color: var(--primary);
  padding: 0.55rem;
}

.report-tag-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  background: rgba(24, 162, 183, 0.12);
  color: #0c7283;
  padding: 0.35rem 0.7rem;
  font-size: 0.82rem;
  font-weight: 700;
}

.report-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.contact-highlight {
  border: 1px solid rgba(217, 229, 243, 0.92);
  background:
    linear-gradient(180deg, rgba(238, 246, 255, 0.95), rgba(255, 255, 255, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.contact-highlight-link {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.contact-highlight-link:hover {
  transform: translateY(-2px);
  border-color: rgba(31, 168, 85, 0.28);
  box-shadow: 0 18px 30px rgba(20, 37, 63, 0.08);
}

.hero-bullet {
  border: 1px solid rgba(217, 229, 243, 0.92);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 28px rgba(20, 37, 63, 0.04);
}

.product-mockup {
  border: 1px solid rgba(217, 229, 243, 0.92);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 255, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.product-mockup-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.mock-stat-card,
.mock-panel {
  border: 1px solid rgba(217, 229, 243, 0.96);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 24px rgba(20, 37, 63, 0.04);
}

.mock-stat-card {
  border-radius: 1.25rem;
  padding: 1rem;
}

.mock-panel {
  min-height: 100%;
}

.mock-timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.mock-timeline-dot {
  display: inline-flex;
  width: 0.75rem;
  height: 0.75rem;
  margin-top: 0.25rem;
  border-radius: 9999px;
  box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.08);
}

.process-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.14), rgba(24, 162, 183, 0.18));
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 700;
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 9999px;
  padding: 0.9rem 1.2rem;
  background: #1fa855;
  color: #fff;
  box-shadow: 0 18px 35px rgba(31, 168, 85, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(31, 168, 85, 0.4);
}

.site-loading-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(247, 250, 253, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 9999;
}

.site-loading-overlay.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.site-loading-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  min-width: min(22rem, 100%);
  padding: 2rem 2.5rem;
  border: 1px solid rgba(217, 229, 243, 0.96);
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 60px rgba(20, 37, 63, 0.12);
}

.site-loading-logo {
  width: min(5.75rem, 24vw);
  height: min(5.75rem, 24vw);
  object-fit: cover;
  border-radius: 1.5rem;
  animation: site-loading-pulse 1.15s ease-in-out infinite;
}

.site-loading-text {
  margin: 0;
  font-family: "DM Serif Display", serif;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  color: var(--ink);
}

@keyframes site-loading-pulse {
  0%,
  100% {
    transform: scale(0.96);
  }

  50% {
    transform: scale(1.02);
  }
}

.leading-7 {
    line-height: 1.25rem !important;
}

.leading-8 {
    line-height: 1.75rem !important;
}

.grecaptcha-badge {
    display: none !important;
}

@media (max-width: 640px) {
  .floating-whatsapp {
    right: 0.75rem;
    left: 0.75rem;
    bottom: 0.75rem;
    justify-content: center;
  }

  .product-mockup-top {
    flex-direction: column;
  }
}
