/* ==========================================================================
   ESCYNCIAL — SMART GROWTH QUERY / DISCOVERY ENGINE
   Aesthetic: Modern Neo-Brutalist Editorial
   Zero Raw Hex in Components, Strict CSS Tokens
   ========================================================================== */

:root {
  /* Core Brand Tokens */
  --ink: #0A0A0F;
  --ink-2: #15151D;
  --border-dark: #2A2A35;
  --bone: #F5F1E8;
  --signal: #FF3B2F;
  --acid: #D8FF3E;
  --muted-dark: #9A9AA6;
  --muted-light: #55555F;

  /* Dimensions & Effects */
  --border-width: 2px;
  --radius-card: 8px;
  --radius-pill: 9999px;
  --border-on-dark: var(--border-width) solid var(--border-dark);
  --border-on-light: var(--border-width) solid var(--ink);
  --border-signal: var(--border-width) solid var(--signal);
  --border-acid: var(--border-width) solid var(--acid);

  --shadow-dark: 6px 6px 0 var(--ink);
  --shadow-acid: 6px 6px 0 var(--acid);
  --shadow-signal: 6px 6px 0 var(--signal);
  --shadow-card: 6px 6px 0 rgba(0, 0, 0, 0.7);

  /* Typography Stacks */
  --font-display: 'Bricolage Grotesque', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  /* Transitions */
  --ease-fast: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-micro: 180ms;
}

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

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

body {
  background-color: var(--ink);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* 4% Noise Overlay */
.grain-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Faint Drifting Grid Lines (6% Opacity) */
.grid-bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(245, 241, 232, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 241, 232, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  animation: gridDrift 60s linear infinite;
}

@keyframes gridDrift {
  0% { background-position: 0 0; }
  100% { background-position: 48px 48px; }
}

/* Accessibility Focus States */
:focus-visible {
  outline: 3px solid var(--acid);
  outline-offset: 3px;
}

.screen-bone :focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
}

/* Typography Base */
h1, h2, h3, h4, .font-display {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.95;
  text-transform: uppercase;
}

.font-mono {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Word Marker Highlights */
.marker-acid {
  color: var(--acid);
  position: relative;
  display: inline-block;
}
.marker-acid::after {
  content: '';
  position: absolute;
  left: -2%;
  bottom: 4px;
  width: 104%;
  height: 8px;
  background: var(--acid);
  opacity: 0.35;
  z-index: -1;
  transform: rotate(-1deg);
  border-radius: 2px;
}

.marker-signal {
  color: var(--signal);
  position: relative;
  display: inline-block;
}
.marker-signal::after {
  content: '';
  position: absolute;
  left: -2%;
  bottom: 4px;
  width: 104%;
  height: 8px;
  background: var(--signal);
  opacity: 0.4;
  z-index: -1;
  transform: rotate(0.8deg);
  border-radius: 2px;
}

.marker-ink {
  color: var(--ink);
  position: relative;
  display: inline-block;
}
.marker-ink::after {
  content: '';
  position: absolute;
  left: -2%;
  bottom: 4px;
  width: 104%;
  height: 8px;
  background: var(--ink);
  opacity: 0.25;
  z-index: -1;
  border-radius: 2px;
}

/* Top App Header & Progress Bar */
.app-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(10, 10, 15, 0.95);
  border-bottom: var(--border-on-dark);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1200px;
  margin-inline: auto;
}

.app-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--bone);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.app-brand span {
  color: var(--signal);
}
.brand-badge {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  background: var(--acid);
  color: var(--ink);
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.1em;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.step-counter {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--acid);
}

.exit-link {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--muted-dark);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--dur-micro) ease;
}
.exit-link:hover {
  color: var(--bone);
}

/* Thin Signal Progress Bar on Ink-2 Track */
.progress-track {
  width: 100%;
  height: 5px;
  background: var(--ink-2);
  position: relative;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--signal) 0%, var(--acid) 50%, var(--signal) 100%);
  background-size: 200% 100%;
  animation: progressShimmer 3s infinite linear;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 10px rgba(216, 255, 62, 0.4);
}
@keyframes progressShimmer {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

/* Main Container Layout */
.app-main {
  position: relative;
  z-index: 10;
  max-width: 980px;
  margin-inline: auto;
  padding: clamp(32px, 5vw, 72px) clamp(20px, 4vw, 40px);
  min-height: calc(100vh - 70px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Screen Wrapper */
.screen-panel {
  display: none;
  opacity: 0;
}
.screen-panel.is-active {
  display: block;
  animation: screenSlideEntrance 0.38s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes screenSlideEntrance {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.995);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Sticker Badges */
.sticker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  box-shadow: 4px 4px 0 var(--ink);
  user-select: none;
  width: fit-content;
  margin-bottom: 20px;
}
.sticker-acid {
  background: var(--acid);
  color: var(--ink);
  border: var(--border-on-light);
  transform: rotate(-1.5deg);
}
.sticker-signal {
  background: var(--signal);
  color: var(--ink);
  border: var(--border-on-light);
  transform: rotate(1.8deg);
}

/* Question Headings */
.screen-headline {
  font-size: clamp(2.4rem, 5.8vw, 5.5rem);
  line-height: 0.95;
  color: var(--bone);
  margin-bottom: 20px;
}
.screen-subhead {
  font-size: clamp(16px, 1.25vw, 20px);
  color: var(--muted-dark);
  line-height: 1.6;
  max-width: 65ch;
  margin-bottom: 40px;
}

/* Question Content Container */
.question-body {
  margin-bottom: 40px;
}

/* Large Inputs */
.input-large-group {
  margin-bottom: 28px;
}
.input-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-dark);
  margin-bottom: 10px;
}
.input-field {
  width: 100%;
  background: var(--ink-2);
  border: var(--border-on-dark);
  border-radius: var(--radius-card);
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--bone);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.6);
  outline: none;
  transition: border-color 0.2s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.2s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.2s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.2s ease;
}
.input-field:focus {
  border-color: var(--acid);
  background: #14141E;
  transform: translateY(-2px);
  box-shadow: 0 0 0 3px rgba(216, 255, 62, 0.22), 5px 5px 0 #000000;
}
.input-textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.6;
}

/* Option Cards Grid */
.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.option-card {
  background: var(--ink-2);
  border: var(--border-on-dark);
  border-radius: var(--radius-card);
  padding: 20px 22px;
  cursor: pointer;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  transition: transform 0.16s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.16s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.16s ease,
              background 0.16s ease;
  user-select: none;
  position: relative;
}
.option-card:hover {
  border-color: var(--acid);
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 var(--acid);
}
.option-card.is-selected {
  background: var(--acid) !important;
  color: var(--ink) !important;
  border: var(--border-on-light) !important;
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 var(--bone) !important;
  animation: cardSelectBounce 0.26s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes cardSelectBounce {
  0% { transform: scale(0.97) translate(0, 0); }
  50% { transform: scale(1.02) translate(-4px, -4px); }
  100% { transform: scale(1) translate(-3px, -3px); }
}
.option-card.is-selected .option-title {
  color: var(--ink);
}
.option-card.is-selected .option-desc {
  color: rgba(10, 10, 15, 0.85);
}
.option-card.is-selected .option-indicator {
  border-color: var(--ink);
  background: var(--ink);
  animation: indicatorPop 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes indicatorPop {
  0% { transform: scale(0.5) rotate(-15deg); }
  100% { transform: scale(1) rotate(0deg); }
}
.option-card.is-selected .option-indicator svg {
  stroke: var(--acid);
  display: block;
}

.option-content {
  flex: 1;
}
.option-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--bone);
  margin-bottom: 4px;
  line-height: 1.2;
}
.option-desc {
  font-size: 13px;
  color: var(--muted-dark);
  line-height: 1.5;
}

.option-indicator {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  border: 2px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all var(--dur-micro) ease;
}
.option-indicator svg {
  display: none;
  width: 14px;
  height: 14px;
}

/* Action Nav Buttons Bar */
.action-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  border-top: var(--border-on-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 12px 32px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: transform var(--dur-micro) var(--ease-fast), box-shadow var(--dur-micro) var(--ease-fast), background-color var(--dur-micro) var(--ease-fast);
}

.btn-primary,
button.btn-primary,
a.btn-primary {
  background: var(--signal) !important;
  color: #0A0A0F !important;
  border: var(--border-on-light) !important;
  box-shadow: 6px 6px 0 var(--bone) !important;
}
.btn-primary:hover,
button.btn-primary:hover,
a.btn-primary:hover {
  transform: translate(2px, 2px) !important;
  box-shadow: 2px 2px 0 var(--bone) !important;
  background: #FF5347 !important;
  color: #0A0A0F !important;
}

.btn-ghost {
  background: transparent;
  color: var(--muted-dark);
  border: var(--border-on-dark);
}
.btn-ghost:hover {
  background: var(--ink-2);
  color: var(--bone);
  border-color: var(--acid);
}

.btn-acid,
button.btn-acid,
a.btn-acid,
a.btn-acid:visited,
a.btn-acid:link {
  background: var(--acid) !important;
  color: #0A0A0F !important;
  border: var(--border-on-light) !important;
  box-shadow: 6px 6px 0 var(--ink) !important;
}
.btn-acid:hover,
button.btn-acid:hover,
a.btn-acid:hover {
  transform: translate(2px, 2px) !important;
  box-shadow: 2px 2px 0 var(--ink) !important;
  background: #e4ff6b !important;
  color: #0A0A0F !important;
}

/* Error Alert State */
.error-msg {
  display: none;
  align-items: center;
  gap: 10px;
  color: var(--signal);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  margin-top: 14px;
  padding: 10px 16px;
  background: rgba(255, 59, 48, 0.14);
  border: 1.5px solid var(--signal);
  border-radius: 6px;
  box-shadow: 3px 3px 0 rgba(255, 59, 48, 0.3);
}
.error-msg.is-visible {
  display: inline-flex;
  animation: errorShake 0.4s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}
@keyframes errorShake {
  10%, 90% { transform: translate3d(-1px, 0, 0); }
  20%, 80% { transform: translate3d(2px, 0, 0); }
  30%, 50%, 70% { transform: translate3d(-4px, 0, 0); }
  40%, 60% { transform: translate3d(4px, 0, 0); }
}
.error-msg svg {
  width: 18px;
  height: 18px;
  stroke: var(--signal);
  flex-shrink: 0;
}

/* ==========================================================================
   PERSONALIZED SUMMARY (Light / Bone Canvas)
   ========================================================================== */
.screen-bone {
  background: var(--bone);
  color: var(--ink);
  border: var(--border-on-light);
  border-radius: var(--radius-card);
  box-shadow: 8px 8px 0 var(--ink);
  padding: clamp(28px, 4vw, 48px);
}
.screen-bone .screen-headline {
  color: var(--ink);
}
.screen-bone .screen-subhead {
  color: var(--muted-light);
}

.summary-bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-block: 28px;
}
.summary-card {
  background: #FFFFFF;
  border: var(--border-on-light);
  border-radius: var(--radius-card);
  padding: 24px;
  box-shadow: 4px 4px 0 var(--ink);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  animation: bentoStagger 0.42s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.summary-card:nth-child(1) { animation-delay: 0.04s; }
.summary-card:nth-child(2) { animation-delay: 0.08s; }
.summary-card:nth-child(3) { animation-delay: 0.12s; }
.summary-card:nth-child(4) { animation-delay: 0.16s; }
.summary-card:nth-child(5) { animation-delay: 0.20s; }
.summary-card:nth-child(6) { animation-delay: 0.24s; }
.summary-card:nth-child(7) { animation-delay: 0.28s; }

@keyframes bentoStagger {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.summary-card:hover {
  box-shadow: 6px 6px 0 var(--ink);
}
.summary-card-full {
  grid-column: 1 / -1;
}
.summary-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  gap: 12px;
}
.summary-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--signal);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.btn-card-edit {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #F4F4F0;
  border: 1.5px solid var(--ink);
  border-radius: 4px;
  padding: 4px 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  box-shadow: 2px 2px 0 var(--ink);
  transition: all 0.12s ease;
  white-space: nowrap;
}
.btn-card-edit:hover {
  background: var(--acid);
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0 var(--ink);
}
.btn-card-edit:active {
  transform: translate(1px, 1px);
  box-shadow: 1px 1px 0 var(--ink);
}
.summary-val {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 6px;
}
.summary-context {
  font-size: 13.5px;
  color: var(--muted-light);
  line-height: 1.5;
  margin-top: auto;
}

/* Review Status Callout Banner */
.review-status-banner {
  background: #FFFDF0;
  border: 2px solid var(--ink);
  border-left: 6px solid var(--signal);
  border-radius: 8px;
  padding: 16px 20px;
  box-shadow: 4px 4px 0 var(--ink);
  margin-block: 24px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.review-banner-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.review-pulse-dot {
  width: 10px;
  height: 10px;
  background: var(--signal);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.7);
  animation: reviewPulse 1.8s infinite;
  flex-shrink: 0;
}
@keyframes reviewPulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(255, 59, 48, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 59, 48, 0); }
}
.review-banner-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--signal);
  color: #FFFFFF;
  padding: 3px 8px;
  border-radius: 4px;
}
.review-banner-text {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.45;
  flex: 1;
  min-width: 240px;
}
.review-banner-cta {
  font-size: 12px;
  padding: 10px 18px;
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  cursor: pointer;
  white-space: nowrap;
}

/* Action Container */
.review-action-container {
  border-top: 2px solid var(--ink);
  padding-top: 24px;
  margin-top: 16px;
}
.review-action-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.review-dispatch-note {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted-light);
  text-align: center;
  line-height: 1.4;
}

#btnBlueprintWhatsApp {
  animation: waPulseGlow 2.4s infinite ease-in-out;
  position: relative;
}
@keyframes waPulseGlow {
  0%, 100% {
    box-shadow: 6px 6px 0 var(--ink);
  }
  50% {
    box-shadow: 6px 6px 0 var(--ink), 0 0 18px rgba(255, 59, 48, 0.45);
    transform: translateY(-2px);
  }
}

/* ==========================================================================
   SUCCESS SCREEN (Signal Red Canvas, Ink Text)
   ========================================================================== */
.screen-signal {
  background: var(--signal);
  color: var(--ink);
  border: var(--border-on-light);
  border-radius: var(--radius-card);
  box-shadow: 8px 8px 0 var(--bone);
  padding: clamp(36px, 6vw, 64px);
  text-align: center;
}
.screen-signal .screen-headline {
  color: var(--ink);
}
.screen-signal .screen-subhead {
  color: rgba(10, 10, 15, 0.85);
  margin-inline: auto;
}

/* Responsive */
@media (max-width: 768px) {
  .app-header .header-inner {
    padding: 12px 16px;
  }
  .app-brand {
    font-size: 18px;
  }
  .step-counter {
    font-size: 11px;
  }
  .app-main {
    padding: clamp(20px, 4vw, 36px) 16px;
    min-height: auto;
  }
  .screen-headline {
    font-size: clamp(2.1rem, 8.8vw, 3.2rem);
    line-height: 0.98;
    word-break: break-word;
    margin-bottom: 16px;
  }
  .screen-subhead {
    font-size: 15px;
    margin-bottom: 24px;
    line-height: 1.5;
  }
  .options-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .option-card {
    padding: 16px 16px;
  }
  .option-title {
    font-size: 16px;
  }
  .option-desc {
    font-size: 12px;
  }
  .input-field {
    font-size: 16px !important; /* Prevents iOS Safari auto-zoom */
    padding: 14px 16px;
    min-height: 48px;
  }
  .input-textarea {
    min-height: 100px;
  }
  .screen-bone {
    padding: 24px 16px;
    box-shadow: 6px 6px 0 var(--ink);
  }
  .summary-bento {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-block: 20px;
  }
  .summary-card {
    padding: 18px 16px;
    box-shadow: 3px 3px 0 var(--ink);
  }
  .summary-val {
    font-size: 18px;
  }
  .summary-context {
    font-size: 12.5px;
  }
  .action-bar {
    flex-direction: column-reverse;
    gap: 12px;
    margin-top: 24px;
    padding-top: 18px;
  }
  .btn {
    width: 100%;
    justify-content: center;
    min-height: 50px;
    font-size: 13px;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .grid-bg {
    animation: none !important;
  }
  .screen-panel {
    transition: none !important;
    transform: none !important;
  }
}
