/* ==========================================================
   eBay Views Generator — Clean Dark Theme with Neon Accents
   ========================================================== */

/* RESET */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Backgrounds */
  --bg:         #08080f;
  --bg-raised:  #0e0e18;
  --bg-card:    #111120;
  --bg-input:   #0c0c18;
  --bg-hover:   #161628;

  /* Borders */
  --border:       rgba(255, 255, 255, 0.06);
  --border-mild:  rgba(255, 255, 255, 0.09);
  --border-focus: rgba(80, 220, 180, 0.55);

  /* Neon accent — electric teal-green */
  --neon:          #3dffc0;
  --neon-dim:      rgba(61, 255, 192, 0.18);
  --neon-border:   rgba(61, 255, 192, 0.35);
  --neon-glow:     0 0 16px rgba(61, 255, 192, 0.25);

  /* Text */
  --t1: #eeeeff;
  --t2: #7d7d9c;
  --t3: #4e4e6e;

  /* Status */
  --green:  #28c77e;
  --red:    #e55e6a;
  --amber:  #e5a930;
  --blue:   #4da3f5;

  /* Radii */
  --r-sm:   5px;
  --r-md:   10px;
  --r-lg:   16px;
  --r-xl:   20px;

  /* Font */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background-color: rgb(14, 14, 14);
}

body {
  font-family: var(--font);
  background-image:
    radial-gradient(circle 5px at top left, rgba(226, 226, 226,0.045) 0%, rgba(226, 226, 226,0.045) 50%,rgba(201, 201, 201,0.045) 50%, rgba(201, 201, 201,0.045) 30%,transparent 30%, transparent 50%),
    linear-gradient(90deg, rgb(14,14,14),rgb(14,14,14));
  background-size: 11px 11px;
  animation: bgDrift 28s linear infinite;
  color: var(--t1);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  padding-bottom: env(safe-area-inset-bottom);
}

@keyframes bgDrift {
  0%   { background-position: 0 0; }
  100% { background-position: 110px 110px; }
}

/* LAYOUT */
.container {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================================================
   SKELETON PRELOADER
   ========================================================= */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-image:
    radial-gradient(circle 5px at top left, rgba(226, 226, 226,0.045) 0%, rgba(226, 226, 226,0.045) 50%,rgba(201, 201, 201,0.045) 50%, rgba(201, 201, 201,0.045) 30%,transparent 30%, transparent 50%),
    linear-gradient(90deg, rgb(14,14,14),rgb(14,14,14));
  background-size: 11px 11px;
  overflow: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.preloader-done {
  opacity: 0;
}

.pre-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  padding: 0 20px;
  max-width: 820px;
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
}

.pre-hero {
  padding-top: 52px;
}

.skel {
  border-radius: 6px;
  background: linear-gradient(90deg, rgba(255,255,255,0.04) 25%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.04) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
}

@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.pre-logo  { width: 140px; height: 20px; }
.pre-nav   { width: 120px; height: 16px; }
.pre-chip  { width: 200px; height: 26px; border-radius: 999px; margin-bottom: 20px; }
.pre-h1    { width: 60%; height: 44px; margin-bottom: 14px; border-radius: 8px; }
.pre-desc  { width: 80%; height: 18px; margin-bottom: 36px; }
.pre-card  { width: 100%; height: 320px; border-radius: 20px; }

/* =========================================================
   ANNOUNCEMENT BANNER
   ========================================================= */
.announce-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 20px;
  background: rgba(61, 255, 192, 0.06);
  border-bottom: 1px solid rgba(61, 255, 192, 0.15);
  font-size: 0.78rem;
  color: var(--t2);
  text-align: center;
  line-height: 1.4;
}

.announce-bar svg {
  width: 13px;
  height: 13px;
  color: var(--neon);
  flex-shrink: 0;
}

.announce-bar strong {
  color: var(--neon);
  font-weight: 600;
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 8, 15, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-wordmark {
  font-size: 1rem;
  font-weight: 700;
  color: var(--t1);
  letter-spacing: -0.03em;
}

.logo-tld {
  color: var(--neon);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-nav a {
  font-size: 0.82rem;
  color: var(--t2);
  text-decoration: none;
  transition: color 0.15s var(--ease);
}

.header-nav a:hover {
  color: var(--t1);
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  padding: 52px 0 40px;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--t2);
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 20px;
  letter-spacing: 0.015em;
}

.chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  flex-shrink: 0;
  animation: blink 2.5s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}

h1 {
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  color: var(--t1);
  line-height: 1.1;
  margin-bottom: 14px;
}

/* Expo-marker highlight on "Free" in the H1 */
.h1-mark {
  color: var(--neon);
  position: relative;
  display: inline-block;
  /* Curvy SVG marker stroke as background — sits under the text */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 18' preserveAspectRatio='none'%3E%3Cpath d='M3,9 C28,4 58,14 90,8 C118,3 155,13 197,7 L200,15 C158,20 120,11 90,16 C58,21 26,11 0,16 Z' fill='%233dffc0' fill-opacity='0.38'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 0 95%;
  background-size: 100% 0.45em;
  padding-bottom: 0.08em;
}

.hero-desc {
  font-size: 0.95rem;
  color: var(--t2);
  max-width: 500px;
  line-height: 1.65;
  margin-bottom: 36px;
}

/* =========================================================
   TOOL CARD
   ========================================================= */
.tool-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 0;
  margin-bottom: 48px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.45);
  position: relative;
}

/* Top accent line */
.tool-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--neon-border) 50%, transparent 100%);
}

.card-top-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.015);
}

.card-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  flex-shrink: 0;
  animation: blink 2.5s ease-in-out infinite;
}

.card-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--t2);
  flex: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.uses-counter {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.73rem;
  font-weight: 500;
  color: var(--t2);
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px 10px;
}

.uses-counter svg {
  color: var(--t3);
}

/* FORM BODY */
form {
  padding: 24px 24px 0;
}

/* =========================================================
   FIELDS
   ========================================================= */
.field-group {
  margin-bottom: 22px;
}

.field-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--t2);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.field-hint {
  font-size: 0.72rem;
  color: var(--t3);
  margin-top: 6px;
}

/* URL input row */
.field-row {
  display: flex;
  gap: 8px;
}

.input-wrap {
  position: relative;
  flex: 1;
}

.input-prefix-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  color: var(--t3);
  pointer-events: none;
}

.url-input {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid var(--border-mild);
  border-radius: var(--r-md);
  color: var(--t1);
  font-family: var(--font);
  font-size: 0.88rem;
  padding: 11px 14px 11px 36px;
  outline: none;
  transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease);
  caret-color: var(--neon);
}

.url-input::placeholder {
  color: var(--t3);
  font-size: 0.85rem;
}

.url-input:focus {
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px rgba(61, 255, 192, 0.08);
}

.url-input.is-error {
  border-color: rgba(229, 94, 106, 0.5);
  box-shadow: 0 0 0 3px rgba(229, 94, 106, 0.08);
}

/* PASTE BUTTON */
.paste-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid var(--border-mild);
  border-radius: var(--r-md);
  color: var(--t2);
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0 14px;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.15s var(--ease), color 0.15s var(--ease), background 0.15s var(--ease);
  height: 41px;
}

.paste-btn svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

.paste-btn:hover {
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--t1);
  background: rgba(255, 255, 255, 0.03);
}

.paste-btn:active {
  transform: scale(0.97);
}

/* =========================================================
   SLIDER
   ========================================================= */
.slider-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.slider-output {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--neon);
  font-variant-numeric: tabular-nums;
  min-width: 36px;
  text-align: right;
  letter-spacing: -0.02em;
}

.slider-wrap {
  position: relative;
  width: 100%;
}

.view-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: var(--bg-raised);
  border-radius: 99px;
  outline: none;
  cursor: pointer;
  border: 1px solid var(--border);
}

/* Filled track (JS-driven background) */
.view-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--neon);
  box-shadow: 0 0 10px rgba(61, 255, 192, 0.4);
  cursor: pointer;
  transition: box-shadow 0.15s var(--ease), transform 0.1s var(--ease);
}

.view-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--neon);
  box-shadow: 0 0 10px rgba(61, 255, 192, 0.4);
  cursor: pointer;
  transition: box-shadow 0.15s var(--ease);
}

.view-slider:hover::-webkit-slider-thumb,
.view-slider:focus::-webkit-slider-thumb {
  box-shadow: 0 0 18px rgba(61, 255, 192, 0.6);
  transform: scale(1.1);
}

.view-slider:hover::-moz-range-thumb,
.view-slider:focus::-moz-range-thumb {
  box-shadow: 0 0 18px rgba(61, 255, 192, 0.6);
}

.slider-range-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  font-size: 0.68rem;
  color: var(--t3);
}

/* =========================================================
   RECAPTCHA
   ========================================================= */
.recaptcha-group {
  margin-bottom: 20px;
}

/* =========================================================
   SUBMIT BUTTON — Neon outline style
   ========================================================= */
.submit-btn {
  display: block;
  width: calc(100% - 0px);
  margin: 0 0 24px;
  background: transparent;
  border: 1.5px solid var(--neon-border);
  border-radius: var(--r-md);
  color: var(--neon);
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 13px 20px;
  cursor: pointer;
  letter-spacing: 0.01em;
  transition:
    border-color 0.15s var(--ease),
    box-shadow 0.15s var(--ease),
    background 0.15s var(--ease),
    color 0.15s var(--ease);
  text-align: center;
}

.submit-btn:hover:not(:disabled) {
  border-color: var(--neon);
  background: rgba(61, 255, 192, 0.05);
  box-shadow: 0 0 20px rgba(61, 255, 192, 0.18), inset 0 0 20px rgba(61, 255, 192, 0.04);
}

.submit-btn:active:not(:disabled) {
  transform: scale(0.991);
}

.submit-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  border-color: var(--border-mild);
  color: var(--t2);
}

.btn-inner,
.btn-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-inner svg,
.btn-loading svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.spin-icon {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* =========================================================
   STATUS PANEL
   ========================================================= */
.status-panel {
  border-top: 1px solid var(--border);
  padding: 20px 24px 24px;
}

/* Idle */
.s-idle {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--t3);
  font-size: 0.85rem;
}

.s-idle svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--t3);
}

.s-idle p strong {
  color: var(--t2);
}

/* Active — progress */
.s-active {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.progress-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.progress-text {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--t1);
}

.progress-num {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--neon);
  font-variant-numeric: tabular-nums;
}

.progress-track {
  width: 100%;
  height: 3px;
  background: var(--bg-raised);
  border-radius: 99px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: var(--neon);
  border-radius: 99px;
  transition: width 0.4s ease;
  box-shadow: 0 0 6px rgba(61, 255, 192, 0.5);
}

/* Log stream */
.log-stream {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: 140px;
  overflow-y: auto;
  padding: 2px 0;
}

.log-stream::-webkit-scrollbar {
  width: 3px;
}
.log-stream::-webkit-scrollbar-track {
  background: transparent;
}
.log-stream::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 2px;
}

.log-line {
  display: flex;
  align-items: baseline;
  gap: 7px;
  font-size: 0.73rem;
  color: var(--t2);
  animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(2px); }
  to   { opacity: 1; transform: none; }
}

.log-line::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--t3);
  flex-shrink: 0;
  margin-top: 2px;
  align-self: flex-start;
  position: relative;
  top: 4px;
}

.log-line.ok::before   { background: var(--green); }
.log-line.err::before  { background: var(--red); }
.log-line.info::before { background: var(--blue); }
.log-line.seo::before  { background: var(--amber); }

/* Done */
.s-done {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.s-done svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--green);
  margin-top: 2px;
}

.s-done-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}

.s-done-text strong {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--t1);
}

.s-done-text span {
  font-size: 0.78rem;
  color: var(--t2);
  line-height: 1.5;
}

.powered-by {
  font-size: 0.72rem !important;
  color: var(--t3) !important;
  margin-top: 4px;
}

.powered-by a {
  color: var(--neon);
  text-decoration: none;
  opacity: 0.75;
}

.powered-by a:hover {
  opacity: 1;
}

/* Error */
.s-error {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.s-error svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--red);
  margin-top: 2px;
}

.s-error-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}

.s-error-text strong {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--t1);
}

.s-error-text span {
  font-size: 0.78rem;
  color: var(--t2);
}

/* Ghost button (reset/run-again) */
.ghost-btn {
  background: none;
  border: 1px solid var(--border-mild);
  border-radius: var(--r-sm);
  color: var(--t2);
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 6px 12px;
  cursor: pointer;
  flex-shrink: 0;
  align-self: flex-start;
  transition: border-color 0.15s var(--ease), color 0.15s var(--ease);
  white-space: nowrap;
}

.ghost-btn:hover {
  border-color: var(--border-mild);
  color: var(--t1);
}

/* =========================================================
   HOW IT WORKS
   ========================================================= */
.how-section {
  margin-bottom: 48px;
}

.how-section h2 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--t1);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
}

.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px;
  transition: border-color 0.2s var(--ease);
}

.step:hover {
  border-color: var(--border-mild);
}

.step-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: var(--neon-dim);
  border: 1px solid var(--neon-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.step-icon svg {
  width: 16px;
  height: 16px;
  color: var(--neon);
}

.step h3 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--t1);
  margin-bottom: 6px;
}

.step p {
  font-size: 0.78rem;
  color: var(--t2);
  line-height: 1.6;
}

/* =========================================================
   FLIPFORCE BANNER
   ========================================================= */
.powered-by-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 28px 0 16px;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.divider-text {
  font-size: 0.72rem;
  color: var(--t2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.flipforce-banner {
  display: block;
  margin: 24px 0 40px;
  border-radius: 12px;
  overflow: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease;
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 55%, transparent 100%);
  mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 55%, transparent 100%);
}

.flipforce-banner:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.flipforce-banner img {
  display: block;
  width: 100%;
  height: auto;
}

/* =========================================================
   UPGRADE BAR
   ========================================================= */
.upgrade-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 16px 20px;
  margin-bottom: 60px;
}

.upgrade-bar-left {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.upgrade-bar-left svg {
  width: 16px;
  height: 16px;
  color: var(--neon);
  flex-shrink: 0;
  margin-top: 1px;
}

.upgrade-bar-left div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.upgrade-bar-left strong {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--t1);
}

.upgrade-bar-left span {
  font-size: 0.77rem;
  color: var(--t2);
}

.upgrade-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1.5px solid var(--neon-border);
  border-radius: var(--r-sm);
  color: var(--neon);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 14px;
  white-space: nowrap;
  transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease), background 0.15s var(--ease);
}

.upgrade-link svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

.upgrade-link:hover {
  border-color: var(--neon);
  background: rgba(61, 255, 192, 0.05);
  box-shadow: 0 0 14px rgba(61, 255, 192, 0.15);
}

/* =========================================================
   INFO / SEO SECTION
   ========================================================= */
.info-section {
  background: var(--bg-raised);
  border-top: 1px solid var(--border);
  padding: 64px 0;
}

.info-section h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--t1);
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-bottom: 48px;
}

.info-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px;
}

.info-block h3 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--t1);
  margin-bottom: 8px;
}

.info-block p {
  font-size: 0.8rem;
  color: var(--t2);
  line-height: 1.7;
}

.info-block strong {
  color: var(--t1);
}

.info-block a {
  color: var(--neon);
  text-decoration: none;
  opacity: 0.85;
}

.info-block a:hover {
  opacity: 1;
}

/* FAQ */
.faq-section {
  max-width: 620px;
}

.faq-section h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--t1);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color 0.15s var(--ease);
}

.faq-item:hover {
  border-color: var(--border-mild);
}

.faq-item[open] {
  border-color: var(--border-mild);
}

.faq-item summary {
  list-style: none;
  padding: 14px 16px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--t1);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  user-select: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1rem;
  font-weight: 300;
  color: var(--t3);
  flex-shrink: 0;
  transition: transform 0.15s var(--ease), color 0.15s var(--ease);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
  color: var(--neon);
}

.faq-item p {
  padding: 0 16px 14px;
  font-size: 0.78rem;
  color: var(--t2);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 10px;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--t3);
}

.footer-copy a {
  color: var(--t3);
  text-decoration: none;
  transition: color 0.15s var(--ease);
}

.footer-copy a:hover {
  color: var(--t2);
}

.footer-links {
  display: flex;
  gap: 16px;
}

.footer-links a {
  font-size: 0.75rem;
  color: var(--t3);
  text-decoration: none;
  transition: color 0.15s var(--ease);
}

.footer-links a:hover {
  color: var(--t2);
}

/* =========================================================
   MODAL
   ========================================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: overlayIn 0.15s ease;
}

@keyframes overlayIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.modal-box {
  background: var(--bg-card);
  border: 1px solid var(--border-mild);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  max-width: 400px;
  width: 100%;
  position: relative;
  animation: boxIn 0.2s cubic-bezier(0.34, 1.3, 0.64, 1);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
}

/* Top accent */
.modal-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-border), transparent);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
}

@keyframes boxIn {
  from { opacity: 0; transform: translateY(12px) scale(0.97); }
  to   { opacity: 1; transform: none; }
}

.modal-dismiss {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--t3);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.15s var(--ease), color 0.15s var(--ease);
}

.modal-dismiss svg {
  width: 13px;
  height: 13px;
}

.modal-dismiss:hover {
  border-color: var(--border-mild);
  color: var(--t2);
}

.modal-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: rgba(229, 94, 106, 0.1);
  border: 1px solid rgba(229, 94, 106, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.modal-icon-wrap svg {
  width: 20px;
  height: 20px;
  color: var(--red);
}

.modal-box h2 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--t1);
  letter-spacing: -0.025em;
  margin-bottom: 10px;
}

.modal-box p {
  font-size: 0.82rem;
  color: var(--t2);
  line-height: 1.65;
  margin-bottom: 8px;
}

.modal-box p strong {
  color: var(--t1);
}

.modal-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 20px;
  padding: 13px 16px;
  background: transparent;
  border: 1.5px solid var(--neon-border);
  border-radius: var(--r-md);
  color: var(--neon);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 600;
  transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease), background 0.15s var(--ease);
}

.modal-cta svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.modal-cta:hover {
  border-color: var(--neon);
  background: rgba(61, 255, 192, 0.05);
  box-shadow: 0 0 18px rgba(61, 255, 192, 0.15);
}

.modal-skip {
  display: block;
  width: 100%;
  margin-top: 10px;
  background: none;
  border: none;
  color: var(--t3);
  font-family: var(--font);
  font-size: 0.77rem;
  cursor: pointer;
  padding: 6px;
  text-align: center;
  transition: color 0.15s var(--ease);
}

.modal-skip:hover {
  color: var(--t2);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 600px) {
  .hero {
    padding: 36px 0 28px;
  }

  h1 {
    font-size: 1.7rem;
  }

  form {
    padding: 18px 16px 0;
  }

  .status-panel {
    padding: 16px 16px 20px;
  }

  .card-top-bar {
    padding: 12px 16px;
  }

  .field-row {
    flex-direction: column;
  }

  .paste-btn {
    width: 100%;
    justify-content: center;
    height: 40px;
  }

  .upgrade-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .upgrade-link {
    width: 100%;
    justify-content: center;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .g-recaptcha {
    transform: scale(0.88);
    transform-origin: 0 0;
  }
}

/* =========================================================
   COOKIE CONSENT BANNER
   ========================================================= */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 500;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  background: rgba(17, 17, 32, 0.96);
  border: 1px solid var(--border-mild);
  border-radius: var(--r-lg);
  padding: 12px 16px;
  max-width: 600px;
  width: calc(100% - 32px);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  animation: slideUp 0.3s cubic-bezier(0.34, 1.3, 0.64, 1);
}

@keyframes slideUp {
  from { opacity: 0; transform: translateX(-50%) translateY(16px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.cookie-text {
  font-size: 0.78rem;
  color: var(--t2);
  flex: 1;
  min-width: 200px;
  line-height: 1.5;
}

.cookie-text a {
  color: var(--neon);
  text-decoration: none;
  opacity: 0.8;
}

.cookie-text a:hover {
  opacity: 1;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.cookie-accept {
  background: transparent;
  border: 1px solid var(--neon-border);
  border-radius: var(--r-sm);
  color: var(--neon);
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 14px;
  cursor: pointer;
  transition: border-color 0.15s var(--ease), background 0.15s var(--ease);
  white-space: nowrap;
}

.cookie-accept:hover {
  border-color: var(--neon);
  background: rgba(61, 255, 192, 0.06);
}

.cookie-dismiss {
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--t3);
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.15s var(--ease), color 0.15s var(--ease);
  flex-shrink: 0;
}

.cookie-dismiss:hover {
  border-color: var(--border-mild);
  color: var(--t2);
}

@media (max-width: 480px) {
  .cookie-banner {
    bottom: 12px;
    padding: 10px 12px;
    gap: 10px;
  }
}
