@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&family=JetBrains+Mono:wght@400;500;600;700&display=swap');

/* ─── TOKENS ─────────────────────────────────────────────────── */
:root {
  --bg-void:    #010410;
  --bg-deep:    #05091A;
  --bg-surface: #090F21;
  --bg-raised:  #0D1428;

  /* liquid glass vars */
  --lg-bg:        rgba(255,255,255,0.055);
  --lg-bg-hover:  rgba(255,255,255,0.09);
  --lg-border:    rgba(255,255,255,0.115);
  --lg-border-hov:rgba(255,255,255,0.22);
  --lg-specular:  rgba(255,255,255,0.20);
  --lg-blur:      blur(52px) saturate(220%) brightness(1.04);

  /* keep compat aliases */
  --bg-glass:     rgba(255,255,255,0.055);
  --bg-glass-hov: rgba(255,255,255,0.09);
  --border:       rgba(255,255,255,0.07);
  --border-md:    rgba(255,255,255,0.12);
  --border-accent:rgba(15,212,144,0.32);

  --accent:      #0FD490;
  --accent-dim:  rgba(15,212,144,0.10);
  --accent-glow: rgba(15,212,144,0.30);

  --blue:        #4F8EF7;
  --blue-glow:   rgba(79,142,247,0.30);
  --purple:      #7B36EB;
  --purple-light:#A855F7;
  --purple-glow: rgba(123,54,235,0.30);
  --cyan:        #24D8F2;
  --cyan-glow:   rgba(36,216,242,0.22);

  --txt-primary:   #ECF2FF;
  --txt-secondary: #8896BB;
  --txt-muted:     #3C4E68;

  --green:  #0FD490;
  --orange: #F59E0B;
  --red:    #F04A4A;
  --green-glow:  rgba(15,212,144,0.28);
  --orange-glow: rgba(245,158,11,0.28);
  --red-glow:    rgba(240,74,74,0.28);

  --grad:     linear-gradient(135deg, #7B36EB 0%, #4F8EF7 100%);
  --grad-text:linear-gradient(135deg, #C084FC 0%, #60A5FA 100%);
  --grad-glow:linear-gradient(135deg, rgba(123,54,235,0.30), rgba(79,142,247,0.30));

  --font-display: 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  --r:    16px;
  --r-sm: 10px;
  --r-lg: 24px;
  --r-xl: 32px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t:    0.3s var(--ease);
}

/* ─── RESET ──────────────────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  background: var(--bg-void);
  color: var(--txt-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
input { font: inherit; color: inherit; }

/* ─── GLOBAL AURORA MESH ─────────────────────────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 10% 15%, rgba(15,212,144,0.08) 0%, transparent 62%),
    radial-gradient(ellipse 65% 70% at 88% 8%,  rgba(123,54,235,0.09) 0%, transparent 58%),
    radial-gradient(ellipse 55% 50% at 50% 82%, rgba(79,142,247,0.07) 0%, transparent 58%),
    radial-gradient(ellipse 42% 38% at 82% 58%, rgba(36,216,242,0.05) 0%, transparent 52%);
  pointer-events: none;
  z-index: 0;
}

/* ─── NOISE TEXTURE ──────────────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.88' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.020;
  pointer-events: none;
  z-index: 9999;
}

/* ─── TYPOGRAPHY ─────────────────────────────────────────────── */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.034em;
}
.display-lg {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.028em;
  line-height: 1.12;
}
.display-md {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.875rem);
  font-weight: 700;
  letter-spacing: -0.022em;
}
.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.mono { font-family: var(--font-mono); }

/* ─── LAYOUT ─────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}
.section { padding-block: clamp(4rem, 8vw, 7rem); }

/* ─── GRID BG ────────────────────────────────────────────────── */
.grid-bg {
  background-image:
    linear-gradient(rgba(79,142,247,0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79,142,247,0.032) 1px, transparent 1px);
  background-size: 64px 64px;
}

/* ─── ORB HELPERS ────────────────────────────────────────────── */
.orb { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.orb-purple { background: radial-gradient(circle, rgba(123,54,235,0.5), transparent 70%); }
.orb-blue   { background: radial-gradient(circle, rgba(79,142,247,0.4), transparent 70%); }
.orb-cyan   { background: radial-gradient(circle, rgba(36,216,242,0.3), transparent 70%); }

/* ─── NAVBAR — floating pill ──────────────────────────────── */
.navbar {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: max-content;
  max-width: calc(100vw - 32px);
  border-radius: 100px;
  background: rgba(4,7,20,0.58);
  backdrop-filter: blur(60px) saturate(240%) brightness(1.04);
  -webkit-backdrop-filter: blur(60px) saturate(240%) brightness(1.04);
  border: 1px solid rgba(255,255,255,0.13);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    inset 0 -1px 0 rgba(0,0,0,0.12),
    0 24px 64px rgba(0,0,0,0.38),
    0 4px 16px rgba(0,0,0,0.20);
  overflow: visible;
  transition: background 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
}
.navbar.scrolled {
  background: rgba(2,4,14,0.86);
  border-color: rgba(255,255,255,0.09);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.10),
    0 32px 80px rgba(0,0,0,0.52);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 7px 10px 7px 14px;
  height: 50px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.97rem;
  letter-spacing: -0.025em;
  white-space: nowrap;
  padding-right: 14px;
  border-right: 1px solid rgba(255,255,255,0.08);
  margin-right: 4px;
}
.nav-logo-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.64rem; font-weight: 800;
  box-shadow: 0 0 14px var(--purple-glow);
  position: relative;
  flex-shrink: 0;
}
.nav-logo-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(160deg, rgba(255,255,255,0.18) 0%, transparent 55%);
  pointer-events: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  position: relative;
}
.nav-indicator {
  position: absolute;
  height: 30px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  pointer-events: none;
  opacity: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 0.22s ease, left 0.34s cubic-bezier(0.16,1,0.3,1), width 0.34s cubic-bezier(0.16,1,0.3,1);
}
.nav-links a {
  padding: 6px 13px;
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--txt-secondary);
  transition: color 0.25s ease;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}
.nav-links a:hover { color: var(--txt-primary); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-left: 4px;
  padding-left: 10px;
  border-left: 1px solid rgba(255,255,255,0.08);
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-logo { padding-right: 0; border-right: none; margin-right: 0; }
  .nav-actions { border-left: none; margin-left: 0; padding-left: 0; }
}

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--t);
  white-space: nowrap;
  position: relative;
}
.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 2px 24px rgba(123,54,235,0.28);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--r-sm) - 1px);
  background: linear-gradient(160deg, rgba(255,255,255,0.16) 0%, transparent 52%);
  pointer-events: none;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(123,54,235,0.48), 0 0 0 1px rgba(123,54,235,0.22);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--txt-secondary);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.10);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.095);
  color: var(--txt-primary);
  border-color: rgba(255,255,255,0.20);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.16);
}

.btn-outline-purple {
  background: rgba(123,54,235,0.09);
  border: 1px solid rgba(123,54,235,0.40);
  color: var(--purple-light);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.btn-outline-purple:hover {
  background: rgba(123,54,235,0.16);
  box-shadow: 0 0 24px rgba(123,54,235,0.30);
}

.btn-sm  { padding: 8px 16px; font-size: 0.83rem; }
.btn-lg  { padding: 16px 32px; font-size: 1.05rem; border-radius: var(--r); }
.btn-xl  { padding: 18px 36px; font-size: 1.1rem;  border-radius: var(--r); }

/* ─── LIQUID GLASS CARD ──────────────────────────────────────── */
.card {
  position: relative;
  background: var(--lg-bg);
  backdrop-filter: var(--lg-blur);
  -webkit-backdrop-filter: var(--lg-blur);
  border: 1px solid var(--lg-border);
  border-radius: var(--r);
  padding: 24px;
  transition: var(--t);
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 var(--lg-specular),
    inset 0 -1px 0 rgba(0,0,0,0.10),
    0 20px 60px rgba(0,0,0,0.42);
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(155deg, rgba(255,255,255,0.06) 0%, transparent 42%);
  pointer-events: none;
}
.card:hover {
  background: var(--lg-bg-hover);
  border-color: var(--lg-border-hov);
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.26),
    inset 0 -1px 0 rgba(0,0,0,0.12),
    0 28px 72px rgba(0,0,0,0.50);
}

.card-accent-purple { border-top: 1.5px solid var(--purple); }
.card-accent-blue   { border-top: 1.5px solid var(--blue); }
.card-accent-cyan   { border-top: 1.5px solid var(--cyan); }

/* ─── BADGES ─────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--font-mono);
  letter-spacing: 0.03em;
}
.badge-critique    { background: rgba(240,74,74,0.12);   color: #FCA5A5; border: 1px solid rgba(240,74,74,0.22); }
.badge-important   { background: rgba(245,158,11,0.12);  color: #FCD34D; border: 1px solid rgba(245,158,11,0.22); }
.badge-amelioration{ background: rgba(36,216,242,0.10);  color: var(--cyan); border: 1px solid rgba(36,216,242,0.18); }
.badge-ok          { background: rgba(15,212,144,0.12);  color: #6EE7B7; border: 1px solid rgba(15,212,144,0.22); }
.badge-alerte      { background: rgba(240,74,74,0.12);   color: #FCA5A5; border: 1px solid rgba(240,74,74,0.22); }
.badge-free        { background: rgba(255,255,255,0.06); color: var(--txt-secondary); border: 1px solid rgba(255,255,255,0.12); }
.badge-pro         { background: rgba(123,54,235,0.18);  color: #C084FC; border: 1px solid rgba(123,54,235,0.40); }

/* ─── SCORE COLORS ───────────────────────────────────────────── */
.score-green  { color: var(--green); }
.score-orange { color: var(--orange); }
.score-red    { color: var(--red); }
.score-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.9rem;
}
.score-badge-green  { background: rgba(15,212,144,0.12); color: var(--green);  border: 1px solid rgba(15,212,144,0.22); }
.score-badge-orange { background: rgba(245,158,11,0.12); color: var(--orange); border: 1px solid rgba(245,158,11,0.22); }
.score-badge-red    { background: rgba(240,74,74,0.12);  color: var(--red);    border: 1px solid rgba(240,74,74,0.22); }

/* ─── PROGRESS BARS ──────────────────────────────────────────── */
.progress-track {
  width: 100%;
  height: 5px;
  background: rgba(255,255,255,0.07);
  border-radius: 100px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  border-radius: 100px;
  transition: width 1s var(--ease);
  position: relative;
}
.progress-fill::after {
  content: '';
  position: absolute;
  right: -2px; top: 50%;
  transform: translateY(-50%);
  width: 9px; height: 9px;
  border-radius: 50%;
  background: inherit;
  filter: brightness(1.6);
  box-shadow: 0 0 8px currentColor;
}
.progress-purple { background: var(--grad); }
.progress-green  { background: linear-gradient(90deg, var(--green), #4AE9B2); }
.progress-orange { background: linear-gradient(90deg, var(--orange), #FCD34D); }
.progress-red    { background: linear-gradient(90deg, var(--red), #FCA5A5); }

/* ─── CIRCULAR GAUGE ─────────────────────────────────────────── */
.gauge-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.gauge-svg { transform: rotate(-90deg); }
.gauge-track { fill: none; stroke: rgba(255,255,255,0.07); stroke-width: 7; }
.gauge-fill  {
  fill: none;
  stroke-width: 7;
  stroke-linecap: round;
  stroke-dasharray: 0 1000;
  transition: stroke-dasharray 1.5s var(--ease), stroke 0.5s;
}
.gauge-center {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 2px;
}
.gauge-number { font-family: var(--font-mono); font-weight: 700; line-height: 1; }
.gauge-label  {
  font-size: 0.73rem;
  color: var(--txt-muted);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ─── STAT PILL ──────────────────────────────────────────────── */
.stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 18px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  font-size: 0.86rem;
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.14);
}
.stat-pill-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green-glow);
  animation: pulse 2.2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.65; transform: scale(1.35); }
}

/* ─── URL INPUT ──────────────────────────────────────────────── */
.url-form {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 680px;
}
.url-input-wrap {
  flex: 1;
  position: relative;
}
.url-input-wrap .url-icon {
  position: absolute;
  left: 18px; top: 50%;
  transform: translateY(-50%);
  color: var(--txt-muted);
  pointer-events: none;
  font-size: 0.82rem;
  font-family: var(--font-mono);
}
.url-input {
  width: 100%;
  padding: 18px 20px 18px 80px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r);
  font-size: 1rem;
  font-family: var(--font-mono);
  color: var(--txt-primary);
  outline: none;
  transition: var(--t);
  backdrop-filter: blur(32px) saturate(200%);
  -webkit-backdrop-filter: blur(32px) saturate(200%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.09);
}
.url-input::placeholder { color: var(--txt-muted); font-family: var(--font-body); }
.url-input:focus {
  border-color: rgba(123,54,235,0.55);
  background: rgba(123,54,235,0.06);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 0 0 4px rgba(123,54,235,0.14),
    0 0 40px rgba(123,54,235,0.09);
}

/* ─── CATEGORY ROW ───────────────────────────────────────────── */
.cat-row { display: flex; align-items: center; gap: 16px; }
.cat-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  background: var(--bg-raised);
}
.cat-info { flex: 1; min-width: 0; }
.cat-name { font-weight: 600; font-size: 0.9rem; margin-bottom: 6px; }
.cat-score { font-family: var(--font-mono); font-size: 0.8rem; color: var(--txt-muted); }
.cat-pts { font-weight: 600; }

/* ─── DIVIDER ────────────────────────────────────────────────── */
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.10), transparent);
}

/* ─── TABLE ──────────────────────────────────────────────────── */
.sa-table { width: 100%; border-collapse: collapse; }
.sa-table th {
  text-align: left;
  padding: 12px 16px;
  font-size: 0.76rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--txt-muted);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.sa-table td {
  padding: 14px 16px;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: var(--txt-secondary);
}
.sa-table tr:last-child td { border-bottom: none; }
.sa-table tr:hover td { background: rgba(255,255,255,0.03); }
.sa-table td:first-child { color: var(--txt-primary); font-weight: 500; }

/* ─── REVEAL ─────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1), transform 0.75s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* ─── ADVANCED REVEAL VARIANTS ───────────────────────────────── */
.reveal-left {
  opacity: 0;
  transform: translateX(-40px) scale(0.97);
  transition: opacity 0.85s cubic-bezier(0.16,1,0.3,1), transform 0.85s cubic-bezier(0.16,1,0.3,1);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px) scale(0.97);
  transition: opacity 0.85s cubic-bezier(0.16,1,0.3,1), transform 0.85s cubic-bezier(0.16,1,0.3,1);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.92) translateY(16px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.reveal-left.visible,
.reveal-right.visible { opacity: 1; transform: translateX(0) scale(1); }
.reveal-scale.visible { opacity: 1; transform: scale(1) translateY(0); }

.reveal-d0  { transition-delay: 0s; }
.reveal-d1  { transition-delay: 0.08s; }
.reveal-d2  { transition-delay: 0.16s; }
.reveal-d3  { transition-delay: 0.24s; }
.reveal-d4  { transition-delay: 0.32s; }
.reveal-d5  { transition-delay: 0.40s; }
.reveal-d6  { transition-delay: 0.50s; }

/* icon pop */
.why-card-icon {
  transition: transform 0.6s cubic-bezier(0.34,1.56,0.64,1);
}
.reveal-left.visible .why-card-icon,
.reveal-right.visible .why-card-icon,
.reveal-scale.visible .why-card-icon { transform: scale(1.05) rotate(-4deg); }
.why-card-icon:hover { transform: scale(1.12) rotate(-8deg) !important; }

/* ─── SECTION HEADERS ────────────────────────────────────────── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(15,212,144,0.09);
  border: 1px solid rgba(15,212,144,0.24);
  border-radius: 100px;
  font-size: 0.75rem; font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .url-form { flex-direction: column; }
  .nav-links .btn-ghost { display: none; }
}
@media (max-width: 480px) {
  .url-input { padding: 16px 16px 16px 44px; font-size: 0.9rem; }
}