:root {
  --brand-cyan: #23b7df;
  --brand-indigo: #312271;
  --background: #fbfcfe;
  --foreground: #33334d;
  --muted-foreground: #71717f;
  --primary: var(--brand-indigo);
  --primary-foreground: #ffffff;
  --secondary: #f3f4f6;
  --border: #e3e6eb;
  --accent: var(--brand-cyan);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--background);
  color: var(--foreground);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; }
.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 24px 28px;
}
.hero {
  width: 100%;
  max-width: 576px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.brand-logo {
  display: block;
  width: 320px !important;
  max-width: 320px !important;
  height: auto !important;
}
.status-pill {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border: 1px solid var(--border);
  background: var(--secondary);
  border-radius: 999px;
  color: var(--muted-foreground);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .16em;
}
.status-dot { position: relative; display: inline-flex; width: 6px; height: 6px; }
.status-dot::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: var(--accent);
  opacity: .55;
  animation: ping 1.5s cubic-bezier(0,0,.2,1) infinite;
}
.status-dot span { position: relative; width: 6px; height: 6px; border-radius: 999px; background: var(--accent); }
@keyframes ping { 75%,100% { transform: scale(2); opacity: 0; } }
h1 {
  margin: 24px 0 0;
  max-width: 560px;
  font-size: clamp(30px, 5vw, 38px);
  line-height: 1.13;
  letter-spacing: -.025em;
  font-weight: 650;
}
.lead {
  margin: 16px 0 0;
  max-width: 440px;
  color: var(--muted-foreground);
  font-size: 16px;
  line-height: 1.7;
}
.actions {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .18s ease, opacity .18s ease, background-color .18s ease;
}
.button:hover { transform: translateY(-1px); }
.button:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.button svg { width: 16px; height: 16px; }
.button-primary { background: var(--primary); color: var(--primary-foreground); }
.button-primary:hover { opacity: .92; }
.button-secondary { background: var(--secondary); border: 1px solid var(--border); color: var(--foreground); }
.button-secondary:hover { background: #eceef2; }
.whatsapp-icon { color: #25d366; }
.contact-details {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--muted-foreground);
  font-size: 14px;
}
.contact-details a { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; transition: color .18s ease; }
.contact-details a:hover { color: var(--foreground); }
.contact-details svg { width: 16px; height: 16px; }
footer {
  margin-top: 64px;
  color: rgba(113,113,127,.85);
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
}
footer p { margin: 2px 0; }
footer a { color: var(--muted-foreground); font-weight: 600; text-decoration: none; }
footer a:hover { color: var(--foreground); }
@media (max-width: 560px) {
  .page-shell { padding: 48px 20px 24px; }
  .brand-logo {width: 135px !important; max-width: 135px !important;
  h1 { font-size: 30px; }
  .lead { font-size: 15px; }
  .actions { width: 100%; flex-direction: column; }
  .button { width: min(100%, 320px); }
  .contact-details { flex-direction: column; gap: 10px; }
  footer { margin-top: 48px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
