/* ============================================================
   Robux Credit — Styles
   ============================================================ */

/* --- Variables --- */
:root {
  --bg: #0B0B0C;
  --bg-alt: #111113;
  --card: #161618;
  --card-hover: #1C1C1F;
  --accent: #00F2FF;
  --accent-dim: rgba(0, 242, 255, 0.12);
  --accent-glow: rgba(0, 242, 255, 0.35);
  --gradient-start: #7B2FBE;
  --gradient-end: #FF4B6E;
  --text: #FFFFFF;
  --muted: #A1A1AA;
  --muted-dark: #71717A;
  --border: rgba(255, 255, 255, 0.08);
  --border-accent: rgba(0, 242, 255, 0.25);
  --success: #00E676;
  --success-dim: rgba(0, 230, 118, 0.12);
  --success-glow: rgba(0, 230, 118, 0.25);
  --danger: #FF4B4B;
  --danger-dim: rgba(255, 75, 75, 0.12);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 40px rgba(0, 242, 255, 0.15);
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --max-width: 1200px;
  --content-width: 720px;
  --transition: 0.2s ease;
}

/* --- Reset --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0, 242, 255, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(123, 47, 190, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--text);
}

ul, ol {
  list-style: none;
}

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

/* --- Utilities --- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.container--narrow {
  max-width: 800px;
}

/* --- Header / Nav --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 11, 12, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  min-height: 3.25rem;
  max-height: 3.75rem;
  padding: 0.5rem clamp(1rem, 4vw, 2rem);
  gap: 1rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  color: var(--text);
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1;
}

.nav__logo:hover {
  color: var(--accent);
}

.nav__logo:hover .nav__logo-icon-img {
  transform: scale(1.04);
}

.nav__logo-icon-img {
  display: block;
  width: 28px;
  height: 28px;
  max-width: 28px;
  max-height: 28px;
  object-fit: contain;
  border-radius: 5px;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.nav__logo-text {
  white-space: nowrap;
}

.nav__links {
  display: none;
  gap: 2rem;
}

.nav__links a {
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 500;
}

.nav__links a:hover {
  color: var(--text);
}

.nav__cta {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--bg);
  background: var(--accent);
  padding: 0.5rem 1.125rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  transition: box-shadow var(--transition), transform var(--transition);
}

.nav__cta:hover {
  color: var(--bg);
  box-shadow: 0 0 20px var(--accent-glow);
  transform: translateY(-1px);
}

.nav__cta:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* --- Hero --- */
.hero {
  position: relative;
  z-index: 1;
  padding: clamp(1.5rem, 5vw, 3rem) clamp(1rem, 4vw, 2rem) clamp(2rem, 6vw, 4rem);
}

.hero__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  max-width: fit-content;
  margin: 0 auto 2rem;
  padding: 0.5rem 1.25rem;
  font-size: clamp(0.625rem, 2vw, 0.75rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0, 242, 255, 0.06);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-pill);
  box-shadow: 0 0 24px rgba(0, 242, 255, 0.08);
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

.hero__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* --- Generator Card --- */
.generator-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.generator-card__gradient-border {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
}

.generator-card__header {
  text-align: center;
  margin-bottom: 1.75rem;
}

.generator-card__logo-img {
  display: block;
  width: 48px;
  height: 48px;
  max-width: 48px;
  max-height: 48px;
  margin: 0 auto 0.75rem;
  object-fit: contain;
  border-radius: 10px;
}

.generator-card__eyebrow {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-dark);
  margin-bottom: 0.5rem;
}

.generator-card__title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.generator-card__subtitle {
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: var(--muted);
}

.generator-card__subtitle strong {
  color: var(--accent);
  font-weight: 600;
}

/* --- Stepper --- */
.stepper {
  display: flex;
  justify-content: center;
  gap: clamp(0.5rem, 3vw, 2rem);
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}

.stepper__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-dark);
  font-size: clamp(0.6875rem, 2vw, 0.8125rem);
  font-weight: 500;
}

.stepper__item--active {
  color: var(--accent);
}

.stepper__item--completed {
  color: var(--accent);
}

.stepper__circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.stepper__item--active .stepper__circle,
.stepper__item--completed .stepper__circle {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
}

/* --- Form --- */
.generator-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.generator-form__input-wrap {
  position: relative;
  flex: 1;
}

.generator-form__icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted-dark);
  pointer-events: none;
}

.generator-form__input {
  width: 100%;
  padding: 0.9375rem 1rem 0.9375rem 2.75rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text);
  font-size: 0.9375rem;
  font-family: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.generator-form__input::placeholder {
  color: var(--muted-dark);
}

.generator-form__input:focus {
  outline: none;
  border-color: var(--border-accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

.form-error {
  color: var(--danger);
  font-size: 0.8125rem;
  margin-top: -0.5rem;
  margin-bottom: 0.75rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: var(--radius-md);
  transition: box-shadow var(--transition), transform var(--transition), background var(--transition);
}

.btn--primary {
  background: var(--accent);
  color: var(--bg);
  padding: 0.9375rem 1.75rem;
  box-shadow: 0 0 30px var(--accent-glow);
}

.btn--primary:hover {
  box-shadow: 0 0 40px rgba(0, 242, 255, 0.5);
  transform: translateY(-1px);
}

.btn--primary:focus-visible {
  outline: 2px solid var(--text);
  outline-offset: 3px;
}

.btn--full {
  width: 100%;
}

.btn--lg {
  padding: 1rem 2.25rem;
  font-size: 1rem;
}

/* --- Processing Overlay --- */
.processing {
  text-align: center;
  padding: clamp(1rem, 3vw, 1.5rem) 0;
  margin-bottom: 1.25rem;
  animation: fade-in 0.35s ease;
}

.processing__ring-wrap {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 1.25rem;
}

.processing__ring {
  width: 100%;
  height: 100%;
}

.processing__ring-track {
  stroke: rgba(255, 255, 255, 0.06);
}

.processing__ring-fill {
  stroke: var(--accent);
  stroke-dasharray: 326.73;
  stroke-dashoffset: 326.73;
  transition: stroke-dashoffset 0.4s ease;
  filter: drop-shadow(0 0 6px var(--accent-glow));
}

.processing__avatar {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 14px;
  object-fit: cover;
  border: 2px solid var(--border);
  background: var(--bg);
}

.processing__percent {
  font-size: clamp(2rem, 6vw, 2.75rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.625rem;
  font-variant-numeric: tabular-nums;
}

.processing__title {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  font-weight: 700;
  margin-bottom: 0.375rem;
}

.processing__subtitle {
  font-size: 0.8125rem;
  color: var(--muted-dark);
  margin-bottom: 1.5rem;
}

.processing__bar {
  width: 100%;
  max-width: 420px;
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-pill);
  margin: 0 auto 1.75rem;
  overflow: hidden;
}

.processing__bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), #00c8d4);
  border-radius: var(--radius-pill);
  transition: width 0.4s ease;
  box-shadow: 0 0 12px var(--accent-glow);
}

.processing__tasks {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  text-align: left;
  max-width: 420px;
  margin: 0 auto;
}

.processing__task {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8125rem;
  color: var(--muted-dark);
  transition: color 0.3s ease;
}

.processing__task--active {
  color: var(--text);
}

.processing__task--done {
  color: var(--text);
}

.processing__task-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.processing__task--active .processing__task-icon {
  border-color: var(--accent);
  border-top-color: transparent;
  animation: spin 0.8s linear infinite;
}

.processing__task--done .processing__task-icon {
  border-color: #00E676;
  background: #00E676;
}

.processing__task--done .processing__task-icon::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 6px;
  width: 5px;
  height: 9px;
  border: solid var(--bg);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.generator-card--processing .generator-step,
.generator-card--processing .trust-badges,
.generator-card--processing .generator-card__footer {
  display: none;
}

.generator-card--processing .processing {
  display: block;
}

/* --- Verify / Claim Panels --- */
.verify-panel,
.claim-panel {
  text-align: center;
  padding: clamp(0.5rem, 2vw, 1rem) 0;
  margin-bottom: 1.25rem;
}

.verify-panel--enter {
  animation: verify-enter 0.5s ease forwards;
}

.generator-card--verify .generator-card__title {
  display: none;
}

.captcha-box__body--hiding {
  animation: captcha-hide 0.28s ease forwards;
}

.captcha-box__body--failed {
  padding: 1rem;
  opacity: 0;
  transform: scale(0.96) translateY(6px);
}

.captcha-box__body--failed:not(.captcha-box__body--show) {
  animation: none;
}

.captcha-box__body--failed.captcha-box__body--show {
  animation: captcha-failed-in 0.45s cubic-bezier(0.34, 1.4, 0.64, 1) forwards;
}

.captcha-box--failed-shake {
  animation: captcha-shake 0.45s ease;
}

.verify-panel__icon {
  margin: 0 auto 1rem;
  filter: drop-shadow(0 0 20px var(--success-glow));
}

.verify-panel__heading {
  font-size: clamp(1.375rem, 4vw, 1.75rem);
  font-weight: 800;
  color: var(--success);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.verify-panel__desc {
  color: var(--muted);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.verify-panel__desc strong {
  color: var(--text);
  font-weight: 600;
}

.verify-panel__hint {
  font-size: 0.8125rem;
  color: var(--muted-dark);
  margin-top: 1rem;
  margin-bottom: 0;
}

/* --- CAPTCHA Box --- */
.captcha-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-align: left;
  max-width: 420px;
  margin: 0 auto;
}

.captcha-box__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
}

.captcha-box__label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-dark);
}

.captcha-box__badge {
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--success);
  background: var(--success-dim);
  border: 1px solid rgba(0, 230, 118, 0.25);
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.captcha-box__body {
  position: relative;
  padding: 1rem;
  min-height: 74px;
  display: flex;
  align-items: center;
}

.captcha-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}

.captcha-row__left {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  position: relative;
  min-height: 28px;
}

.captcha-row--checking .captcha-checkbox {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  width: 28px;
  height: 28px;
}

.captcha-row--checking .captcha-inline-spinner {
  display: flex;
}

.captcha-row--checking .captcha-checkbox__text {
  color: var(--muted);
}

.captcha-row--checking .captcha-logo svg {
  animation: captcha-logo-spin 1.2s linear infinite;
}

.captcha-inline-spinner {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  display: none;
}

.captcha-spinner-svg__track {
  stroke: rgba(85, 153, 255, 0.2);
}

.captcha-spinner-svg__arc {
  stroke: #5599FF;
  stroke-dasharray: 52 20;
  transform-origin: 14px 14px;
  animation: captcha-arc-spin 0.9s linear infinite;
}

.captcha-logo svg {
  transform-origin: center;
}

.captcha-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.125rem;
  color: var(--muted-dark);
  flex-shrink: 0;
}

.captcha-logo__label {
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.captcha-box__footer {
  padding: 0.5rem 1rem;
  font-size: 0.625rem;
  color: var(--muted-dark);
  text-align: right;
  border-top: 1px solid var(--border);
}

/* --- CAPTCHA Checkbox --- */
.captcha-checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}

.captcha-checkbox__input {
  position: absolute;
  opacity: 0;
  width: 28px;
  height: 28px;
  margin: 0;
  cursor: pointer;
}

.captcha-checkbox__box {
  width: 28px;
  height: 28px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  background: var(--card);
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
  pointer-events: none;
}

.captcha-checkbox:hover .captcha-checkbox__box {
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.captcha-checkbox:active .captcha-checkbox__box {
  transform: scale(0.92);
}

.captcha-checkbox__input:focus-visible + .captcha-checkbox__box {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.captcha-checkbox__text {
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--text);
  transition: color 0.3s ease;
  white-space: nowrap;
}

/* --- CAPTCHA Failed --- */
.captcha-failed {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  width: 100%;
  animation: fade-in 0.35s ease;
}

.captcha-failed__icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--danger-dim);
  border: 1px solid rgba(255, 75, 75, 0.35);
  border-radius: 6px;
  color: var(--danger);
  flex-shrink: 0;
}

.captcha-failed__title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--danger);
  margin-bottom: 0.125rem;
}

.captcha-failed__hint {
  font-size: 0.8125rem;
  color: var(--muted-dark);
}

.captcha-box--failed {
  border-color: rgba(255, 75, 75, 0.2);
}

/* --- Verify Button --- */
.btn--verify {
  margin-top: 1.25rem;
  background: linear-gradient(135deg, var(--accent) 0%, #00c4cc 100%);
  color: var(--bg);
  padding: 1rem 1.75rem;
  font-size: 1rem;
  box-shadow: 0 0 30px var(--accent-glow);
  opacity: 0;
  transform: translateY(14px);
}

.btn--verify-enter {
  animation: verify-btn-in 0.5s cubic-bezier(0.34, 1.4, 0.64, 1) forwards;
}

.btn--verify:hover {
  box-shadow: 0 0 40px rgba(0, 242, 255, 0.5);
}

.btn--verify-enter:hover {
  transform: translateY(-1px);
}

.claim-panel__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.claim-panel__text {
  color: var(--muted);
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

.claim-panel__success {
  margin-bottom: 1rem;
}

.claim-panel__amount {
  font-size: clamp(2rem, 6vw, 2.75rem);
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

/* --- Trust Badges --- */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 1rem;
}

.trust-badges__item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: var(--muted-dark);
}

.trust-badges__item svg {
  color: var(--muted);
}

/* --- Generator Footer --- */
.generator-card__footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8125rem;
  color: var(--muted);
}

.live-users {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.live-users__dot {
  width: 7px;
  height: 7px;
  background: var(--danger);
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

.countdown {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.countdown strong {
  color: var(--danger);
  font-weight: 700;
}

/* --- Sidebar --- */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.sidebar-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  box-shadow: var(--shadow);
}

.sidebar-card__title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-dark);
  margin-bottom: 1.25rem;
}

.sidebar-card__dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

/* --- Claims List --- */
.claims-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.claims-list__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: fade-in 0.4s ease;
}

.claims-list__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
  background: var(--bg-alt);
}

.claims-list__info {
  flex: 1;
  min-width: 0;
}

.claims-list__name {
  font-size: 0.8125rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.claims-list__time {
  font-size: 0.6875rem;
  color: var(--muted-dark);
}

.claims-list__amount {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}

/* --- Stats List --- */
.stats-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.stats-list__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stats-list__row dt {
  font-size: 0.8125rem;
  color: var(--muted);
}

.stats-list__row dd {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text);
}

.stats-list__row:first-child dd {
  color: var(--accent);
}

/* --- Inner Pages --- */
.page-hero {
  position: relative;
  z-index: 1;
  padding: clamp(2.5rem, 8vw, 4rem) 0 clamp(2rem, 5vw, 3rem);
  text-align: center;
}

.page-hero .container {
  max-width: 800px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  color: var(--muted-dark);
  margin-bottom: 1.25rem;
}

.breadcrumb a {
  color: var(--muted);
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb__sep {
  color: var(--muted-dark);
}

.page-hero__title {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.page-hero__lead {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  color: var(--muted);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}

.inner-main {
  position: relative;
  z-index: 1;
}

.content-section h2 a,
.content-section p a,
.page-hero__lead a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.content-section h2 a:hover,
.content-section p a:hover,
.page-hero__lead a:hover {
  color: var(--text);
}

.nav__links a[aria-current="page"] {
  color: var(--accent);
}

/* --- Content Sections --- */
.content-section {
  position: relative;
  z-index: 1;
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.content-section--alt {
  background: var(--bg-alt);
}

.content-section h2 {
  font-size: clamp(1.375rem, 3.5vw, 1.875rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 1rem;
  max-width: var(--content-width);
  margin-left: auto;
  margin-right: auto;
}

.content-section h3 {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  font-weight: 700;
  margin-bottom: 0.375rem;
}

.content-section p {
  color: var(--muted);
  font-size: clamp(0.9375rem, 2vw, 1rem);
  max-width: var(--content-width);
  margin-bottom: 1rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.info-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin-top: 1.5rem;
  margin-left: auto;
  margin-right: auto;
  max-width: var(--content-width);
}

.info-box strong {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.info-box ul {
  list-style: disc;
  padding-left: 1.25rem;
}

.info-box li {
  color: var(--muted);
  font-size: 0.9375rem;
  margin-bottom: 0.375rem;
  line-height: 1.6;
}

.info-box--accent {
  border-color: var(--border-accent);
  background: rgba(0, 242, 255, 0.04);
}

.info-box--accent p {
  margin-bottom: 0;
  color: var(--muted);
}

/* --- Steps List --- */
.steps-list {
  counter-reset: steps;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.5rem;
  margin-left: auto;
  margin-right: auto;
  max-width: var(--content-width);
}

.steps-list li {
  counter-increment: steps;
  position: relative;
  padding-left: 3rem;
}

.steps-list li::before {
  content: counter(steps);
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  background: var(--accent-dim);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
}

/* --- FAQ --- */
.faq-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item[open] {
  border-color: var(--border-accent);
}

.faq-item summary {
  padding: 1rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--text);
}

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

.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform var(--transition);
}

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

.faq-item summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

.faq-item p {
  padding: 0 1.25rem 1rem;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: none;
}

/* --- CTA --- */
.cta-section {
  position: relative;
  z-index: 1;
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.cta-card {
  text-align: center;
  background: var(--card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 6vw, 3.5rem) clamp(1.5rem, 4vw, 3rem);
  box-shadow: var(--shadow-glow);
}

.cta-card h2 {
  font-size: clamp(1.375rem, 3.5vw, 2rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.cta-card p {
  color: var(--muted);
  font-size: clamp(0.9375rem, 2vw, 1.0625rem);
  max-width: 540px;
  margin: 0 auto 1.75rem;
  line-height: 1.7;
}

/* --- Footer --- */
.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  text-align: center;
}

.footer-nav {
  margin-bottom: 1.25rem;
}

.footer-nav__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
}

.footer-nav__list a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--muted);
}

.footer-nav__list a:hover {
  color: var(--accent);
}

.site-footer__disclaimer {
  font-size: 0.75rem;
  color: var(--muted-dark);
  margin-bottom: 0.5rem;
}

.site-footer__copy {
  font-size: 0.75rem;
  color: var(--muted-dark);
}

/* --- Animations --- */
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

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

@keyframes fade-in {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

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

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

@keyframes captcha-shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-6px); }
  40% { transform: translateX(6px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
}

@keyframes verify-enter {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes captcha-hide {
  to { opacity: 0; transform: scale(0.98); }
}

@keyframes captcha-failed-in {
  from { opacity: 0; transform: scale(0.92) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

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

/* --- Responsive --- */

/* 480px+ */
@media (min-width: 480px) {
  .nav__logo-icon-img {
    width: 32px;
    height: 32px;
    max-width: 32px;
    max-height: 32px;
  }

  .generator-form {
    flex-direction: row;
    align-items: stretch;
  }

  .generator-form .btn--primary {
    flex-shrink: 0;
  }
}

/* 768px+ */
@media (min-width: 768px) {
  .nav__links {
    display: flex;
    gap: 1.25rem;
  }

  .nav__links a {
    font-size: 0.8125rem;
    white-space: nowrap;
  }

  .hero__layout {
    grid-template-columns: 1fr 320px;
    align-items: start;
  }
}

/* 1024px+ */
@media (min-width: 1024px) {
  .nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1.5rem;
  }

  .nav__logo {
    justify-self: start;
  }

  .nav__links {
    gap: 2rem;
    justify-self: center;
  }

  .nav__links a {
    font-size: 0.875rem;
  }

  .nav__cta {
    justify-self: end;
  }

  .content-section h2 {
    text-align: center;
  }

  .content-section .container > p {
    text-align: center;
  }

  .content-section .info-box,
  .content-section .steps-list,
  .content-section .faq-list {
    text-align: left;
  }

  .content-section .info-box p {
    text-align: left;
  }

  .hero__layout {
    grid-template-columns: 1fr 340px;
    gap: 1.5rem;
  }
}

/* 1440px+ */
@media (min-width: 1440px) {
  .hero__layout {
    grid-template-columns: 1fr 380px;
    gap: 2rem;
  }
}
