:root {
    --bg: #000;
    --glass-1: rgba(255, 255, 255, 0.10);
    --glass-2: rgba(255, 255, 255, 0.06);
    --accent-1: rgba(255, 125, 210, 0.18);
    --accent-2: rgba(125, 200, 255, 0.16);
    --text: #f6f7fb;
    --muted: rgba(246, 247, 251, 0.65);
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%
}

body {
    margin: 0;
    background: var(--bg);
    font-family: 'Inter', 'Manrope', ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: grid;
    place-items: center;
    padding: 3rem;
    overflow: hidden;
}

.scene {
    position: relative;
    width: min(1100px, 100%);
    max-width: 1100px;
    height: min(640px, 80vh);
    display: grid;
    place-items: center;
    isolation: isolate;
}

.scene::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(1200px 500px at 10% 20%, rgba(255, 20, 147, 0.09), transparent 6%),
        radial-gradient(1000px 400px at 90% 80%, rgba(0, 180, 255, 0.06), transparent 6%);
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: screen;
}

.scene::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.35) 100%);
    pointer-events: none;
    z-index: 3;
}

.card {
    position: relative;
    width: min(900px, 95%);
    padding: 2.6rem;
    border-radius: 32px;
    background: linear-gradient(120deg, var(--glass-1) 0%, var(--glass-2) 100%);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.85), 0 1.5px 8px rgba(125, 200, 255, 0.10) inset;
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    border: 1.5px solid rgba(255, 255, 255, 0.10);
    z-index: 2;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2rem;
    align-items: center;
}

.card .liquid {
    position: absolute;
    inset: auto;
    z-index: 1;
    pointer-events: none
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(52px) saturate(180%);
    transform: translate3d(0, 0, 0);
    mix-blend-mode: screen;
    opacity: 0.9;
    animation: float 9s ease-in-out infinite;
}

.blob.a {
    width: 360px;
    height: 360px;
    left: -8%;
    top: -14%;
    background: radial-gradient(circle at 30% 30%, var(--accent-1), transparent 40%)
}

.blob.b {
    width: 420px;
    height: 420px;
    right: -12%;
    bottom: -18%;
    background: radial-gradient(circle at 70% 70%, var(--accent-2), transparent 35%);
    animation-duration: 12s
}

.blob.c {
    width: 180px;
    height: 180px;
    left: 52%;
    top: -6%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.09), transparent 45%);
    filter: blur(32px);
    animation-duration: 7s
}

@keyframes float {
    0% {
        transform: translateY(0) scale(1)
    }

    50% {
        transform: translateY(-16px) scale(1.03)
    }

    100% {
        transform: translateY(0) scale(1)
    }
}

.left {
    padding: 1.8rem 1.4rem;
    position: relative;
    z-index: 4;
}

.brand {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    margin-bottom: 18px;
}

.logo {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.04));
    border: 1.5px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(8px);
    overflow: hidden;
}

.logo img {
    width: 40px;
    height: 40px;
    display: block
}

h1 {
    font-size: 32px;
    margin: 0;
    letter-spacing: -0.02em;
    font-family: 'Manrope', 'Inter', sans-serif;
    font-weight: 800;
}

p.lead {
    margin: .7rem 0 1.3rem;
    color: var(--muted);
    max-width: 560px;
    font-family: 'Inter', sans-serif;
    font-size: 1.18rem;
    font-weight: 500;
}

.status {
    display: inline-grid;
    grid-auto-flow: column;
    gap: .7rem;
    align-items: center;
    background: rgba(0, 0, 0, 0.28);
    padding: .55rem .85rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    font-weight: 700;
    color: var(--text);
    font-size: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45) inset;
    font-family: 'Manrope', 'Inter', sans-serif;
}

.right {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.2rem;
    padding: 1.6rem;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.7);
    z-index: 4;
    font-family: 'Inter', sans-serif;
}

.right h3 {
    margin: 0;
    font-size: 18px;
    font-family: 'Manrope', sans-serif;
}

.right p {
    margin: 0;
    color: var(--muted);
    font-size: 15px
}

.progress {
    --p: 62%;
    height: 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    overflow: hidden;
    margin-top: .7rem;
    position: relative
}

.progress>i {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: var(--p);
    background: linear-gradient(90deg, rgba(255, 125, 210, 0.7), rgba(125, 200, 255, 0.65));
    box-shadow: 0 8px 24px rgba(125, 200, 255, 0.09);
}

.meta {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    margin-top: 1.2rem
}

.chip {
    background: rgba(255, 255, 255, 0.04);
    padding: .55rem .9rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
    color: var(--muted);
    font-family: 'Manrope', sans-serif;
}

.sheen {
    position: absolute;
    left: -30%;
    top: -30%;
    width: 160%;
    height: 60%;
    transform: rotate(-18deg);
    pointer-events: none;
    z-index: 3;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.09) 48%, rgba(255, 255, 255, 0.03) 52%, transparent 100%);
    filter: blur(12px);
    animation: slide 6s linear infinite;
}

@keyframes slide {
    0% {
        transform: translateX(-120%) rotate(-18deg)
    }

    100% {
        transform: translateX(120%) rotate(-18deg)
    }
}

.glow {
    position: absolute;
    inset: -1px;
    border-radius: 32px;
    pointer-events: none;
    z-index: 0;
    box-shadow: 0 0 80px rgba(255, 125, 210, 0.09), inset 0 0 60px rgba(125, 200, 255, 0.05);
    mix-blend-mode: screen;
}

@media (max-width:880px) {
    .card {
        grid-template-columns: 1fr;
    }

    .right {
        order: 3
    }

    .left {
        order: 1
    }
}

.foot {
    margin-top: 1.3rem;
    font-size: 14px;
    color: var(--muted);
    font-family: 'Inter', sans-serif;
}

.status:focus {
    outline: 3px solid rgba(255, 125, 210, 0.14);
    outline-offset: 3px
}

@keyframes bounce {

    0%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-12px);
    }
}

.site-footer {
  text-align: center;
  margin-top: 3.5rem;
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 1.08rem;
  letter-spacing: 0.02em;
  color: rgba(246,247,251,0.72);
  font-weight: 700;
  text-shadow: 0 2px 16px rgba(127,90,240,0.13), 0 1px 0 rgba(255,255,255,0.08);
  padding-bottom: 2.2rem;
  opacity: 0.96;
  user-select: none;
}

.footer-main {
  background: linear-gradient(90deg,#ff7dd2,#7dc8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.footer-design {
  margin-left: 12px;
}

.footer-agency {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
}

/* Make the card and scene responsive for mobile */
@media (max-width: 600px) {
  body {
    padding: 0;
    overflow: auto;
    min-height: 100vh;
    display: block;
  }
  .scene {
    width: 100vw;
    max-width: 100vw;
    min-height: 100vh;
    height: auto;
    padding: 0;
    display: block;
  }
  .card {
    width: 100vw;
    max-width: 100vw;
    min-height: unset;
    height: auto;
    border-radius: 0;
    padding: 1.2rem 0.5rem 2.5rem 0.5rem;
    box-shadow: none;
    grid-template-columns: 1fr;
    gap: 0;
    display: block;
    overflow: visible;
  }
  .left, .right {
    padding: 0;
    margin: 0 auto 1.5rem auto;
    width: 100%;
    max-width: 420px;
  }
  .brand {
    flex-direction: row;
    justify-content: center;
    margin-bottom: 14px;
  }
  .logo {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }
  h1 {
    font-size: 1.5rem;
    text-align: center;
    margin-top: 0.5rem;
  }
  p.lead {
    font-size: 1rem;
    text-align: center;
    margin: 0.5rem auto 1rem auto;
    max-width: 95vw;
  }
  .status {
    font-size: 13px;
    margin: 0.7rem auto 0.7rem auto;
    display: block;
    text-align: center;
    width: fit-content;
  }
  .foot {
    font-size: 13px;
    text-align: center;
    margin: 1rem auto 0.5rem auto;
    max-width: 95vw;
  }
  .right {
    border-radius: 12px;
    box-shadow: none;
    padding: 1rem 0.5rem;
    margin-bottom: 1.5rem;
    max-width: 420px;
  }
  .right h3 {
    font-size: 1.1rem;
    text-align: center;
  }
  .right p {
    font-size: 0.98rem;
    text-align: center;
  }
  .card-footer {
    margin-top: 1.2rem;
    font-size: 0.98rem;
    padding-bottom: 1.2rem;
    text-align: center;
    max-width: 95vw;
    word-break: break-word;
  }
  .footer-main, .footer-design, .footer-agency {
    font-size: inherit;
    display: inline;
  }
  .liquid, .sheen, .glow, .blob {
    display: none !important;
  }
}

/* Make sure card-footer is inside the card and styled */
.card-footer {
  text-align: center;
  margin-top: 2.2rem;
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 1.08rem;
  letter-spacing: 0.02em;
  color: rgba(246,247,251,0.72);
  font-weight: 700;
  text-shadow: 0 2px 16px rgba(127,90,240,0.13), 0 1px 0 rgba(255,255,255,0.08);
  opacity: 0.96;
  user-select: none;
  word-break: break-word;
}

.footer-main {
  background: linear-gradient(90deg,#ff7dd2,#7dc8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.footer-design {
  margin-left: 12px;
}

.footer-agency {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  background: linear-gradient(90deg,#7dc8ff,#ff7dd2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: opacity 0.2s;
  opacity: 0.85;
}
.footer-agency:hover {
  opacity: 1;
}

.footer-agency a {
    text-decoration: none;
}

