:root {
  --qz-primary: #fb8b12;
  --qz-secondary: #f3567c;
  --qz-dark: #070302;
  --qz-light: #f7f5f5;
  --qz-text: #1f2937;
  --qz-muted: #6b7280;
  --qz-gradient: linear-gradient(100deg, #fb8b12 0%, #f3567c 100%);
  --radius: 18px;
  --container: 1120px;
  --shadow: 0 10px 30px rgba(7, 3, 2, 0.09);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    "Outfit",
    system-ui,
    -apple-system,
    sans-serif;
  color: var(--qz-text);
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #ececec;
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 8px 24px rgba(10, 10, 10, 0.08);
  background: rgba(255, 255, 255, 0.92);
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand img {
  width: 5rem;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  font-weight: 500;
}

.site-nav a:not(.btn):hover {
  color: var(--qz-secondary);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background: #fff;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--qz-dark);
}

.menu-toggle span + span {
  margin-top: 5px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.2rem;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 600;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(7, 3, 2, 0.14);
}

.btn-primary {
  background: var(--qz-gradient);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn-outline {
  border-color: var(--qz-primary);
  color: var(--qz-primary);
  background: #fff;
}

.btn-light {
  background: #fff;
  color: var(--qz-dark);
}

.btn-light-outline {
  border-color: #fff;
  color: #fff;
}

.hero {
  background:
    radial-gradient(circle at 10% 10%, rgba(251, 139, 18, 0.18), transparent 45%),
    radial-gradient(circle at 90% 30%, rgba(243, 86, 124, 0.2), transparent 42%),
    linear-gradient(180deg, #fff7ee 0%, #fff 70%);
  padding: 3.5rem 0 2.5rem;
  position: relative;
  isolation: isolate;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  z-index: -1;
  animation: floatOrb 8s ease-in-out infinite;
}

.hero-orb-1 {
  width: 220px;
  height: 220px;
  left: -70px;
  top: 80px;
  background: rgba(251, 139, 18, 0.2);
}

.hero-orb-2 {
  width: 280px;
  height: 280px;
  right: -120px;
  top: 10px;
  background: rgba(243, 86, 124, 0.17);
  animation-delay: 1.2s;
}

.hero-grid {
  display: grid;
  gap: 2rem;
}

.eyebrow {
  margin: 0 0 0.5rem;
  color: var(--qz-secondary);
  font-weight: 600;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.75rem;
  color: var(--qz-dark);
  line-height: 1.2;
}

h1 {
  font-size: clamp(1.9rem, 4vw, 3rem);
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
}

.hero-sub,
.section-head p,
.card p,
.step p,
.about-grid p {
  color: var(--qz-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.text-link {
  display: inline-block;
  margin-top: 0.9rem;
  color: var(--qz-secondary);
  font-weight: 600;
  position: relative;
}

.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--qz-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.text-link:hover::after {
  transform: scaleX(1);
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.metric-chip {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.08);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
}

.metric-chip strong {
  font-size: 0.95rem;
  color: var(--qz-dark);
}

.metric-chip span {
  font-size: 0.78rem;
  color: var(--qz-muted);
}

.phone-stack {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
}

.phone-card {
  background: #fff;
  padding: 1rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.phone-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 32px rgba(13, 9, 8, 0.16);
}

.phone-card img {
  border-radius: 12px;
  border: 1px solid #f0f0f0;
  aspect-ratio: 9 / 19;
  object-fit: cover;
}

.phone-card h3 {
  margin: 0.8rem 0 0;
  font-size: 1rem;
}

.section {
  padding: 4rem 0;
  position: relative;
}

.section-muted {
  background: var(--qz-light);
}

.section-head {
  max-width: 640px;
  margin-bottom: 1.5rem;
}

.benefits-grid,
.steps-grid,
.showcase-grid,
.footer-grid {
  display: grid;
  gap: 1rem;
}

.card,
.step,
.showcase-item,
.about-panel {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.2rem;
  border: 1px solid rgba(251, 139, 18, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card:hover,
.step:hover,
.showcase-item:hover,
.about-panel:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 36px rgba(7, 3, 2, 0.14);
  border-color: rgba(243, 86, 124, 0.3);
}

.card-icon {
  width: 2.2rem;
  height: 2.2rem;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(251, 139, 18, 0.14), rgba(243, 86, 124, 0.18));
  margin-bottom: 0.45rem;
  font-size: 1.05rem;
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: var(--qz-gradient);
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.showcase-item {
  text-align: center;
}

.showcase-item img {
  border-radius: 12px;
  border: 1px solid #ededed;
  aspect-ratio: 9 / 19;
  object-fit: cover;
  margin-inline: auto;
  width: min(220px, 100%);
  transition: transform 0.32s ease;
}

.showcase-item:hover img {
  transform: scale(1.03);
}

.showcase-item figcaption {
  margin-top: 0.7rem;
  color: var(--qz-muted);
}

.about-grid {
  display: grid;
  gap: 1.2rem;
}

.download-band {
  padding: 4rem 0;
  background: linear-gradient(120deg, #fb8b12, #f3567c, #fb8b12);
  background-size: 200% 200%;
  color: #fff;
  animation: shiftGradient 7s ease infinite;
}

.download-grid {
  display: grid;
  gap: 1rem;
  align-items: center;
}

.download-band h2 {
  color: #fff;
}

.qr-placeholder {
  border: 2px dashed rgba(255, 255, 255, 0.85);
  border-radius: var(--radius);
  min-height: 180px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.08);
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.qr-placeholder:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.14);
}

.qr-placeholder span {
  opacity: 0.9;
}

.site-footer {
  background: #130a09;
  color: #dfdfdf;
  padding: 2.2rem 0 0;
}

.footer-logo {
  width: 145px;
  margin-bottom: 0.7rem;
}

.site-footer h4 {
  color: #fff;
  margin-bottom: 0.7rem;
}

.site-footer a {
  display: block;
  color: #c9c9c9;
  margin: 0.3rem 0;
}

.site-footer a:hover {
  color: #fff;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 1.5rem;
  padding: 1rem;
  text-align: center;
  color: #b7b7b7;
}

.reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.985);
  transition:
    opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.floating-badge {
  position: absolute;
  background: #fff;
  color: var(--qz-text);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  font-size: 0.78rem;
  font-weight: 600;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.12);
  border: 1px solid #f2f2f2;
  z-index: 2;
  animation: floatBadge 4.5s ease-in-out infinite;
}

.hero-visual {
  position: relative;
}

.badge-top {
  top: -10px;
  left: -18px;
}

.badge-bottom {
  right: -18px;
  bottom: 16px;
  animation-delay: 0.8s;
}

.qr-placeholder img {
  width: 20vw;
}

@media (max-width: 640px) {
  .site-nav {
    position: absolute;
    inset: 74px 0 auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    background: #fff;
    border-bottom: 1px solid #ececec;
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
    pointer-events: none;
    transition:
      transform 0.25s ease,
      opacity 0.25s ease;
  }

  .site-nav.is-open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .menu-toggle {
    display: block;
  }

  .floating-badge {
    display: none;
  }
}

@media (min-width: 641px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }

  .benefits-grid,
  .showcase-grid,
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-grid,
  .download-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .footer-grid {
    grid-template-columns: 1.2fr repeat(3, 1fr);
  }
}

@media (min-width: 1025px) {
  .benefits-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .steps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .showcase-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

.legal-main {
  padding: 2.5rem 0 4rem;
}

.legal-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.4rem;
}

.legal-card + .legal-card {
  margin-top: 1rem;
}

.legal-card h2 {
  margin-bottom: 0.5rem;
}

.legal-card p,
.legal-card li {
  color: var(--qz-muted);
}

.legal-card ul {
  margin: 0.5rem 0 0;
  padding-left: 1.2rem;
}

.policy-meta {
  font-weight: 500;
  color: var(--qz-text);
}

.deletion-steps {
  display: grid;
  gap: 1rem;
}

.deletion-step img {
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  width: min(280px, 100%);
}

.download-page {
  min-height: calc(100vh - 74px);
}

.download-hero {
  padding: 4.5rem 0;
  background:
    radial-gradient(circle at 15% 10%, rgba(251, 139, 18, 0.18), transparent 42%),
    radial-gradient(circle at 88% 24%, rgba(243, 86, 124, 0.2), transparent 40%),
    linear-gradient(180deg, #fff7ee 0%, #fff 70%);
}

.download-card {
  max-width: 700px;
  margin-inline: auto;
  background: #fff;
  border: 1px solid rgba(251, 139, 18, 0.15);
  border-radius: var(--radius);
  box-shadow: 0 18px 38px rgba(7, 3, 2, 0.12);
  padding: 1.6rem;
  text-align: center;
}

.download-message {
  margin: 0.45rem 0;
  color: var(--qz-muted);
}

.download-note {
  margin-top: 0.85rem;
  color: var(--qz-muted);
  font-size: 0.94rem;
}

@media (min-width: 641px) {
  .deletion-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@keyframes shiftGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes floatOrb {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@keyframes floatBadge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
