:root {
  --radius: 0.75rem;
  --background: #0a0a14;
  --background-rgb: 10, 10, 20;
  --foreground: #f8f8fc;
  --surface: #16161f;
  --surface-elevated: #1e1e29;
  --whatsapp: #25d366;
  --fuchsia: #d946ef;
  --cyan: #22d3ee;
  --yellow: #facc15;
  --orange: #f97316;
  --blue: #3b82f6;
  --indigo: #6366f1;
  --amber: #f59e0b;
  --slate: #64748b;
  --pink: #ec4899;
  --sky: #0ea5e9;
  --font-sans: "Inter", "Montserrat", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

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

/* Utilities */
.container {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.gradient-text {
  background: linear-gradient(to right, var(--fuchsia), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gradient-text-hero {
  background: linear-gradient(to right, var(--cyan), var(--fuchsia), var(--yellow));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gradient-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border-radius: 9999px;
  background: linear-gradient(to right, var(--fuchsia), var(--cyan));
  color: white;
  font-weight: 600;
  transition: filter 0.2s, transform 0.15s;
  box-shadow: 0 20px 50px -15px rgba(217, 70, 239, 0.55);
}

.gradient-btn:hover {
  filter: brightness(1.1);
}

.gradient-btn:active {
  transform: scale(0.98);
}

.icon {
  width: 1em;
  height: 1em;
  flex-shrink: 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(var(--background-rgb), 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-header .container {
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  font-size: 1rem;
}

.logo span {
  color: white;
}

.logo .gradient-text {
  background: linear-gradient(to right, var(--fuchsia), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.logo-tagline {
  display: none;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.4);
}

@media (min-width: 640px) {
  .logo {
    font-size: 1.125rem;
  }
  .logo-tagline {
    display: inline;
  }
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background: linear-gradient(to right, var(--fuchsia), var(--cyan));
  color: white;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  transition: filter 0.2s;
}

.header-cta:hover {
  filter: brightness(1.1);
}

@media (min-width: 640px) {
  .header-cta {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
  }
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at top, #242430 0%, #13131a 55%, #07070c 100%);
}

.hero-glow {
  position: absolute;
  border-radius: 9999px;
  filter: blur(64px);
  pointer-events: none;
}

.hero-glow.cyan {
  top: -8rem;
  left: -8rem;
  width: 24rem;
  height: 24rem;
  background: rgba(34, 211, 238, 0.2);
}

.hero-glow.fuchsia {
  top: -5rem;
  right: 0;
  width: 24rem;
  height: 24rem;
  background: rgba(217, 70, 239, 0.2);
}

.hero-glow.yellow {
  bottom: 0;
  left: 33%;
  width: 20rem;
  height: 20rem;
  background: rgba(250, 204, 21, 0.1);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  pointer-events: none;
  background-image:
    linear-gradient(to right, white 1px, transparent 1px),
    linear-gradient(to bottom, white 1px, transparent 1px);
  background-size: 64px 64px;
}

.hero-content {
  position: relative;
  max-width: 64rem;
  margin: 0 auto;
  padding: 5rem 1rem 5rem;
  text-align: center;
}

@media (min-width: 640px) {
  .hero-content {
    padding-top: 7rem;
    padding-bottom: 8rem;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.25rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.75rem;
}

.hero-badge::before {
  content: "";
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 9999px;
  background: linear-gradient(to right, var(--fuchsia), var(--cyan));
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: white;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-title br {
  display: none;
}

@media (min-width: 640px) {
  .hero-title br {
    display: block;
  }
}

.hero-desc {
  margin-top: 1.75rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.625;
}

@media (min-width: 640px) {
  .hero-desc {
    font-size: 1.125rem;
  }
}

.hero-desc strong {
  color: white;
}

.hero-actions {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .hero-actions {
    margin-top: 3rem;
  }
}

.hero-cta {
  width: 100%;
  max-width: 28rem;
  padding: 1rem 2rem;
  font-size: 1rem;
}

@media (min-width: 640px) {
  .hero-cta {
    width: auto;
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
  }
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 1.5rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
}

.hero-tags span {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.hero-tags svg {
  width: 0.875rem;
  height: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.hero-tagline {
  margin-top: 2.5rem;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
}

.hero-tagline .cyan { color: var(--cyan); }
.hero-tagline .fuchsia { color: var(--fuchsia); }
.hero-tagline .yellow { color: var(--yellow); }

/* Sections */
.section {
  padding: 6rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 640px) {
  .section {
    padding: 8rem 1.5rem;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

@media (min-width: 640px) {
  .section-header {
    margin-bottom: 5rem;
  }
}

.section-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.4);
}

.section-title {
  margin-top: 0.75rem;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: white;
}

@media (min-width: 640px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-subtitle {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.625;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .services-grid {
    gap: 1rem;
  }
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.service-card {
  position: relative;
  display: block;
  border-radius: 1rem;
  padding: 1.25rem;
  background: rgba(22, 22, 31, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
  scroll-margin-top: 6rem;
}

@media (min-width: 640px) {
  .service-card {
    padding: 1.5rem;
  }
}

.service-card:hover {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(22, 22, 31, 1);
  transform: translateY(-2px);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, var(--card-accent-from), var(--card-accent-to));
  opacity: 0.6;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  color: white;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
}

.service-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.service-title {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: white;
  line-height: 1.25;
}

@media (min-width: 640px) {
  .service-title {
    font-size: 1rem;
  }
}

.service-desc {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

.services-footnote {
  margin-top: 3rem;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.services-footnote strong {
  color: white;
}

/* Differentials */
.differentials {
  background: rgba(22, 22, 31, 0.3);
}

.differentials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .differentials-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.differential {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.differential-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  background: linear-gradient(to bottom right, rgba(217, 70, 239, 0.2), rgba(34, 211, 238, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
}

.differential-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.differential-label {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: -0.025em;
}

@media (min-width: 640px) {
  .differential-label {
    font-size: 1.125rem;
  }
}

.differentials-cta {
  margin-top: 3.5rem;
  text-align: center;
}

.differentials-cta a {
  padding: 1rem 2rem;
  font-size: 0.875rem;
}

@media (min-width: 640px) {
  .differentials-cta a {
    font-size: 1rem;
  }
}

/* Floating WhatsApp */
.whatsapp-fab {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  background: var(--whatsapp);
  color: white;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s;
  animation: pulse-ring 1.8s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@media (min-width: 640px) {
  .whatsapp-fab {
    width: 4rem;
    height: 4rem;
  }
}

.whatsapp-fab:hover {
  transform: scale(1.05);
}

.whatsapp-fab:active {
  transform: scale(0.95);
}

.whatsapp-fab svg {
  width: 1.75rem;
  height: 1.75rem;
}

@media (min-width: 640px) {
  .whatsapp-fab svg {
    width: 2rem;
    height: 2rem;
  }
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 1rem;
}

.site-footer .container {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  font-size: 0.875rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-column .logo {
  margin-bottom: 0.75rem;
  display: inline-block;
}

.footer-column .logo-tagline {
  display: block;
  margin-bottom: 0.75rem;
}

.footer-column p {
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.625;
}

.footer-heading {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.75rem;
}

.footer-address {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.625;
}

.footer-address svg {
  width: 1rem;
  height: 1rem;
  margin-top: 0.125rem;
  color: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
}

.footer-map {
  margin-top: 0.5rem;
  display: inline-block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}

.footer-map:hover {
  color: white;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  transition: color 0.2s;
}

.footer-phone:hover {
  color: white;
}

.footer-phone svg {
  width: 1rem;
  height: 1rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-whatsapp {
  margin-top: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  transition: background 0.2s, border-color 0.2s;
}

.footer-whatsapp:hover {
  background: linear-gradient(to right, var(--fuchsia), var(--cyan));
  border-color: transparent;
}

.footer-whatsapp svg {
  width: 0.875rem;
  height: 0.875rem;
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-bottom-left {
  text-align: center;
}

@media (min-width: 640px) {
  .footer-bottom-left {
    text-align: left;
  }
}

.footer-bottom-left p + p {
  margin-top: 0.25rem;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links button,
.footer-links a {
  transition: color 0.2s;
}

.footer-links button:hover,
.footer-links a:hover {
  color: white;
}

.footer-links span {
  opacity: 0.3;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0.75rem;
  left: 0.75rem;
  right: 0.75rem;
  z-index: 40;
}

@media (min-width: 640px) {
  .cookie-banner {
    right: auto;
    left: 1rem;
    bottom: 1rem;
    max-width: 28rem;
  }
}

.cookie-banner-inner {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(22, 22, 31, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  padding: 0.75rem;
  padding-right: 5rem;
}

@media (min-width: 640px) {
  .cookie-banner-inner {
    align-items: center;
    padding-right: 1rem;
  }
}

.cookie-banner svg {
  width: 1.25rem;
  height: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

@media (min-width: 640px) {
  .cookie-banner svg {
    margin-top: 0;
  }
}

.cookie-banner p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
  flex: 1;
}

@media (min-width: 640px) {
  .cookie-banner p {
    font-size: 0.875rem;
  }
}

.cookie-banner a {
  color: white;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner button {
  position: absolute;
  right: 0.75rem;
  top: 0.75rem;
  border-radius: 9999px;
  background: linear-gradient(to right, var(--fuchsia), var(--cyan));
  color: white;
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  transition: filter 0.2s;
}

@media (min-width: 640px) {
  .cookie-banner button {
    position: static;
    font-size: 0.875rem;
  }
}

.cookie-banner button:hover {
  filter: brightness(1.1);
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: fade-in 0.2s ease-out;
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal {
  position: relative;
  width: 100%;
  max-width: 42rem;
  max-height: 85vh;
  overflow-y: auto;
  border-radius: 1rem;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  animation: modal-in 0.25s ease-out;
}

@media (min-width: 640px) {
  .modal {
    padding: 2rem;
  }
}

@keyframes modal-in {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.05);
  transition: background 0.2s;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.modal-close svg {
  width: 1rem;
  height: 1rem;
}

.modal h3 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: white;
  margin-bottom: 1rem;
  padding-right: 2.5rem;
}

.modal-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.625;
}

.modal-content strong {
  color: white;
}

.hidden {
  display: none !important;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Privacy page */
.page-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(var(--background-rgb), 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-header .container {
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page-header .back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

.page-header .back-link:hover {
  color: white;
}

.page-header .back-link svg {
  width: 1rem;
  height: 1rem;
}

.page-content {
  max-width: 48rem;
  margin: 0 auto;
  padding: 3rem 1rem 4rem;
}

@media (min-width: 640px) {
  .page-content {
    padding: 4rem 1.5rem 5rem;
  }
}

.page-content h1 {
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: white;
  margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
  .page-content h1 {
    font-size: 3rem;
  }
}

.page-content .updated {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2rem;
}

.page-content article {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.625;
}

.page-content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.page-content strong {
  color: white;
}

.page-content .back-btn {
  margin-top: 3rem;
}

/* 404 */
.not-found {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  text-align: center;
}

.not-found h1 {
  font-size: 4.5rem;
  font-weight: 700;
  color: white;
}

.not-found h2 {
  margin-top: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
}

.not-found p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.not-found a {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.2s;
}

.not-found a:hover {
  background: rgba(255, 255, 255, 0.15);
}
