/* The page mojabizuteria.com shows on its way to karatvue.com: the landing's glass and gold. */
@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("/fonts/fraunces-normal-latin-ext.woff2") format("woff2");
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329,
    U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F,
    U+A720-A7FF;
}
@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("/fonts/fraunces-normal-latin.woff2") format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329,
    U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/fonts/manrope-normal-latin-ext.woff2") format("woff2");
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329,
    U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F,
    U+A720-A7FF;
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/fonts/manrope-normal-latin.woff2") format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329,
    U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --bg: #0d0c0b;
  --ink: #f3ecdf;
  --ink-soft: rgba(243, 236, 223, 0.72);
  --ink-faint: rgba(243, 236, 223, 0.46);
  --gold-1: #f7df9e;
  --gold-2: #dcb867;
  --gold-3: #b8914d;
  --gold-text: linear-gradient(110deg, #fff1c4 0%, #f0cf7b 35%, #c9a04e 65%, #f7df9e 100%);
  --glass: rgba(255, 255, 255, 0.045);
  --glass-edge: rgba(255, 255, 255, 0.12);
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-ui: "Manrope", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

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

html,
body {
  height: 100%;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding-inline: 16px;
  overflow: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.bg {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.bg::before {
  content: "";
  position: absolute;
  inset: -2px;
  background-image:
    linear-gradient(rgba(220, 184, 103, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(220, 184, 103, 0.07) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 85%);
  animation: drift 22s ease-in-out infinite;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  will-change: transform;
}

.glow-a {
  width: 560px;
  height: 560px;
  top: -180px;
  right: -120px;
  background: radial-gradient(circle, var(--gold-3) 0%, transparent 65%);
  opacity: 0.5;
  animation: float-a 14s ease-in-out infinite;
}

.glow-b {
  width: 480px;
  height: 480px;
  bottom: -160px;
  left: -140px;
  background: radial-gradient(circle, #7a4a2a 0%, transparent 65%);
  opacity: 0.45;
  animation: float-b 18s ease-in-out infinite;
}

.card {
  position: relative;
  width: 100%;
  max-width: 520px;
  padding: 44px 32px 36px;
  text-align: center;
  background: var(--glass);
  border: 1px solid var(--glass-edge);
  border-radius: 28px;
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 30px 80px -30px rgba(0, 0, 0, 0.7);
  animation: card-in 0.9s var(--ease) both;
}

.logo {
  display: inline-flex;
  margin-bottom: 18px;
  filter: drop-shadow(0 8px 30px rgba(220, 184, 103, 0.3));
  animation: pulse 4.5s ease-in-out infinite;
}

.logo svg {
  border-radius: 20px;
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 9vw, 60px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 10px;
}

.gold {
  background: var(--gold-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tagline {
  color: var(--ink-soft);
  font-size: 15px;
  margin-bottom: 26px;
}

.moved {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
  padding: 10px 18px;
  border: 1px solid var(--glass-edge);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.25);
  font-size: 14px;
  letter-spacing: 0.02em;
}

.old {
  color: var(--ink-faint);
  text-decoration: line-through;
  text-decoration-color: rgba(243, 236, 223, 0.35);
}

.arrow {
  color: var(--gold-2);
}

.new {
  color: var(--gold-1);
  font-weight: 700;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2) 55%, var(--gold-3));
  color: #1a140a;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 10px 34px rgba(220, 184, 103, 0.28);
  transition:
    transform 0.15s var(--ease),
    box-shadow 0.2s var(--ease);
}

.cta:hover,
.cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 42px rgba(220, 184, 103, 0.4);
}

.cta:focus-visible {
  outline: 2px solid var(--gold-1);
  outline-offset: 3px;
}

.cta svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s var(--ease);
}

.cta:hover svg {
  transform: translateX(4px);
}

.progress {
  height: 3px;
  margin: 26px auto 0;
  max-width: 220px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.progress span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--gold-3), var(--gold-1));
  transform-origin: left;
  animation: fill 5s linear both;
}

.meta {
  margin-top: 12px;
  color: var(--ink-faint);
  font-size: 12.5px;
  letter-spacing: 0.04em;
}

.count {
  color: var(--gold-2);
  font-variant-numeric: tabular-nums;
}

@keyframes card-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(3px, 2px);
  }
}

@keyframes float-a {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-20px, 30px) scale(1.08);
  }
}

@keyframes float-b {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(24px, -18px) scale(1.1);
  }
}

@keyframes fill {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@media (max-width: 480px) {
  .card {
    padding: 36px 20px 30px;
    border-radius: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition: none !important;
  }
  .progress span {
    animation: none;
    transform: scaleX(1);
  }
}
