:root {
  color-scheme: dark;
  --ink: #f5f5f7;
  --paper: #0b0d10;
  --accent: rgb(255, 85, 29);
  --accent-2: #ffb347;
  --muted: #9aa0a6;
  --card: rgba(255, 255, 255, 0.05);
  --stroke: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  --glow: 0 0 50px rgba(255, 85, 29, 0.35);
  --vibe-pink: rgb(255, 85, 29);
  --vibe-violet: #ffb347;
  --vibe-cyan: #9ca3af;
  --vibe-lime: #22c55e;
  --glow-pink: rgba(255, 85, 29, 0.35);
  --glow-violet: rgba(255, 179, 71, 0.25);
  --glow-cyan: rgba(255, 255, 255, 0.12);
}

body[data-theme="light"] {
  color-scheme: light;
  --ink: #1c1b1f;
  --paper: #f9f6fb;
  --accent: #ff8fb2;
  --accent-2: #ffd4e1;
  --muted: #7a7682;
  --card: rgba(255, 255, 255, 0.85);
  --stroke: rgba(190, 180, 200, 0.4);
  --shadow: 0 24px 60px rgba(100, 84, 120, 0.18);
  --glow: 0 0 40px rgba(255, 143, 178, 0.28);
  --vibe-pink: #ff8fb2;
  --vibe-violet: #c4a5ff;
  --vibe-cyan: #9fd3ff;
  --vibe-lime: #bfe9c5;
  --glow-pink: rgba(255, 143, 178, 0.25);
  --glow-violet: rgba(196, 165, 255, 0.18);
  --glow-cyan: rgba(159, 211, 255, 0.2);
}

* {
  box-sizing: border-box;
}

body,
body * {
  transition: background-color 400ms ease, color 400ms ease, border-color 400ms ease, box-shadow 400ms ease;
}

body {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, transparent 35%),
    radial-gradient(circle at 50% -10%, rgba(255, 255, 255, 0.08), transparent 55%),
    radial-gradient(circle at 20% 15%, rgba(255, 85, 29, 0.18), transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(255, 179, 71, 0.12), transparent 45%),
    var(--paper);
  color: var(--ink);
  min-height: 100vh;
}

body[data-theme="light"] {
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 182, 212, 0.35), transparent 55%),
    radial-gradient(circle at 80% 15%, rgba(196, 165, 255, 0.3), transparent 50%),
    radial-gradient(circle at 50% 70%, rgba(159, 211, 255, 0.25), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f9f6fb 55%, #f7f2fa 100%);
}

.js-indicator {
  position: fixed;
  right: 16px;
  bottom: 16px;
  padding: 6px 10px;
  border-radius: 1rem;
  background: rgba(255, 80, 80, 0.2);
  border: 1px solid rgba(255, 80, 80, 0.4);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  z-index: 9999;
}

.js-ready .js-indicator {
  display: none;
}

.theme-toggle {
  position: fixed;
  top: 18px;
  left: 20px;
  z-index: 9998;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.theme-track {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 92px;
  height: 42px;
  border-radius: 1rem;
  background: #7b7b7b;
  padding: 6px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    0 14px 30px rgba(0, 0, 0, 0.25);
  transition: background 400ms ease, box-shadow 400ms ease;
}

.theme-icon {
  width: 30px;
  height: 30px;
  border-radius: 1rem;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
}

.theme-icon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
}

body[data-theme="light"] .theme-track {
  background: #b7b7b7;
}

body[data-theme="light"] .theme-track::after,
.theme-track::after {
  content: "";
  position: absolute;
  top: 6px;
  width: 30px;
  height: 30px;
  border-radius: 1rem;
  background: #f7f7f7;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
  transition: transform 400ms ease, background 400ms ease;
}

.theme-track::after {
  left: 6px;
  background: #2d2d35;
}

body[data-theme="light"] .theme-track::after {
  transform: translateX(50px);
  background: #ffffff;
}

body::before,
body::after {
  content: "";
  position: fixed;
  top: 0;
  width: 22vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.88) 35%,
    rgba(0, 0, 0, 0.55) 65%,
    transparent 100%
  );
  opacity: 1;
}

body[data-theme="light"]::before,
body[data-theme="light"]::after {
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(249, 246, 251, 0.88) 35%,
    rgba(249, 246, 251, 0.6) 65%,
    transparent 100%
  );
}

body::before {
  left: 0;
}

body::after {
  right: 0;
  transform: scaleX(-1);
}

.page {
  max-width: 1240px;
  margin: 0 auto;
  padding: 32px 28px 80px;
  position: relative;
  z-index: 1;
}

.page::before,
.page::after {
  content: "";
  position: absolute;
  top: 120px;
  width: 140px;
  height: 520px;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.28) 1px, transparent 1px),
    radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 10px 10px;
  opacity: 0.2;
  animation: dot-flicker 6s ease-in-out infinite;
  pointer-events: none;
}

.page::before {
  left: -60px;
}

.page::after {
  right: -60px;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 16px 24px 0;
  max-width: 1200px;
  margin: 0 auto;
}

.header-center {
  justify-content: center;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo {
  min-width: 52px;
  height: 52px;
  padding: 0 14px;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
  font-weight: 600;
  display: grid;
  place-items: center;
  letter-spacing: 0.5px;
  font-size: 0.85rem;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}

.brand-text .name {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.brand-text .tag {
  color: var(--muted);
  font-size: 0.9rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 16px 10px 12px;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.nav-pill {
  padding: 10px 20px 10px 14px;
  gap: 6px;
}

body[data-theme="light"] .nav-pill {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(190, 180, 200, 0.45);
  box-shadow: 0 12px 30px rgba(170, 140, 190, 0.15);
}

.nav-logo {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 1rem;
  display: grid;
  place-items: center;
  background: transparent;
  border: none;
  margin-right: 8px;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.nav-logo:hover {
  background: rgba(255, 255, 255, 0.06);
}
.nav-logo:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.nav-logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 0;
}

.nav-dot {
  opacity: 0.7;
  font-weight: 600;
}

.nav a:not(.nav-logo) {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 10px 14px;
  border-radius: 0.75rem;
  opacity: 0.85;
  transition: opacity 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}
.nav a:not(.nav-logo):hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.06);
}
.nav a:not(.nav-logo):focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  opacity: 1;
}
body[data-theme="light"] .nav a:not(.nav-logo):hover {
  background: rgba(0, 0, 0, 0.05);
}

.nav-help {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px 18px;
  border-radius: 0.75rem;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink);
  opacity: 1;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.nav-help:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
}
.nav-help:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
body[data-theme="light"] .nav-help {
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.1);
}
body[data-theme="light"] .nav-help:hover {
  background: rgba(0, 0, 0, 0.1);
}

.nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
}

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

.ghost {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--stroke);
  border-radius: 1rem;
  padding: 8px 14px;
  font-weight: 500;
  color: var(--ink);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.ghost:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 85, 29, 0.25);
}

.primary {
  background: var(--accent);
  color: #fff;
  padding: 12px 22px;
  border-radius: 1rem;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(255, 85, 29, 0.45);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 200ms ease, box-shadow 200ms ease, filter 200ms ease;
}

.primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 18px 36px rgba(255, 85, 29, 0.55);
}

.hero {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.hero-center {
  text-align: center;
}

.hero-center .hero-copy {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-spotlight {
  position: relative;
  padding-bottom: 40px;
}

.hero-spotlight::before,
.hero-spotlight::after {
  content: "";
  position: absolute;
  top: 20px;
  width: 260px;
  height: 520px;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.32) 1px, transparent 1px),
    radial-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 8px 8px;
  opacity: 0.12;
  filter: blur(0.5px);
  animation: dot-flicker 7s ease-in-out infinite;
  pointer-events: none;
}

.hero-spotlight::before {
  left: -80px;
}

.hero-spotlight::after {
  right: -80px;
}

@keyframes dot-flicker {
  0% {
    opacity: 0.08;
    filter: blur(0.6px);
  }
  35% {
    opacity: 0.18;
    filter: blur(0.2px);
  }
  55% {
    opacity: 0.12;
    filter: blur(0.4px);
  }
  80% {
    opacity: 0.22;
    filter: blur(0.1px);
  }
  100% {
    opacity: 0.1;
    filter: blur(0.5px);
  }
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(22, 22, 22, 0.92);
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 16px;
}

body[data-theme="light"] .hero-pill {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(190, 180, 200, 0.45);
  color: #7a7682;
}

.hero-pill-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  border-radius: 0;
}

.logo-row {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 10px 0 6px;
}

.logo-pill {
  padding: 6px 10px;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
  color: var(--muted);
}

.logo-img {
  padding: 6px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.logo-img img {
  height: 18px;
  width: auto;
  display: block;
  filter: grayscale(1) brightness(1.1);
  opacity: 0.9;
}

.hero-copy h1 {
  font-family: "Boldonse", sans-serif;
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  line-height: 1;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  white-space: nowrap;
  text-align: center;
}

.hero-title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.grwm-letter {
  display: inline-block;
}

.grwm-letter.g { color: rgb(34 197 94 / 1); }
.grwm-letter.r { color: rgb(249 115 22 / 1); }
.grwm-letter.w { color: rgb(250 204 21 / 1); }
.grwm-letter.m { color: rgb(163 230 53 / 1); }

.grwm-word {
  color: var(--ink);
}

.hero-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.hero-sub {
  max-width: 720px;
  margin: 0 auto 24px;
  font-size: 1.1rem;
  line-height: 1.55;
  letter-spacing: 0.01em;
  color: var(--muted);
}

.input-card {
  margin-top: 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  padding: 18px 20px 22px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-input {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  min-height: 140px;
  height: auto;
  padding: 0;
  border-radius: 1rem;
  background: rgba(22, 22, 22, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}

body[data-theme="light"] .hero-input {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(190, 180, 200, 0.5);
  box-shadow: 0 18px 40px rgba(180, 150, 200, 0.22);
}


.hero-search-by {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  top: 10px;
  left: 18px;
  z-index: 4;
}

.hero-search-by-label {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

body[data-theme="light"] .hero-search-by-label {
  color: rgba(60, 50, 70, 0.55);
}

.hero-input-modes {
  display: inline-flex;
  gap: 6px;
}

.hero-mode-btn {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.hero-mode-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  font-weight: 600;
}

body[data-theme="light"] .hero-mode-btn {
  border-color: rgba(140, 120, 160, 0.35);
  background: rgba(255, 255, 255, 0.8);
  color: rgba(60, 50, 70, 0.8);
}

body[data-theme="light"] .hero-mode-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.hero-input #link-input {
  position: absolute;
  top: 44px;
  left: 24px;
  right: 120px;
  height: 34px;
  border: none;
  background: transparent;
  color: #8b93a1;
  font-size: 1.15rem;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0.02em;
  line-height: 1;
  padding: 0;
  z-index: 2;
}

body[data-theme="light"] .hero-input #link-input {
  color: #403a44;
}

body[data-theme="light"] .hero-input #link-input::placeholder {
  color: rgba(64, 58, 68, 0.5);
}

.hero-input #link-input:focus {
  outline: none;
  color: var(--ink);
}

.hero-input-caret {
  position: absolute;
  left: 24px;
  top: 61px;
  transform: translateY(-50%);
  width: 2px;
  height: 18px;
  background: currentColor;
  color: rgba(255, 255, 255, 0.9);
  pointer-events: none;
  z-index: 2;
  display: none;
  animation: caret-blink 1s step-end infinite;
}

.hero-input.input-empty:not(.input-focused):not([data-mode="photo"]) .hero-input-caret {
  display: block;
}

body[data-theme="light"] .hero-input-caret {
  color: rgba(40, 32, 52, 0.85);
}

@keyframes caret-blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.hero-input #link-input::placeholder {
  color: #7a828f;
}

.hero-upload {
  position: absolute;
  top: 44px;
  left: 24px;
  right: 120px;
  height: 34px;
  display: none;
  align-items: center;
  z-index: 2;
}

.hero-upload input[type="file"] {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.hero-upload-zone {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 1px dashed rgba(255, 255, 255, 0.25);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  font-family: "Space Grotesk", sans-serif;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.hero-upload-zone:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.85);
}

.hero-upload-prompt {
  padding-left: 12px;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-upload-name {
  padding: 0 12px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 55%;
}

.hero-upload-zone.has-file .hero-upload-prompt {
  display: none;
}

.hero-input[data-mode="photo"] #link-input {
  opacity: 0;
  pointer-events: none;
}

.hero-input[data-mode="photo"] .hero-upload {
  display: flex;
}

body[data-theme="light"] .hero-upload-zone {
  border-color: rgba(140, 120, 160, 0.3);
  background: rgba(255, 255, 255, 0.6);
  color: rgba(60, 50, 70, 0.7);
}

body[data-theme="light"] .hero-upload-zone:hover {
  border-color: rgba(140, 120, 160, 0.5);
  background: rgba(255, 255, 255, 0.8);
  color: rgba(40, 32, 52, 0.9);
}

body[data-theme="light"] .hero-upload-name {
  color: rgba(40, 32, 52, 0.9);
}

.hero-cta {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 1rem;
  font-size: 1.5rem;
  line-height: 1;
  padding: 0;
  z-index: 3;
  cursor: pointer;
  pointer-events: auto;
  animation: hero-cta-bounce 1.4s ease-in-out infinite;
}

@keyframes hero-cta-bounce {
  0%, 100% { transform: translateY(-50%); }
  50% { transform: translateY(calc(-50% - 5px)); }
}

.hero-input-icons {
  position: absolute;
  left: 24px;
  bottom: 20px;
  display: flex;
  gap: 0;
  align-items: center;
  z-index: 2;
  pointer-events: none;
}

.hero-mini {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 1rem;
  border: none;
  background: transparent;
  box-shadow: none;
}

.logo-mini img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  border-radius: 0.5rem;
  background: transparent;
  padding: 0;
}

.hero-brands {
  margin-left: 8px;
  font-size: 0.78rem;
  color: hsla(0, 0%, 100%, 0.75);
  letter-spacing: 0.02em;
  white-space: nowrap;
  pointer-events: none;
}

body[data-theme="light"] .hero-brands {
  color: rgba(60, 50, 70, 0.7);
}

.hero-input-status {
  position: absolute;
  top: 6px;
  right: 42px;
  margin-left: 0;
  font-size: 0.72rem;
  color: var(--muted);
  opacity: 1;
  transform: none;
  transition: color 180ms ease, transform 180ms ease;
  text-transform: lowercase;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  pointer-events: none;
  z-index: 3;
}

.hero-input-status.active {
  color: #5bd174;
  animation: status-glow 1.6s ease-in-out infinite;
}

.hero-input-status::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #5bd174;
  box-shadow: 0 0 12px rgba(91, 209, 116, 0.75);
}

@keyframes status-glow {
  0% {
    color: rgba(91, 209, 116, 0.6);
    text-shadow: none;
  }
  50% {
    color: #5bd174;
    text-shadow: 0 0 12px rgba(91, 209, 116, 0.45);
  }
  100% {
    color: rgba(91, 209, 116, 0.6);
    text-shadow: none;
  }
}

.hero-tags {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-tag {
  padding: 8px 14px;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: lowercase;
}

.tabs {
  display: none;
}

#tab-upload {
  display: none;
}

.input-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}

.tab {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  padding: 8px 16px;
  border: 1px solid transparent;
  font-weight: 600;
  color: var(--ink);
  transition: background 200ms ease, color 200ms ease;
}

.tab.active {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 18px rgba(255, 85, 29, 0.35);
}

.tab-panel {
  display: none;
  flex-direction: column;
  gap: 12px;
}

.tab-panel.active {
  display: flex;
}

.input-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

input[type="url"],
input[type="file"] {
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  font-size: inherit;
  color: inherit;
  outline: none;
  transition: none;
}

input[type="url"]:focus,
input[type="file"]:focus {
  outline: none;
}

input[type="url"]::placeholder {
  color: rgba(245, 245, 247, 0.55);
}

input[type="file"]::file-selector-button {
  margin-right: 12px;
  border: none;
  border-radius: 1rem;
  padding: 8px 12px;
  background: rgba(255, 85, 29, 0.95);
  color: #111;
  font-weight: 700;
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

input[type="file"]::file-selector-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(255, 85, 29, 0.35);
}

.hint {
  font-size: 0.85rem;
  color: var(--muted);
}

.trust {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
  justify-content: center;
}

.trust-item {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  padding: 8px 14px;
  font-size: 0.85rem;
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.08), rgba(139, 92, 246, 0.06));
  backdrop-filter: blur(10px);
  transition: box-shadow 200ms ease, transform 200ms ease;
}

.trust-item:hover {
  box-shadow: 0 4px 16px var(--glow-violet);
  transform: translateY(-1px);
}

.hero-orbit {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.preview-hero {
  display: grid;
  gap: 16px;
  align-items: center;
  justify-items: center;
}

.preview-frame {
  width: 240px;
  height: 320px;
  border-radius: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.4);
  background: linear-gradient(160deg, rgba(92, 117, 130, 0.7), rgba(96, 92, 120, 0.7));
  display: grid;
  place-items: center;
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.preview-frame-label {
  position: absolute;
  top: 22px;
  left: 24px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.preview-frame-face {
  width: 90px;
  height: 90px;
  border-radius: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.7);
  position: absolute;
  top: 88px;
}

.preview-frame-body {
  width: 140px;
  height: 150px;
  border-radius: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.6);
  position: absolute;
  bottom: 50px;
}

.preview-frame-tag {
  position: absolute;
  bottom: 24px;
  right: 24px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.preview-selected-pill {
  width: 240px;
  padding: 6px 12px;
  text-align: center;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
}

.hero-stack {
  position: absolute;
  top: 120px;
  display: flex;
  gap: 14px;
  align-items: center;
}

.hero-stack-left {
  left: -120px;
  transform: scale(0.8);
  transform-origin: top left;
}

.hero-stack-right {
  right: -130px;
  flex-direction: column;
  align-items: flex-end;
  transform: scale(0.7);
  transform-origin: top right;
}

.stack-grid {
  display: grid;
  grid-template-columns: repeat(2, 58px);
  column-gap: 14px;
  row-gap: 12px;
  justify-items: center;
  grid-auto-rows: 58px;
}

.stack-grid .stack-item:nth-child(2),
.stack-grid .stack-item:nth-child(4) {
  transform: translateX(10px) translateY(35px);
}

.stack-item {
  width: 58px;
  height: 58px;
  border-radius: 1rem;
  background: hsla(0, 0%, 100%, 0.05);
  border: 1px solid hsla(0, 0%, 100%, 0.1);
  display: grid;
  place-items: center;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.5);
}

body[data-theme="light"] .stack-item {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(190, 180, 200, 0.45);
  box-shadow: 0 14px 28px rgba(170, 140, 190, 0.18);
}

.stack-caption {
  margin-top: 0;
  padding-left: 0;
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.stack-label {
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.stack-logo img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 0.95rem;
}

.stack-pill {
  padding: 0.4rem 1rem 0.4rem 0.45rem;
  border-radius: 1rem;
  background: hsla(0, 0%, 100%, 0.05);
  border: 1px solid hsla(0, 0%, 100%, 0.1);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
  font-weight: 600;
  color: var(--ink);
}

body[data-theme="light"] .stack-pill {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(190, 180, 200, 0.45);
  box-shadow: 0 12px 24px rgba(170, 140, 190, 0.18);
}

.stack-pill-row {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 1rem 0.4rem 0.45rem;
  justify-content: flex-start;
  text-align: left;
}

.hero-stack-right .stack-pill-row:nth-child(1) {
  transform: translateX(0);
}

.hero-stack-right .stack-pill-row:nth-child(2) {
  transform: translateX(-14px);
}

.hero-stack-right .stack-pill-row:nth-child(3) {
  transform: translateX(-6px);
}

.stack-pill .stack-item {
  background: transparent;
  border: none;
  box-shadow: none;
}

.stack-pill .stack-item img {
  border-radius: 0.8rem;
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.stack-pill-text {
  font-family: "Boldonse", sans-serif;
  font-size: 0.875rem;
  line-height: 1.25rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: hsla(0, 0%, 100%, 0.8);
  flex: 1;
  text-align: center;
}

body[data-theme="light"] .stack-pill-text {
  color: rgba(60, 50, 70, 0.75);
}

@media (max-width: 980px) {
  .hero-orbit {
    position: static;
    width: 100%;
    height: auto;
    display: grid;
    gap: 26px;
    margin-top: 28px;
    align-items: center;
    justify-items: center;
  }

  .hero-stack {
    position: static;
    align-items: center;
  }

  .hero-stack-left {
    left: auto;
  }

  .hero-stack-right {
    right: auto;
    align-items: center;
  }

  .hero-stack-right .stack-pill-row {
    transform: none;
  }

  .stack-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
  }

  .stack-item {
    width: 60px;
    height: 60px;
  }

  .stack-logo img {
    width: 50px;
    height: 50px;
  }

  .stack-pill-row {
    justify-content: center;
  }
}

.hero-showcase {
  display: grid;
  gap: 18px;
  width: min(380px, 100%);
}

.doodle-card {
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--stroke);
  border-radius: 1rem;
  padding: 12px;
  box-shadow: var(--shadow), 0 0 50px -20px var(--glow-violet);
  backdrop-filter: blur(20px);
}

.offer-stack {
  display: grid;
  gap: 10px;
}

.offer-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  border: 1px solid var(--stroke);
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  backdrop-filter: blur(14px);
}

.offer-meta {
  color: var(--accent);
  font-size: 0.9rem;
}


.preview-card {
  width: min(380px, 100%);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  padding: 16px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.preview-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.explainer-wrap {
  padding: 20px 16px;
  text-align: center;
}

.explainer-title {
  font-family: "Fraunces", serif;
  font-size: 1.1rem;
  margin: 0 0 12px;
  color: var(--ink);
  font-weight: 600;
}

.explainer-text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
  text-align: center;
}

.explainer-text strong {
  color: var(--ink);
}

.preview-loaded {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.preview-frame-strip {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.preview-frame-thumb {
  width: 52px;
  height: 40px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  background: transparent;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.preview-frame-thumb:hover {
  border-color: var(--vibe-cyan);
  box-shadow: 0 0 16px var(--glow-cyan);
  transform: scale(1.05);
}

.preview-frame-thumb.selected {
  border-color: var(--vibe-pink);
  box-shadow: 0 0 0 2px var(--vibe-pink), 0 0 20px var(--glow-pink);
}

.preview-frame-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.preview-selected-wrap {
  width: 100%;
}

.preview-crop-wrap {
  position: relative;
  width: 100%;
  max-height: 280px;
  border-radius: 1rem;
  overflow: hidden;
  background: #111;
  cursor: crosshair;
}

.preview-selected-img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 280px;
  object-fit: contain;
}

.preview-crop-box {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 2px solid var(--vibe-cyan);
  box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.4);
  cursor: move;
  box-sizing: border-box;
}

.preview-crop-box .preview-crop-resize {
  pointer-events: auto;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 20px;
  height: 20px;
  cursor: nwse-resize;
  background: linear-gradient(135deg, var(--vibe-pink), var(--vibe-violet));
  border-radius: 1rem;
}

.preview-find-btn {
  margin-top: 14px;
  width: 100%;
}


.steps {
  margin-top: 72px;
  display: grid;
  gap: 32px;
}

.steps-head {
  text-align: center;
  display: grid;
  gap: 8px;
}

.steps-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--muted);
}

.steps-head h2 {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(2rem, 3.4vw, 2.6rem);
  margin: 0;
  text-transform: uppercase;
}

.steps-head p {
  color: var(--muted);
  margin: 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}

.ugc {
  margin-top: 50px;
  display: grid;
  gap: 20px;
}

.benefits {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.benefits-head {
  text-align: center;
}

.benefits-head .steps-kicker {
  font-size: inherit;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.benefits-body {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 1.2fr);
  gap: 32px;
  align-items: center;
}

.benefits-left img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
}

.frag-collage {
  position: relative;
  width: 100%;
  min-height: 420px;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  cursor: grab;
  isolation: isolate;
}

.frag-shuffle {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  padding: 10px 16px;
  border-radius: 1rem;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.frag-shuffle:hover {
  transform: translateX(-50%);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
}

.frag-shuffle-icon {
  font-size: 0.95rem;
}

.frag-card {
  position: absolute;
  width: 180px;
  max-width: 45%;
  border-radius: 1rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
  cursor: grab;
  user-select: none;
  touch-action: none;
  transition: transform 200ms ease, box-shadow 200ms ease, opacity 350ms ease;
  animation: frag-float 16s ease-in-out infinite, frag-border 6s ease-in-out infinite;
  z-index: 1;
}

.frag-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1rem;
  user-select: none;
  pointer-events: none;
}

.frag-card:active {
  cursor: grabbing;
}

@keyframes frag-float {
  0%, 100% { transform: translateY(0) rotate(var(--frag-rot, 0deg)); }
  50% { transform: translateY(-8px) rotate(var(--frag-rot, 0deg)); }
}

@keyframes frag-border {
  0%, 100% { box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35); }
  50% { box-shadow: 0 18px 36px rgba(255, 255, 255, 0.18); }
}

body[data-theme="light"] .frag-shuffle {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(190, 180, 200, 0.45);
  color: #1c1b1f;
}

body[data-theme="light"] .frag-collage {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(190, 180, 200, 0.45);
  box-shadow: 0 24px 50px rgba(170, 140, 190, 0.25);
}

.benefits-sub {
  color: var(--muted);
  margin-bottom: 24px;
}

.heading-boldonse {
  font-family: "Boldonse", sans-serif;
  text-transform: uppercase;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(200px, 1fr));
  gap: 16px;
}

.benefit-pill {
  border-radius: 1rem;
  padding: 16px 18px;
  display: grid;
  gap: 6px;
  color: #0b0d10;
  font-weight: 600;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.35);
}

.benefit-title {
  font-family: "Boldonse", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
}

.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 1rem;
  margin-right: 8px;
  background: rgba(0, 0, 0, 0.18);
  font-size: 0.75rem;
}

.benefit-sub {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.7);
}

.bg-yellow { background: rgb(250 204 21 / 1); }
.bg-orange { background: rgb(249 115 22 / 1); }
.bg-green { background: rgb(34 197 94 / 1); }
.bg-purple { background: rgb(139 92 246 / 1); color: #fff; }
.bg-lime { background: rgb(163 230 53 / 1); }
.bg-blue { background: rgb(59 130 246 / 1); color: #fff; }

.pricing {
  padding: 80px 0 110px;
}

.pricing-head {
  align-items: center;
  text-align: center;
}

.pricing-sub {
  color: var(--muted);
  max-width: 680px;
  margin: 8px auto 0;
  text-align: center;
}

.pricing-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.pricing-card {
  background: rgba(20, 20, 24, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 28px 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  display: grid;
  gap: 18px;
  min-height: 320px;
  position: relative;
  overflow: hidden;
}

.pricing-highlight {
  border-color: rgba(255, 85, 29, 0.5);
  box-shadow: 0 26px 80px rgba(255, 110, 50, 0.22);
  background: linear-gradient(160deg, rgba(24, 24, 28, 0.95), rgba(30, 20, 12, 0.95));
}

.pricing-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 55%);
  opacity: 0;
  transform: translateX(-30%);
  animation: pricing-pulse 6s ease-in-out infinite;
  pointer-events: none;
}

.pricing-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.12) 50%, transparent 80%);
  transform: translateX(-120%);
  animation: pricing-sweep 5s ease-in-out infinite;
  pointer-events: none;
  opacity: 0.4;
}

.pricing-card:hover::after {
  opacity: 0.7;
}

.pricing-card:hover {
  transform: translateY(-4px);
  transition: transform 240ms ease;
}

.pricing-eyebrow {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-badge {
  font-size: 0.7rem;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255, 85, 29, 0.2);
  color: rgba(255, 180, 120, 0.95);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price-amount {
  font-size: 2.6rem;
  font-weight: 700;
  color: #fff;
}

.price-cycle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
}

.pricing-note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

.pricing-perk {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 85, 29, 0.18);
  color: rgba(255, 220, 200, 0.95);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.perk-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #ff7b3c;
  box-shadow: 0 0 10px rgba(255, 123, 60, 0.85);
  animation: perk-pulse 1.6s ease-in-out infinite;
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  color: rgba(255, 255, 255, 0.75);
}

.pricing-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-list li::before {
  content: "✔";
  color: #ff7b3c;
  font-size: 0.85rem;
}

.pricing-cta {
  width: 100%;
  margin-top: auto;
  height: 46px;
  border-radius: 1rem;
  font-family: "Boldonse", sans-serif;
  text-transform: uppercase;
}

@keyframes pricing-pulse {
  0%, 100% { opacity: 0.1; transform: translateX(-30%) scale(1); }
  50% { opacity: 0.35; transform: translateX(10%) scale(1.05); }
}

@keyframes pricing-sweep {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}

@keyframes perk-pulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.2); opacity: 1; }
}

body[data-theme="light"] .pricing-card {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(190, 170, 210, 0.4);
  box-shadow: 0 22px 50px rgba(160, 130, 200, 0.2);
}

body[data-theme="light"] .pricing-highlight {
  background: linear-gradient(160deg, rgba(255, 250, 245, 0.98), rgba(255, 240, 230, 0.98));
  border-color: rgba(255, 150, 100, 0.5);
  box-shadow: 0 28px 70px rgba(240, 140, 90, 0.25);
}

body[data-theme="light"] .pricing-perk {
  background: rgba(255, 150, 110, 0.2);
  color: rgba(120, 70, 40, 0.9);
}

body[data-theme="light"] .pricing-eyebrow {
  color: rgba(80, 60, 100, 0.75);
}

body[data-theme="light"] .price-amount {
  color: rgba(40, 32, 52, 0.95);
}

body[data-theme="light"] .price-cycle,
body[data-theme="light"] .pricing-note,
body[data-theme="light"] .pricing-list {
  color: rgba(80, 70, 95, 0.7);
}

.faq {
  padding: 80px 0 120px;
}

.faq-head {
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 24px;
}

.faq-list {
  max-width: 920px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  padding: 18px 0;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.faq-item summary::marker,
.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "⌄";
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.6);
  transition: transform 200ms ease;
}

.faq-item[open] summary::after {
  transform: rotate(180deg);
}

.faq-item p {
  margin: 12px 0 0;
  color: var(--muted);
  max-width: 680px;
}

body[data-theme="light"] .faq-list {
  border-color: rgba(160, 140, 190, 0.35);
}

body[data-theme="light"] .faq-item {
  border-color: rgba(160, 140, 190, 0.35);
}

body[data-theme="light"] .faq-item summary {
  color: rgba(40, 32, 52, 0.9);
}

body[data-theme="light"] .faq-item summary::after {
  color: rgba(70, 60, 90, 0.6);
}
.bg-lime { background: rgb(163 230 53 / 1); }
.bg-blue { background: rgb(59 130 246 / 1); color: #fff; }

body[data-theme="light"] .benefits-left img {
  box-shadow: 0 24px 50px rgba(170, 140, 190, 0.25);
}

@media (max-width: 900px) {
  .benefits-body {
    grid-template-columns: 1fr;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

.ugc-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.ugc-title-heading {
  font-family: "Boldonse", sans-serif;
  text-transform: uppercase;
}

.ugc-title-heading,
.steps-kicker.heading-boldonse,
.faq-head {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: #fff;
  letter-spacing: -0.01em;
}

.ugc-head p,
.benefits-sub,
.pricing-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 6px 0 0;
}

body[data-theme="light"] .ugc-title-heading,
body[data-theme="light"] .steps-kicker.heading-boldonse,
body[data-theme="light"] .faq-head {
  color: rgba(30, 24, 38, 0.95);
}

body[data-theme="light"] .ugc-head p,
body[data-theme="light"] .benefits-sub,
body[data-theme="light"] .pricing-sub {
  color: rgba(60, 50, 70, 0.7);
}


.ugc-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 1fr);
  gap: 16px;
  overflow: hidden;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
}

.ugc-track::-webkit-scrollbar {
  display: none;
}

.ugc-track::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 999px;
}

.ugc-card {
  scroll-snap-align: start;
  display: grid;
  gap: 12px;
  padding: 14px;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none;
  color: var(--ink);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.ugc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.4);
}

.ugc-video {
  width: 100%;
  min-height: 280px;
  aspect-ratio: 9 / 16;
  border-radius: 1rem;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.5);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  position: relative;
}

.ugc-video video {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  vertical-align: middle;
}

.ugc-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.35) 0%, transparent 55%);
  opacity: 1;
  transition: opacity 200ms ease;
  pointer-events: none;
}

.ugc-play::before {
  content: "";
  width: 52px;
  height: 52px;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  position: relative;
}

.ugc-play::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 14px solid #111;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  transform: translateX(2px);
}

.ugc-card:hover .ugc-play {
  opacity: 0;
}

body[data-theme="light"] .ugc-card {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(190, 180, 200, 0.45);
  box-shadow: 0 18px 36px rgba(170, 140, 190, 0.18);
}

body[data-theme="light"] .ugc-video {
  background: rgba(255, 255, 255, 0.8);
}

@media (max-width: 720px) {
  .ugc-head {
    align-items: center;
  }
}

.style-marquee {
  margin: 32px 0 72px;
  overflow: hidden;
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 14px 0 18px;
  display: grid;
  place-items: center;
}

.style-marquee::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px);
  background-size: 8px 8px;
  opacity: 0.12;
  pointer-events: none;
}

.marquee-scroll-wrap {
  display: flex;
  width: max-content;
  will-change: transform;
  transform: translateX(var(--scroll-px, 0));
}

.marquee-inner {
  display: flex;
  width: max-content;
}

.marquee-track {
  display: inline-flex;
  gap: 22px;
  padding: 10px 0;
  flex-shrink: 0;
}

.marquee-track.clone {
  flex-shrink: 0;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 34px;
  border-radius: 1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  font-size: 1.2rem;
  color: #0b0d10;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
  white-space: nowrap;
  transform: none;
}

body[data-theme="light"] .marquee-item {
  color: #1c1b1f;
  box-shadow: 0 14px 30px rgba(170, 140, 190, 0.2);
}

.marquee-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 1rem;
  background: #000;
  font-size: 20px;
}

body[data-theme="light"] .marquee-icon {
  background: #fff;
  color: #1c1b1f;
}

.brand-yellow { background: rgb(250 204 21/var(--tw-bg-opacity, 1)); }
.brand-orange { background: rgb(249 115 22/var(--tw-bg-opacity, 1)); }
.brand-green { background: rgb(34 197 94/var(--tw-bg-opacity, 1)); }
.brand-purple { background: rgb(139 92 246/var(--tw-bg-opacity, 1)); }
.brand-lime { background: rgb(163 230 53/var(--tw-bg-opacity, 1)); }
.brand-blue { background: rgb(59 130 246/var(--tw-bg-opacity, 1)); color: #fff; }

.tilt-up { transform: rotate(-4deg) translateY(-8px); }
.tilt-down { transform: rotate(4deg) translateY(8px); }

.step-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1rem;
  padding: 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  display: grid;
  gap: 10px;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.55);
}

.step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.step-badge {
  width: 40px;
  height: 40px;
  border-radius: 1rem;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 700;
  font-size: 1.1rem;
}

.step-icon {
  width: 36px;
  height: 36px;
  border-radius: 1rem;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent);
  font-size: 1rem;
}

.step-card h3 {
  margin: 0;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.offers {
  margin-top: 56px;
}

.results-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(50vw, 760px);
  min-width: 360px;
  height: 100vh;
  background: rgba(16, 16, 18, 0.96);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  padding: 24px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: translateX(100%);
  transition: transform 320ms ease;
  z-index: 9990;
  overflow: hidden;
}

.results-panel.open {
  transform: translateX(0);
}

.results-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.results-kicker {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.results-header h2 {
  margin: 6px 0 0;
  font-size: 1.4rem;
}

.results-scan {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.02);
}

.results-panel.scanning .results-scan {
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.08);
}

.results-scan::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 1rem;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 45%, rgba(255, 255, 255, 0.08));
  opacity: 0;
  pointer-events: none;
}

.results-panel.scanning .results-scan::before {
  opacity: 1;
  animation: scan-glow 3.2s ease-in-out infinite;
}

.scan-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.scan-title {
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.7);
}

.scan-status {
  font-size: 0.82rem;
  color: var(--muted);
  position: relative;
  padding-right: 1.6rem;
}

.results-panel.scanning .scan-status::after {
  content: "...";
  position: absolute;
  right: 0;
  top: 0;
  width: 1.4rem;
  overflow: hidden;
  display: inline-block;
  animation: scan-dots 1.2s steps(4, end) infinite;
}

.scan-progress {
  position: relative;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.scan-line {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.5) 45%, transparent 100%);
  transform: translateX(-60%);
  animation: scan-line 1.9s ease-in-out infinite;
}

.scan-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.scan-step {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  transition: color 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.scan-step.active {
  color: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.12);
}

.scan-sites {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 10px;
}

.scan-shops-count {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.scan-card {
  height: 52px;
  transition: transform 0.25s ease;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.scan-card img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 0.6rem;
  filter: grayscale(0.2) brightness(1.1);
  opacity: 0.85;
}

.scan-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.4) 50%, transparent 80%);
  transform: translateX(-120%);
  animation: scan-sweep 2.1s ease-in-out infinite;
}

.scan-card:nth-child(3n + 1) { animation-delay: 0ms; }
.scan-card:nth-child(3n + 2) { animation-delay: 250ms; }
.scan-card:nth-child(3n + 3) { animation-delay: 500ms; }
.scan-card:nth-child(4n + 1)::after { animation-delay: 0ms; }
.scan-card:nth-child(4n + 2)::after { animation-delay: 300ms; }
.scan-card:nth-child(4n + 3)::after { animation-delay: 600ms; }
.scan-card:nth-child(4n + 4)::after { animation-delay: 900ms; }

.results-panel.scanning .scan-card {
  animation: scan-float 3s ease-in-out infinite;
}

.results-panel.scanning .scan-card::after {
  animation-play-state: running;
}

.results-panel:not(.scanning) .scan-card::after {
  animation-play-state: paused;
  opacity: 0.2;
}

.results-panel.scanning .site-pill {
  animation: site-pulse 1.6s ease-in-out infinite;
}

.results-panel.scanning .offers-grid {
  opacity: 0.45;
  filter: blur(0.5px);
  pointer-events: none;
}

.results-panel:not(.scanning) .scan-line {
  animation-play-state: paused;
  opacity: 0.4;
}

@keyframes scan-line {
  0% { transform: translateX(-70%); }
  100% { transform: translateX(120%); }
}

@keyframes scan-sweep {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}

@keyframes scan-dots {
  0% { width: 0.2rem; }
  25% { width: 0.6rem; }
  50% { width: 1rem; }
  75% { width: 1.4rem; }
  100% { width: 0.2rem; }
}

@keyframes scan-glow {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.55; }
}

@keyframes scan-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes site-pulse {
  0%, 100% { transform: scale(1); box-shadow: none; }
  50% { transform: scale(1.03); box-shadow: 0 0 12px rgba(255, 255, 255, 0.18); }
}

body[data-theme="light"] .scan-title {
  color: rgba(70, 60, 90, 0.7);
}

body[data-theme="light"] .scan-status {
  color: rgba(80, 70, 95, 0.7);
}

body[data-theme="light"] .results-panel.scanning .results-scan {
  border-color: rgba(170, 140, 200, 0.35);
  box-shadow: 0 0 24px rgba(150, 120, 200, 0.18);
}

body[data-theme="light"] .scan-step {
  color: rgba(60, 50, 70, 0.65);
  border-color: rgba(190, 180, 200, 0.35);
  background: rgba(255, 255, 255, 0.7);
}

body[data-theme="light"] .scan-step.active {
  color: rgba(40, 32, 52, 0.92);
  border-color: rgba(160, 140, 190, 0.6);
  box-shadow: 0 0 14px rgba(120, 90, 150, 0.2);
}

body[data-theme="light"] .scan-card {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(190, 180, 200, 0.45);
}

.results-actions {
  display: inline-flex;
  gap: 10px;
}

.results-close {
  width: 36px;
  height: 36px;
  border-radius: 1rem;
  display: grid;
  place-items: center;
}

.results-panel .offers-grid {
  overflow-y: auto;
  padding-bottom: 40px;
}

.results-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
  z-index: 9985;
}

.results-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

body.results-open {
  overflow: hidden;
}

body[data-theme="light"] .results-panel {
  background: rgba(255, 255, 255, 0.98);
  border-left-color: rgba(190, 180, 200, 0.45);
}

@media (max-width: 960px) {
  .results-panel {
    width: 100vw;
    min-width: 0;
  }
}

.offers-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.offers-head h2 {
  background: linear-gradient(135deg, var(--vibe-pink), var(--vibe-violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: "Fraunces", serif;
}

.offers-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.offers-empty {
  grid-column: 1 / -1;
  padding: 24px;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 1rem;
  border: 1px dashed var(--stroke);
}

.offers-empty-inlook {
  grid-column: 1 / -1;
  padding: 16px;
  text-align: center;
  color: var(--muted);
  font-size: 0.875rem;
}

.site-list {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-pill {
  border: 1px solid var(--stroke);
  border-radius: 1rem;
  padding: 6px 12px;
  font-size: 0.85rem;
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.06), rgba(139, 92, 246, 0.06));
  backdrop-filter: blur(10px);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.site-pill:hover {
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: 0 2px 12px var(--glow-violet);
}

.offer-item {
  position: relative;
  background: var(--card);
  border-radius: 1rem;
  border: 1px solid var(--stroke);
  padding: 16px;
  display: grid;
  gap: 10px;
  backdrop-filter: blur(14px);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.offer-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35), 0 0 40px -10px var(--glow-violet);
}

.offer-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  padding: 4px 10px;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--vibe-pink), var(--vibe-violet));
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px var(--glow-pink);
}

.offer-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.offer-head {
  display: grid;
  gap: 4px;
}

.offer-title {
  font-weight: 700;
}

.offer-site {
  color: var(--muted);
  font-size: 0.9rem;
}

.offer-item .pill {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
}

.offer-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-weight: 600;
}

.price-label {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}

.offer-item .price {
  font-weight: 700;
  background: linear-gradient(135deg, var(--vibe-lime), var(--vibe-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.offer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 4px;
}

.offer-wishlist-btn {
  font-size: 0.875rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid var(--stroke);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: color 200ms ease, border-color 200ms ease;
}

.offer-wishlist-btn:hover:not(.saved) {
  color: var(--accent);
  border-color: var(--accent);
}

.offer-wishlist-btn.saved {
  color: var(--vibe-lime);
  border-color: rgba(34, 197, 94, 0.4);
  cursor: default;
}

.offers-results-wrap {
  grid-column: 1 / -1;
  width: 100%;
}

.frame-results-label {
  margin-top: 20px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 500;
}

.offers-results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  width: 100%;
}

.offers-by-frame {
  grid-column: 1 / -1;
  margin-top: 24px;
}

.frame-block-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.frame-block-thumb {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 1rem;
  border: 1px solid var(--stroke);
}

.frame-block-label {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 500;
}

.frame-block-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.frame-block-empty {
  grid-column: 1 / -1;
  padding: 16px;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 1rem;
}

/* Analyzer overlay */
.analyzer-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 18, 0.9);
  backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.analyzer-overlay.visible {
  opacity: 1;
  visibility: visible;
}

.analyzer-card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 1rem;
  padding: 32px 36px;
  max-width: 380px;
  width: calc(100% - 32px);
  box-shadow: var(--shadow), 0 0 80px -20px var(--glow-pink);
  text-align: center;
  animation: analyzer-card-in 0.4s ease;
  position: relative;
  overflow: hidden;
}

.analyzer-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  padding: 1px;
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.3), transparent 50%, rgba(34, 211, 238, 0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

@keyframes analyzer-card-in {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(-12px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.analyzer-spinner {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--vibe-pink);
  border-right-color: var(--vibe-violet);
  border-radius: 1rem;
  animation: analyzer-spin 0.9s linear infinite;
  box-shadow: 0 0 24px var(--glow-pink);
}

@keyframes analyzer-spin {
  to {
    transform: rotate(360deg);
  }
}

.analyzer-title {
  font-family: "Fraunces", serif;
  font-size: 1.35rem;
  margin: 0 0 24px;
  background: linear-gradient(135deg, var(--vibe-pink), var(--vibe-violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.analyzer-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.analyzer-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid transparent;
  opacity: 0.5;
  transition: opacity 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.analyzer-step.active {
  opacity: 1;
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.12), rgba(139, 92, 246, 0.08));
  border-color: rgba(236, 72, 153, 0.35);
}

.analyzer-step-icon {
  width: 10px;
  height: 10px;
  border-radius: 1rem;
  background: var(--muted);
  flex-shrink: 0;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.analyzer-step.active .analyzer-step-icon {
  background: var(--vibe-pink);
  box-shadow: 0 0 14px var(--glow-pink);
  animation: analyzer-pulse 1.2s ease-in-out infinite;
}

@keyframes analyzer-pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.15);
  }
}

.analyzer-step-text {
  font-size: 0.95rem;
  color: var(--ink);
}

.analyzer-hint {
  margin: 20px 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.footer {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid var(--stroke);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer a {
  color: inherit;
  text-decoration: none;
  transition: color 200ms ease;
}

.footer a:hover {
  color: var(--vibe-cyan);
}

.footer-brand {
  font-weight: 500;
  letter-spacing: 0.02em;
}

@media (max-width: 720px) {
  .nav {
    display: none;
  }

  .input-row {
    flex-direction: column;
  }
}
