/* ShieldID Shop Records — Testing Phase */
:root {
  --sr-bg: #02040a;
  --sr-panel: #05070b;
  --sr-border: rgba(255, 255, 255, 0.1);
  --sr-blue: #0066ff;
  --sr-blue-text: #51a0f6;
  --sr-text: #ffffff;
  --sr-muted: #94a3b8;
  --sr-amber: #f59e0b;
}

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

body {
  background: var(--sr-bg);
  color: var(--sr-text);
  font-family: system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.sr-skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--sr-blue);
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  z-index: 100;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.sr-skip-link:focus { top: 0; }

.sr-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  border-bottom: var(--sr-border);
  background: rgba(2, 4, 10, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.sr-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.sr-nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.sr-nav-brand img { height: 32px; width: auto; }
.sr-nav-brand span {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--sr-text);
  letter-spacing: -0.02em;
}
.sr-nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.sr-nav-links a {
  color: var(--sr-muted);
  text-decoration: none;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: color 0.2s;
}
.sr-nav-links a:hover,
.sr-nav-links a:focus-visible {
  color: var(--sr-text);
  outline: none;
}
.sr-nav-links a.active { color: var(--sr-blue-text); }
.sr-back-link {
  color: var(--sr-muted);
  text-decoration: none;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 16px;
  transition: all 0.2s;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.sr-back-link:hover,
.sr-back-link:focus-visible {
  color: var(--sr-text);
  border-color: var(--sr-blue);
  outline: none;
}

.sr-main { padding-top: 64px; }

.sr-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: var(--sr-border);
}
.sr-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.sr-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}
.sr-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(2, 4, 10, 0.6) 0%, rgba(2, 4, 10, 0.92) 100%);
}
.sr-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1rem;
  width: 100%;
}

.sr-testing-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.5);
  color: var(--sr-amber);
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
}
.sr-testing-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--sr-amber);
  border-radius: 50%;
  animation: sr-pulse 2s ease-in-out infinite;
}
@keyframes sr-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.sr-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.sr-hero p {
  font-size: 1.1rem;
  color: #c5cfdc;
  max-width: 42rem;
  line-height: 1.7;
  font-weight: 300;
}

.sr-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1rem;
}
.sr-section h2 {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.sr-section h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.sr-section p {
  color: #b4c0cf;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.sr-panel {
  border: var(--sr-border);
  background: var(--sr-panel);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.sr-panel h3 {
  color: var(--sr-blue-text);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}

.sr-search-disabled {
  border: 1px solid var(--sr-border);
  background: var(--sr-panel);
  padding: 2rem;
  text-align: center;
}
.sr-search-input {
  width: 100%;
  max-width: 500px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--sr-border);
  color: var(--sr-muted);
  font-size: 1rem;
  margin-bottom: 1rem;
  cursor: not-allowed;
  min-height: 48px;
}
.sr-search-input::placeholder { color: rgba(148, 163, 184, 0.5); }
.sr-search-note {
  color: var(--sr-muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

.sr-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .sr-grid { grid-template-columns: 1fr 1fr; }
}

.sr-step {
  border: var(--sr-border);
  background: var(--sr-panel);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
}
.sr-step-num {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--sr-blue);
  font-family: monospace;
  min-width: 2.5rem;
}
.sr-step h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}
.sr-step p {
  font-size: 0.875rem;
  color: #aeb9c8;
  margin-bottom: 0;
}

.sr-note {
  border: 1px solid rgba(0, 102, 255, 0.4);
  background: rgba(0, 102, 255, 0.05);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.sr-note p {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: #c5cfdc;
}

.sr-disclaimer {
  border: 1px solid rgba(245, 158, 11, 0.4);
  background: rgba(245, 158, 11, 0.05);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.sr-disclaimer p {
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #c5cfdc;
}

.sr-list {
  list-style: none;
  padding: 0;
}
.sr-list li {
  padding: 0.75rem 0;
  border-bottom: var(--sr-border);
  color: #b4c0cf;
  font-size: 0.9rem;
  display: flex;
  gap: 0.75rem;
}
.sr-list li::before {
  content: "—";
  color: var(--sr-blue);
  flex-shrink: 0;
}
.sr-list li:last-child { border-bottom: none; }

.sr-log-entry {
  border: var(--sr-border);
  background: var(--sr-panel);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
}
.sr-log-entry .date {
  font-size: 0.75rem;
  color: var(--sr-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.sr-log-entry .text {
  color: #b4c0cf;
  font-size: 0.9rem;
}

.sr-footer {
  border-top: var(--sr-border);
  background: var(--sr-bg);
  padding: 2rem 1rem;
  text-align: center;
}
.sr-footer p {
  color: var(--sr-muted);
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
}
.sr-footer a {
  color: var(--sr-blue-text);
  text-decoration: none;
}
.sr-footer a:hover { text-decoration: underline; }

@media (max-width: 640px) {
  .sr-nav-links { display: none; }
  .sr-hero-content { padding: 3rem 1rem; }
  .sr-section { padding: 2rem 1rem; }
}
