/* Pixel Orchard Creative Lab — dark neon grid, maker-studio panels */
:root {
  --void: #07070d;
  --panel: #10101a;
  --line: #1e1e32;
  --neon-pink: #ff2d95;
  --neon-cyan: #00f5d4;
  --neon-amber: #ffbe0b;
  --text: #e8e6f2;
  --muted: #8b87a2;
  --banner-bg: #040408;
  --banner-fg: #f0eef9;
  --font: "Segoe UI", system-ui, sans-serif;
  --display: Impact, "Arial Narrow", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--void);
  background-image:
    linear-gradient(rgba(0, 245, 212, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 45, 149, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  line-height: 1.55;
  min-height: 100vh;
}

.skip {
  position: absolute;
  left: -9999px;
  background: var(--neon-pink);
  color: #000;
  padding: 0.5rem 1rem;
  z-index: 100;
}
.skip:focus {
  left: 0.5rem;
}

.arc-top {
  border-bottom: 3px solid var(--neon-pink);
  box-shadow: 0 0 24px rgba(255, 45, 149, 0.25);
  background: rgba(7, 7, 13, 0.95);
}
@media (max-width: 899px) {
  .arc-top {
    position: sticky;
    top: 0;
    z-index: 40;
  }
}
.arc-top__inner {
  max-width: 60rem;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.arc-logo {
  font-family: var(--display);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--neon-cyan);
  text-shadow: 0 0 12px rgba(0, 245, 212, 0.5);
}
.arc-logo span {
  color: var(--neon-pink);
}
.arc-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
}
.arc-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}
.arc-nav a:hover,
.arc-nav a.active {
  color: var(--neon-amber);
  border-bottom-color: var(--neon-amber);
}

.shell {
  max-width: 52rem;
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
}

.lab-panel {
  background: var(--panel);
  border: 2px solid var(--line);
  border-radius: 4px;
  padding: 1.75rem 1.5rem;
  box-shadow:
    inset 0 0 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(0, 245, 212, 0.08);
  margin-bottom: 1.5rem;
}

h1 {
  font-family: var(--display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
  color: var(--neon-cyan);
  line-height: 1.1;
}

.tag {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--neon-pink);
  margin-bottom: 0.5rem;
}

.lead {
  font-size: 1.08rem;
  color: #c8c4d8;
  margin: 0 0 1.25rem;
}

.hero-img {
  width: 100%;
  height: auto;
  border: 2px solid var(--neon-pink);
  border-radius: 4px;
  margin: 1rem 0;
  box-shadow: 0 0 20px rgba(255, 45, 149, 0.2);
}

.neon-grid {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0;
}
@media (min-width: 560px) {
  .neon-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.neon-card {
  display: block;
  padding: 1.25rem;
  background: rgba(16, 16, 26, 0.9);
  border: 2px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.neon-card:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 18px rgba(0, 245, 212, 0.15);
}
.neon-card strong {
  display: block;
  color: var(--neon-amber);
  margin-bottom: 0.35rem;
  font-size: 1.05rem;
}

.btn {
  display: inline-block;
  padding: 0.85rem 1.35rem;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: inherit;
  border: 2px solid transparent;
}
.btn--hot {
  background: var(--neon-pink);
  color: #0a0a0f;
  border-color: #ff6eb5;
}
.btn--cool {
  background: transparent;
  color: var(--neon-cyan);
  border-color: var(--neon-cyan);
}

.site-foot {
  padding: 2rem 1.25rem;
  border-top: 2px solid var(--line);
  font-size: 0.88rem;
  color: var(--muted);
  max-width: 60rem;
  margin: 0 auto;
}
.foot-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 0.5rem 0;
}
.foot-legal a {
  color: var(--neon-cyan);
}

.legal-muted {
  color: var(--muted);
  font-size: 0.9rem;
}
.prose {
  margin: 0 0 1rem;
  max-width: 48rem;
}
.prose a {
  color: var(--neon-pink);
}

.policy-band {
  margin: 2rem 0 1rem;
  padding: 1.5rem 1.2rem;
  background: rgba(16, 16, 26, 0.95);
  border: 2px solid var(--neon-cyan);
  border-radius: 4px;
  box-shadow: 0 0 24px rgba(0, 245, 212, 0.12);
}
.policy-band__title {
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
  color: var(--neon-amber);
}
.policy-band__lede {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  color: var(--muted);
}
.policy-band__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 560px) {
  .policy-band__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.policy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.9rem;
  padding: 1rem;
  font-size: 1.02rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #0a0a0f;
  background: var(--neon-cyan);
  border: 2px solid #5fffea;
  border-radius: 4px;
}
.policy-btn:hover {
  filter: brightness(1.08);
}
.policy-btn--accent {
  background: var(--neon-pink);
  border-color: #ff8cc8;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--banner-bg);
  color: var(--banner-fg);
  padding: 1rem 1.25rem;
  z-index: 999;
  border-top: 2px solid var(--neon-pink);
}
.cookie-banner[hidden] {
  display: none !important;
}
.cookie-banner__inner {
  max-width: 52rem;
  margin: 0 auto;
}
.cookie-banner__title {
  font-size: 1rem;
  margin: 0 0 0.5rem;
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.65rem;
}
.cookie-banner .btn {
  min-height: 3.2rem;
  font-size: 0.92rem;
}
.cookie-banner .btn--hot {
  border-color: transparent;
}
.cookie-banner .btn--cool {
  color: var(--banner-fg);
  border-color: rgba(255, 255, 255, 0.35);
}

/* Desktop: fixed vertical sidebar rail; content scrolls beside it */
@media (min-width: 900px) {
  .arc-top {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6.75rem;
    z-index: 50;
    border-bottom: none;
    border-right: 3px solid var(--neon-pink);
    box-shadow: 4px 0 32px rgba(0, 0, 0, 0.35);
  }
  .arc-top__inner {
    flex-direction: column;
    height: 100%;
    justify-content: flex-start;
    align-items: center;
    padding: 1.25rem 0.5rem;
    gap: 1.5rem;
  }
  .arc-logo {
    font-size: 1rem;
    text-align: center;
    line-height: 1.15;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    text-shadow: 0 0 16px rgba(255, 45, 149, 0.35);
  }
  .arc-nav {
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
  }
  .arc-nav a {
    font-size: 0.68rem;
    padding: 0.35rem 0;
    text-align: center;
    max-width: 5rem;
  }
  .shell {
    margin-left: 6.75rem;
    max-width: none;
    padding: 2rem 2rem 3rem 2rem;
  }
  .site-foot {
    margin-left: 6.75rem;
    max-width: none;
    padding-left: 2rem;
    border-top: 2px solid var(--line);
  }
}
