* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fff;
  color: #111;
}

.page {
  min-height: 100vh;
  padding: 40px 20px;
  max-width: 430px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mascot {
  width: 160px;
  margin: 0 auto 25px;
}

.tag {
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: bold;
  margin-bottom: 12px;
}

h1 {
  font-size: 34px;
  line-height: 1.05;
  margin: 0 0 18px;
}

.subtext {
  font-size: 17px;
  line-height: 1.45;
  color: #444;
  margin-bottom: 28px;
}

button {
  width: 100%;
  padding: 17px;
  border: none;
  border-radius: 14px;
  background: #111;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
}

.warning {
  margin-top: 18px;
  font-size: 13px;
  color: #777;
}
.puzzle {
  margin: 22px auto 24px;
  font-size: 22px;
  line-height: 1.7;
  font-weight: 500;
}

input {
  width: 100%;
  padding: 16px;
  margin-bottom: 14px;
  border: 1px solid #ccc;
  border-radius: 12px;
  font-size: 18px;
  text-align: center;
}

button {
  margin-bottom: 12px;
}

.hint {
  background: #f1f1f1;
  color: #111;
  border: 1px solid #ddd;
}

#feedback {
  min-height: 28px;
  margin-top: 10px;
  font-size: 15px;
  color: #555;
  line-height: 1.4;
}
.result-box {
  background: #f6f6f6;
  border: 1px solid #e2e2e2;
  border-radius: 16px;
  padding: 18px;
  margin: 20px 0;
  text-align: left;
}

.result-box h2 {
  margin-top: 0;
  font-size: 20px;
}

.result-box p {
  color: #444;
  line-height: 1.45;
}
.hidden {
  display: none;
}
.glitch-loader {
  margin-top: 22px;
  text-align: center;
}

.glitch-circle {
  width: 68px;
  height: 68px;
  border: 5px solid #e8e8e8;
  border-top: 5px solid #111;
  border-right: 5px solid #111;
  border-radius: 50%;
  margin: 0 auto 14px;
  animation: spin 0.8s linear infinite, glitchShake 0.18s infinite;
}

.glitch-text {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #111;
  animation: textGlitch 0.45s infinite;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes glitchShake {
  0% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(1px, -1px) rotate(90deg); }
  50% { transform: translate(-1px, 1px) rotate(180deg); }
  75% { transform: translate(1px, 1px) rotate(270deg); }
  100% { transform: translate(0, 0) rotate(360deg); }
}

@keyframes textGlitch {
  0% { opacity: 1; transform: translateX(0); }
  20% { opacity: 0.7; transform: translateX(-1px); }
  40% { opacity: 1; transform: translateX(1px); }
  60% { opacity: 0.8; transform: translateX(-1px); }
  100% { opacity: 1; transform: translateX(0); }
}
.progress {
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 700;
  color: #777;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.mascot.hero {
  width: 190px;
  margin-bottom: 20px;
  opacity: 0.8;
  transform: scale(0.8);
  animation: fadeInScale 0.8s ease-out forwards;
}
@keyframes fadeInScale {
  to {
    opacity: 0.95;
    transform: scale(1.02);
  }
}
.progress-wrap {
  width: 100%;
  height: 8px;
  background: #eee;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 16px;
}

.progress-bar {
  height: 100%;
  background: #111;
  border-radius: 999px;
}
.secondary {
  background: none;
  border: none;
  color: #777;
  font-size: 14px;
  cursor: pointer;
}
.free-path {
  background: #f9f9f9;
  color: #444;
  border: 1.5px dashed #ccc;
  margin-top: 12px;
  padding: 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* hover effect (important) */
.free-path:hover {
  border-color: #999;
  background: #f1f1f1;
}

.free-path span {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: #888;
  margin-top: 4px;
}
/* initially hidden */
.hidden-free {
  opacity: 0;
  transform: translateY(8px);
}

/* visible state */
.show-free {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.4s ease;
}
.upgrade-text {
  font-size: 13px;
  color: #666;
  margin-bottom: 10px;
  font-weight: 600;
}
.mindblown {
  width: 200px;   /* adjust if needed */
  display: block;
  margin: 20px auto 12px auto;
}
.mascot.grinning {
  width: 220px;
  margin: 10px auto 20px;
}
.certificate {
  border: 2px solid #000;
  padding: 24px;
  max-width: 320px;
  margin: 40px auto;
  text-align: center;
  font-family: monospace;
  background: #fff;
}

.cert-header {
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.cert-line {
  font-size: 14px;
  margin: 6px 0;
}

.divider {
  height: 1px;
  background: #000;
  margin: 14px 0;
}

.cert-note {
  font-size: 18px;
  color: #555;
}

.rarity {
  font-size: 11px;
  color: #777;
  margin-top: 10px;
}

.cert-footer {
  margin-top: 20px;
  font-size: 11px;
  color: #777;
}

.cert-btn {
  margin-top: 15px;
  padding: 10px;
  width: 100%;
  border: 3px solid #000;
  font-weight: 800;
  background: none;
  cursor: pointer;
  letter-spacing: 1px;
}

.hidden {
  display: none;
}
.page {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}
.certificate {
  box-shadow: 0 0 0 1px #000 inset;
}
.cert-btn {
  color: #000;        /* make text visible */
  font-size: 14px;
  font-family: monospace;
}
.highlight {
  color: #000; 
  font-weight: 700;
  font-size: 18px;
}
.cert-btn:hover {
  background: #000;
  color: #fff;
  transition: all 0.2s ease;
}
.certificate {
  max-width: 440px;
}

.subtle {
    opacity: 0.6;
}
.highlight {
   letter-spacing: 1px;
    font-weight: 800;
    font-size: 19px;
}
.micro-proof {
    font-size: 13px;
    opacity: 0.7;
    margin-top: 8px;
}
.upsell-hint {
    font-size: 14px;
    opacity: 0.6;
    margin-top: 12px;
}
.code-name {
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 7px;
}

/* Hidden layer add-ons */
.hidden-layer-intro {
  text-align: center;
  margin-bottom: 18px;
}

.hidden-kicker {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.hidden-subtext {
  font-size: 13px;
  color: #666;
  margin: 0;
}

.post-cert-actions {
  max-width: 420px;
  margin: 18px auto 40px;
  text-align: center;
}

.screenshot-hint {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
}

.challenge-copy {
  font-size: 13px;
  color: #666;
  margin-bottom: 14px;
}

.action-btn {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  border: 1.5px solid #000;
  border-radius: 12px;
  background: #fff;
  color: #000;
  font-family: monospace;
  font-weight: 700;
  cursor: pointer;
}

.action-btn:hover {
  background: #000;
  color: #fff;
  transition: 0.2s ease;
}

.secondary-action {
  opacity: 0.75;
}

.loading-text {
  font-size: 14px;
 text-align: center;
  font-family: monospace;
  opacity: 0.7;
  margin-top: 40px;
}

.snapshot {
  border: 2px solid #000;
  padding: 20px;
  max-width: 320px;
  margin: 30px auto;
  text-align: center;
  font-family: monospace;
}

.note {
  font-size: 13px;
  margin-top: 10px;
}

.subtle {
  opacity: 0.6;
}

/* SNAPSHOT PAGE */

.snapshot {
  width: 360px;
  max-width: 90%;
  border: 2px solid #222;
  padding: 34px 28px;
  margin: 40px auto 10px auto;
  text-align: center;
  background: #f7f7f7;
}

.snapshot h2 {
  font-size: 42px;
  margin-bottom: 22px;
  line-height: 0.9;
}

.snapshot p {
  margin: 18px 0;
  line-height: 1.2;
}

.native-ad {
  margin-top: 20px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #555;
  text-align: center;
}

.main-btn,
.share-btn {
  width: 420px;
  max-width: 90%;
  margin-top: 10px;
}

.micro-copy {
  margin-top: 10px;
  font-size: 16px;
  color: #555;
  text-align: center;
  font-weight: 600;
}

/* DEEP REPORT PAGE */

.deep-report {
  width: 380px;
  max-width: 90%;
  border: 2px solid #111;
  padding: 34px 28px;
  margin: 35px auto 20px auto;
  text-align: center;
  background: #f7f7f7;
  font-family: monospace;
}

.report-label {
  letter-spacing: 4px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
}

.deep-report h1 {
  font-size: 28px;
  line-height: 1.15;
  margin: 18px 0 22px;
}

.deep-report p {
  margin: 14px 0;
  line-height: 1.5;
  font-size: 15px;
}

.report-main {
  font-size: 18px !important;
  font-weight: 700;
}

.report-sub {
  color: #555;
}

.deep-report .highlight {
  font-size: 17px;
  font-weight: 800;
  color: #000;
}

.legal-mascot {
  width: 220px;
  margin: 10px auto 20px;
  display: block;
}

.legal-box {
  border: 2px solid #111;
  padding: 24px;
  margin: 25px auto;
  max-width: 420px;
  text-align: left;
  background: #f7f7f7;
}

.legal-box h2 {
  font-size: 18px;
  margin-top: 22px;
}

.legal-box h2:first-child {
  margin-top: 0;
}

.legal-box p {
  font-size: 14px;
  line-height: 1.6;
  color: #444;
}

.cookie-notice {
  position: fixed;
  bottom: 04px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 360px;
  background: rgba(255,255,255,0.96);
  border: 1px solid #111;
  padding: 07px 09px;
  text-align: center;
  font-size: 11px;
  z-index: 9999;
  border-radius: 10px;
  backdrop-filter: blur(4px);
}

.cookie-notice p {
  margin: 0 0 8px;
  color: #555;
  line-height: 1.2;
}

.cookie-notice button {
  width: 30%;
  padding: 6px;
  border: none;
  background: #2f2727;
  color: #fff;
  border-radius: 8px;
  font-size: 12px;
  cursor: pointer;
  margin-bottom: 0;
}

.archive-hint {
  margin-top: 18px;
  font-size: 13px;
  opacity: 0.65;
  text-align: center;
}

.secondary-btn {
  margin-top: 8px;
  padding: 12px 18px;
  border: 1.5px solid #111;
  background: #fff;
  color: #111;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
}

.archive-link {
  display: block;
  margin-top: 14px;
  font-size: 13px;
  color: #555;
  text-decoration: underline;
}
.archive-mascot {
  width: 180px;
  max-width: 70%;
  display: block;
  margin: 0 auto 18px;
}

.archive-hint {
  margin-top: 22px;
  font-size: 13px;
  opacity: 0.65;
  text-align: center;
}

.secondary-btn {
  margin-top: 10px;
  padding: 12px 18px;
  border: 1.5px solid #111;
  background: #fff;
  color: #111;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
}

.progress-bar {
  animation: fillBar 0.8s ease-out;
  transform-origin: left;
}

@keyframes fillBar {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

.snapshot,
.certificate,
.deep-report,
.result-box {
  animation: softReveal 0.55s ease-out;
}

@keyframes softReveal {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

button:active,
.cert-btn:active,
.action-btn:active,
.main-btn:active,
.share-btn:active {
  transform: scale(0.98);
}
.contact-section {
  margin-top: 20px;
  margin-bottom: 18px;
  text-align: center;
  font-size: 14px;
  opacity: 0.7;
  line-height: 1.6;
}

.contact-section a {
  color: inherit;
  text-decoration: underline;
}
