/* APKchemy — palette from logo: neon green → white → cyan/purple */
:root {
  --bg: #0b0f14;
  --card: #121a23;
  --primary: #19f57a;
  --cyan: #12d7c5;
  --cyan-purple: #7b68ee;
  --text: #e8f1f2;
  --muted: #22303a;
  /* Logo-colored glows (for gradients) */
  --glow: rgba(25, 245, 122, 0.35);
  --glow-cyan: rgba(18, 215, 197, 0.25);
  --glow-white: rgba(232, 241, 242, 0.12);
  --glow-purple: rgba(123, 104, 238, 0.2);
  /* Full logo gradient: green → white → cyan → purple */
  --gradient-brand: linear-gradient(90deg, var(--primary) 0%, var(--text) 45%, var(--cyan) 75%, var(--cyan-purple) 100%);
  --gradient-brand-soft: radial-gradient(ellipse 80% 60% at 50% 0%,
    rgba(25, 245, 122, 0.35) 0%,
    rgba(232, 241, 242, 0.12) 35%,
    rgba(18, 215, 197, 0.28) 60%,
    rgba(123, 104, 238, 0.18) 85%,
    transparent 100%);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; max-width: 100vw; }
body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  font-family: 'Segoe UI', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  position: relative;
}

a { color: var(--cyan); text-decoration: none; }
a:hover { color: var(--primary); text-shadow: 0 0 8px var(--glow); }

.container { max-width: 960px; margin: 0 auto; padding: 0 1.5rem; width: 100%; box-sizing: border-box; }
.container.wide { max-width: 1200px; }

/* Layout */
.app-header {
  position: relative;
  z-index: 50;
  padding: 1rem 0;
  border-bottom: 1px solid var(--muted);
  background: rgba(18, 26, 35, 0.8);
  backdrop-filter: blur(8px);
  overflow: visible;
  max-width: 100%;
}
.app-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.app-header a.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}
.app-header a.brand:hover .brand-logo { filter: drop-shadow(0 0 12px var(--glow)) drop-shadow(0 0 20px var(--glow-cyan)); }
.brand-logo {
  height: 1.4rem;
  width: auto;
  display: block;
  transition: filter 0.2s ease;
  max-width: 100%;
}
.app-header nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  min-width: 0;
  flex-shrink: 1;
}
.nav-dropdown {
  position: relative;
}
.nav-dropdown__trigger {
  background: none;
  border: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
  padding: 0;
  opacity: 0.9;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.nav-dropdown__trigger:hover {
  opacity: 1;
  color: var(--primary);
}
.nav-dropdown__menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.25rem;
  min-width: 10rem;
  background: var(--card);
  border: 1px solid var(--muted);
  border-radius: 8px;
  padding: 0.5rem 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s, visibility 0.15s;
  z-index: 100;
}
.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
}
.nav-dropdown__menu a {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--text);
  text-decoration: none;
  opacity: 0.9;
}
.nav-dropdown__menu a:hover {
  opacity: 1;
  color: var(--primary);
  background: rgba(25, 245, 122, 0.08);
}
.app-header nav a { color: var(--text); opacity: 0.9; }
.app-header nav a:hover { opacity: 1; color: var(--primary); }

.app-user-bar {
  padding: 0.5rem 0 1.25rem;
  background: rgba(11, 15, 20, 0.6);
}
.app-user-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.app-user-bar__right {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
}
.app-user-bar__label { font-size: 0.9rem; opacity: 0.9; color: var(--text); }
.app-user-bar__logout { margin: 0; }
.app-user-bar__link { color: var(--cyan); font-size: 0.9rem; }
.app-user-bar__link:hover { color: var(--primary); }
.app-user-bar__link + .app-user-bar__link { margin-left: 0.5rem; }

main { padding: 0 0 5rem; flex: 1; min-width: 0; overflow-x: hidden; }

/* Hero */
.hero {
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
  max-width: 100%;
  box-sizing: border-box;
}
.hero .container {
  min-width: 0;
  max-width: 100%;
}
.hero::before {
  display: none;
}
.hero h1.hero-logo {
  margin: 0 0 0;
  padding-bottom: 1rem;
  line-height: 1;
  position: relative;
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.hero h1.hero-logo::after {
  display: none;
}
.hero h1.hero-logo img {
  max-width: min(260px, 70vw);
  height: auto;
  display: block;
  margin: 0 auto;
  mix-blend-mode: lighten;
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 800;
  color: var(--primary);
  text-shadow: 0 0 30px var(--glow);
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}
.hero .tagline {
  font-size: 1.25rem;
  color: var(--text);
  opacity: 0.95;
  margin: 0 0 1rem;
}
.hero .subtext {
  font-size: 1rem;
  color: var(--text);
  opacity: 0.75;
  max-width: 520px;
  margin: 0 auto;
}
.hero-login { margin-top: 0.75rem; }
.hero-concept-notice {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  color: var(--text);
  opacity: 0.9;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}
.hero-concept-notice strong { color: var(--primary); }
.hero-welcome { margin-top: 1.25rem; margin-bottom: 0; font-size: 1.1rem; color: var(--text); opacity: 0.95; }

/* Tool cards */
.tool-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
  min-width: 0;
  align-items: start;
}
.tool-tile {
  position: relative;
  padding-top: 48px;
}
.tool-floating-logo {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}
.tool-floating-logo::after {
  content: "";
  position: absolute;
  inset: -24px;
  background: radial-gradient(ellipse 80% 50% at 50% 50%, rgba(0, 255, 255, 0.06) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}
.tool-logo {
  max-width: 280px;
  max-height: 155px;
  width: auto;
  height: auto;
  object-fit: contain;
  mix-blend-mode: lighten;
}
.tool-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 360px;
  padding: 84px 24px 22px;
  border-radius: 20px;
  background: linear-gradient(180deg, #0b1623 0%, #09111b 100%);
  border: 1px solid rgba(0, 255, 255, 0.12);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  overflow: visible;
}
.tool-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 255, 255, 0.2);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.34);
}
.tool-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  text-align: left;
}
.tool-card-body .tool-card-title {
  margin: 0 0 6px;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.02em;
}
.tool-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--cyan);
  opacity: 0.5;
  margin-bottom: 12px;
}
.tool-card-body .tool-card-tagline {
  margin: 0;
  min-height: 72px;
  line-height: 1.5;
  color: rgba(220, 245, 255, 0.9);
  font-size: 0.95rem;
}
.tool-card-actions {
  margin-top: auto;
  padding-top: 18px;
}
.tool-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #00f6ff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  transition:
    color 0.18s ease,
    text-shadow 0.18s ease,
    transform 0.18s ease,
    opacity 0.18s ease;
}
.tool-cta:hover {
  color: #7ffcff;
  text-shadow: 0 0 10px rgba(0, 246, 255, 0.45);
}
.tool-cta::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  display: block;
  height: 1px;
  width: 0;
  background: currentColor;
  box-shadow: 0 0 8px rgba(0, 246, 255, 0.45);
  transition: width 0.18s ease;
}
.tool-cta:hover::after {
  width: 100%;
}
.tool-cta-arrow {
  transition: transform 0.18s ease;
}
.tool-cta:hover .tool-cta-arrow {
  transform: translateX(4px);
}
.tool-card .subtitle,
.tool-card .description,
.tool-card .badges,
.tool-card .tool-card__status {
  margin-left: 0;
  margin-right: 0;
}
.tool-card .subtitle { font-size: 0.85rem; color: var(--cyan); margin-top: 1rem; margin-bottom: 0.5rem; }
.tool-card .description { font-size: 0.95rem; opacity: 0.9; margin-bottom: 1.25rem; }
.tool-card .badges { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem; }
.tool-card .badge {
  font-size: 0.7rem;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  background: var(--muted);
  color: var(--text);
  opacity: 0.9;
}
.tool-card .badge.private { border: 1px solid var(--muted); color: var(--cyan); }
.tool-card__status {
  margin: 0 0 1.5rem;
  font-size: 0.9rem;
  color: var(--muted);
  font-style: italic;
}
.btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: box-shadow 0.2s, transform 0.1s;
}
.btn-primary {
  background: var(--primary);
  color: var(--bg);
}
.btn-primary:hover { box-shadow: 0 0 16px var(--glow); }
.btn-secondary {
  background: transparent;
  color: var(--cyan);
  border: 1px solid var(--cyan);
}
.btn-secondary:hover { box-shadow: 0 0 12px var(--glow-cyan); }
.btn--small { padding: 0.35rem 0.75rem; font-size: 0.875rem; }

/* Front page: reference button style (dark fill, cyan border & text, rounded) */
.btn-card {
  background: var(--bg);
  color: var(--cyan);
  border: 1px solid var(--cyan);
  border-radius: 12px;
  padding: 0.65rem 1.35rem;
}
.btn-card:hover { box-shadow: 0 0 12px var(--glow-cyan); }
.hero .btn-card { display: inline-block; }
.tool-cards .btn-card {
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5rem;
}
.tool-cards .tool-card .btn-card { margin-left: auto; margin-right: auto; }

.btn-download {
  background: var(--cyan);
  color: var(--bg);
  border: 1px solid var(--cyan);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-download:hover { box-shadow: 0 0 12px var(--glow-cyan); opacity: 1; }
.btn-icon { flex-shrink: 0; vertical-align: middle; }

/* Cards / panels */
.panel {
  background: var(--card);
  border: 1px solid var(--muted);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.panel h3 { margin: 0 0 1rem; font-size: 1.1rem; color: var(--primary); }

.rebuild-progress-panel .rebuild-spinner {
  width: 40px;
  height: 40px;
  margin: 1.5rem 0;
  border: 3px solid var(--muted);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: rebuild-spin 0.8s linear infinite;
}
@keyframes rebuild-spin { to { transform: rotate(360deg); } }
.btn-spinner {
  display: inline-block;
  width: 1em;
  height: 1em;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  animation: rebuild-spin 0.8s linear infinite;
  vertical-align: -0.2em;
  margin-right: 0.4em;
}
.rebuild-error { color: #f55; margin-top: 1rem; }
.scan-progress-panel .scan-found { font-size: 1.1rem; margin: 0.5rem 0 0; }
.checksum-block { margin-top: 1rem; font-size: 0.9rem; }
.checksum-block .checksum { display: block; word-break: break-all; font-size: 0.8rem; margin-top: 0.25rem; background: rgba(0,0,0,0.3); padding: 0.5rem; border-radius: 6px; }

/* Build complete state — cleaner layout */
.build-complete { padding: 0.25rem 0; }
.build-complete__title {
  margin: 0 0 0.25rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.02em;
}
.build-complete__lead {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  color: var(--text);
  opacity: 0.95;
}
.build-complete__credit {
  margin: 0 0 1.5rem;
  padding: 0.5rem 0.85rem;
  font-size: 0.9rem;
  color: rgba(0, 255, 255, 0.95);
  background: rgba(0, 255, 255, 0.08);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 10px;
  display: inline-block;
}
.build-complete__cta { margin-bottom: 1.5rem; }
.build-complete__download {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 12px;
  transition: box-shadow 0.2s ease, transform 0.15s ease;
}
.build-complete__download:hover { transform: translateY(-1px); }
.build-complete__notice {
  margin-bottom: 1.25rem;
  padding: 0.75rem 1rem;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  border-left: 3px solid var(--muted);
}
.build-complete__notice p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
  opacity: 0.9;
}
.build-complete__checksum {
  margin-bottom: 1.25rem;
  padding: 0.85rem 1rem;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.build-complete__checksum-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 0.35rem;
}
.build-complete__checksum-value {
  display: block;
  font-family: ui-monospace, monospace;
  font-size: 0.8rem;
  word-break: break-all;
  color: rgba(220, 245, 255, 0.9);
}
.build-complete__actions {
  margin-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
}
.build-complete__grabber {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.02em;
}
.build-complete__grabber::before {
  content: "→ ";
  opacity: 0.9;
}
.build-complete__mark-form { margin: 0; }
.build-complete__marked {
  margin: 0;
  font-size: 0.95rem;
  color: var(--primary);
}

/* App Flipper upload page: logo then upload */
.flipper-upload-page { padding-bottom: 1rem; }
.flipper-upload-page__logo {
  text-align: center;
  margin-bottom: 0.75rem;
}
.flipper-upload-page__logo .app-flipper-logo {
  max-width: 200px;
  height: auto;
  display: inline-block;
  mix-blend-mode: lighten;
}

.tool-what-is {
  margin-bottom: 1rem;
}
.tool-what-is summary {
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--cyan);
  list-style: none;
  transition: color 0.18s ease, opacity 0.18s ease;
}
.tool-what-is summary::-webkit-details-marker { display: none; }
.tool-what-is summary:hover { opacity: 0.9; }
.tool-what-is[open] summary { margin-bottom: 0.5rem; }
.tool-what-is .tool-description {
  margin-top: 0;
  padding-left: 0;
}

/* Flipper upload panel: more compact */
.flipper-upload-panel { padding: 1.25rem; }
.flipper-upload-panel h3 { margin: 0 0 0.4rem; font-size: 1.05rem; }
.flipper-upload-intro {
  opacity: 0.9;
  font-size: 0.9rem;
  margin: 0 0 0.75rem;
}
.flipper-upload-panel .upload-zone {
  padding: 1.25rem 1.25rem;
}
.flipper-upload-panel .upload-zone .hint {
  margin-top: 0.35rem;
  font-size: 0.85rem;
}
.flipper-upload-panel .flipper-form-group {
  margin-top: 1rem;
  margin-bottom: 0.75rem;
}
.flipper-upload-panel .flipper-form-group .hint {
  margin-top: 0.25rem;
  font-size: 0.85rem;
}
.flipper-upload-panel .btn-primary {
  margin-top: 0.25rem;
}

/* Upload zone */
.upload-zone {
  border: 2px dashed var(--muted);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color 0.2s, background 0.2s;
}
.upload-zone.dragover { border-color: var(--primary); background: rgba(25, 245, 122, 0.05); }
.upload-zone input[type="file"] { display: none; }
.upload-zone label { cursor: pointer; display: block; }
.upload-zone .hint { font-size: 0.9rem; opacity: 0.8; margin-top: 0.5rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; margin-bottom: 0.35rem; font-size: 0.9rem; opacity: 0.9; }
.form-group input[type="text"],
.form-group input[type="url"],
.form-group input[type="email"],
.form-group input[type="password"] {
  width: 100%;
  max-width: 400px;
  padding: 0.6rem 0.75rem;
  border-radius: 8px;
  border: 1px solid var(--muted);
  background: var(--bg);
  color: var(--text);
  font-size: 1rem;
}

/* Result candidates */
.candidates-list { list-style: none; padding: 0; margin: 0; }
.candidates-list li {
  padding: 0.6rem 0.75rem;
  border-radius: 8px;
  margin-bottom: 0.5rem;
  background: rgba(0,0,0,0.2);
  border-left: 3px solid var(--muted);
  font-family: ui-monospace, monospace;
  font-size: 0.9rem;
}
.candidates-list li.high { border-left-color: var(--primary); }
.candidates-list li .type { font-size: 0.75rem; color: var(--cyan); margin-right: 0.5rem; }
.candidates-list li .candidate-file { display: block; font-size: 0.75rem; color: var(--muted); margin-top: 0.25rem; }
.candidates-list li a { color: var(--primary); text-decoration: none; word-break: break-all; }
.candidates-list li a:hover { text-decoration: underline; }
select#old_url { max-width: 100%; min-width: 20em; word-break: break-all; }
.support-badge {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
}
.support-badge.supported { background: rgba(25, 245, 122, 0.2); color: var(--primary); }
.support-badge.maybe_supported { background: rgba(18, 215, 197, 0.2); color: var(--cyan); }
.support-badge.unsupported { background: var(--muted); color: var(--text); }

/* Flip preview */
.flip-preview {
  background: rgba(0,0,0,0.25);
  border-radius: 8px;
  padding: 1rem;
  font-family: ui-monospace, monospace;
  font-size: 0.9rem;
}
.flip-preview .before { color: #f55; margin-bottom: 0.5rem; }
.flip-preview .after { color: var(--primary); }

/* Pipeline / job status */
.pipeline { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1rem 0; }
.pipeline .stage {
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  font-size: 0.85rem;
  background: var(--muted);
  color: var(--text);
  opacity: 0.6;
}
.pipeline .stage.done { background: rgba(25, 245, 122, 0.2); color: var(--primary); opacity: 1; }
.pipeline .stage.current { background: var(--cyan); color: var(--bg); opacity: 1; }

/* Admin table */
.jobs-table { width: 100%; border-collapse: collapse; }
.jobs-table th, .jobs-table td { padding: 0.75rem; text-align: left; border-bottom: 1px solid var(--muted); }
.jobs-table th { color: var(--cyan); font-size: 0.85rem; }
.jobs-table a { color: var(--primary); }

.admin-alerts { margin-bottom: 1rem; }
.admin-alerts:empty { display: none; }
.admin-alert { margin: 0 0 0.5rem; font-size: 0.9rem; }
.admin-alert:last-child { margin-bottom: 0; }
.admin-alert--success { color: var(--primary); }
.admin-alert--error { color: #f55; }
.admin-signups-form { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.admin-signups-label { font-size: 0.95rem; opacity: 0.95; }
.admin-signups-option { display: inline-flex; align-items: center; gap: 0.35rem; cursor: pointer; font-size: 0.95rem; }
.admin-tmp-size { font-size: 0.9rem; opacity: 0.9; margin: 0 0 0.75rem; }
.admin-tmp-purge-link { color: var(--cyan); text-decoration: none; }
.admin-tmp-purge-link:hover { color: var(--primary); text-decoration: underline; }
.admin-pagination { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--muted); }
.admin-pagination__info { font-size: 0.9rem; opacity: 0.9; margin: 0 0 0.5rem; }
.admin-pagination__links { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.jobs-table--compact th, .jobs-table--compact td { padding: 0.4rem 0.6rem; font-size: 0.9rem; }
.jobs-table--compact th { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.jobs-table__created { white-space: nowrap; }

/* ADB Ignite placeholder */
.teaser-banner {
  background: linear-gradient(135deg, rgba(25, 245, 122, 0.06) 0%, rgba(232, 241, 242, 0.04) 25%, rgba(18, 215, 197, 0.08) 50%, rgba(123, 104, 238, 0.06) 100%);
  border: 1px solid var(--muted);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
  color: var(--text);
  opacity: 0.95;
}
.teaser-banner strong { color: var(--cyan); }
.adb-ignite-hero { text-align: center; padding: 3rem 1.5rem; }
.adb-ignite-hero__logo { max-width: 280px; width: 100%; height: auto; display: block; margin: 0 auto 1.5rem; }
.adb-ignite-hero__text { font-size: 1.25rem; color: var(--primary); font-weight: 600; margin: 0; }
.h0tboxer-hero { text-align: center; padding: 3rem 1.5rem; }
.h0tboxer-hero__logo { max-width: 280px; width: 100%; height: auto; display: block; margin: 0 auto 1.5rem; }
.h0tboxer-hero__text { font-size: 1.25rem; color: var(--primary); font-weight: 600; margin: 0; }
.tool-description {
  max-width: 700px;
  line-height: 1.6;
  opacity: 0.9;
  margin: 0 0 1.5rem;
}
.section-block { margin-bottom: 2rem; }
.section-block h3 { color: var(--primary); margin-bottom: 0.75rem; }
.section-block .placeholder { background: var(--card); border: 1px dashed var(--muted); border-radius: 8px; padding: 2rem; text-align: center; opacity: 0.7; }

/* Pricing placeholder */
.pricing-card {
  max-width: 320px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem;
}

/* 404 */
.error-page { text-align: center; padding: 4rem 2rem; }
.error-page h1 { color: var(--primary); margin-bottom: 1rem; }

/* Auth */
.auth-panel { max-width: 400px; margin: 2rem auto; }
.auth-error { color: #f55; margin-bottom: 1rem; }
.auth-timeout { color: var(--primary); margin-bottom: 1rem; opacity: 0.95; }
.auth-form .form-group input { max-width: 100%; }
.checkbox-label { display: flex; align-items: center; gap: 0.5rem; cursor: pointer; }
.checkbox-label input { width: auto; max-width: none; }

/* Footer — single line, fixed at bottom, no double lines */
.app-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.6rem 0;
  color: var(--text);
  font-size: 0.8rem;
  background: var(--card);
  border-top: 1px solid var(--muted);
  text-align: center;
  z-index: 10;
  max-width: 100%;
  box-sizing: border-box;
}
.app-footer .container {
  text-align: center;
  padding-top: 0;
  padding-bottom: 0;
  max-width: 960px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
}
.app-footer__swish {
  display: none;
}
.app-footer__brand {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cyan);
  opacity: 0.9;
  margin: 0 0 0.1rem;
}
.app-footer__copy {
  margin: 0;
  opacity: 0.8;
  color: var(--text);
}
