/* Landing v10 — CONTACT
   Night pitch + floodlight amber. Essence of manual football. */

:root {
  --w10-void: #050a08;
  --w10-pitch: #0d281c;
  --w10-pitch-lit: #164a32;
  --w10-line: rgba(245, 240, 230, 0.55);
  --w10-chalk: #f5f0e6;
  --w10-muted: rgba(245, 240, 230, 0.62);
  --w10-amber: #e8b84a;
  --w10-amber-hot: #ffd56a;
  --w10-green: #6ee7a0;
  --w10-font: "Sora", system-ui, sans-serif;
  --w10-serif: "Instrument Serif", Georgia, serif;
  --w10-mono: "JetBrains Mono", ui-monospace, monospace;
}

html.page-wmm10 {
  scroll-behavior: smooth;
  background: var(--w10-void) !important;
  background-image:
    radial-gradient(ellipse 90% 50% at 50% -10%, rgba(232, 184, 74, 0.09), transparent 55%),
    radial-gradient(ellipse 70% 40% at 80% 60%, rgba(22, 74, 50, 0.45), transparent) !important;
  background-size: 100% 100% !important;
}

html.theme-cyber.page-wmm10 body.manualfc-body::before {
  opacity: 0.22;
}

body.page-wmm10 {
  margin: 0;
  color: var(--w10-chalk);
  font-family: var(--w10-font);
}

.w10 {
  display: block;
}

.w10-kicker {
  margin: 0 0 0.75rem;
  font-family: var(--w10-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--w10-amber);
}

.w10-h2 {
  margin: 0 0 1.25rem;
  font-family: var(--w10-serif);
  font-weight: 400;
  font-size: clamp(1.85rem, 4.5vw, 3.1rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--w10-chalk);
}

.w10-block-lead {
  margin: 0 0 2rem;
  max-width: 40rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--w10-muted);
}

.w10-block-lead strong {
  color: var(--w10-chalk);
  font-weight: 600;
}

/* —— Hero —— */
.w10-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.w10-hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.w10-hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 10, 8, 0.35) 0%, rgba(5, 10, 8, 0.15) 40%, rgba(5, 10, 8, 0.92) 100%),
    radial-gradient(ellipse 50% 40% at 70% 30%, rgba(232, 184, 74, 0.12), transparent 60%);
  pointer-events: none;
}

.w10-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 42rem;
  padding: clamp(6rem, 16vh, 9rem) clamp(1.25rem, 5vw, 3.5rem) clamp(3rem, 8vh, 5rem);
  animation: w10-hero-in 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@media (prefers-reduced-motion: reduce) {
  .w10-hero-copy { animation: none; }
}

.w10-brand {
  margin: 0 0 1rem;
  font-family: var(--w10-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--w10-amber);
}

.w10-title {
  margin: 0 0 1.25rem;
  font-family: var(--w10-serif);
  font-weight: 400;
  line-height: 1.02;
}

.w10-title-soft {
  display: block;
  font-size: clamp(2.4rem, 8vw, 4.6rem);
  font-style: italic;
  color: var(--w10-muted);
}

.w10-title-hard {
  display: block;
  font-size: clamp(2.8rem, 9vw, 5.2rem);
  color: var(--w10-chalk);
  letter-spacing: -0.03em;
}

.w10-lead {
  margin: 0 0 2rem;
  max-width: 34rem;
  font-size: clamp(1.02rem, 2vw, 1.18rem);
  line-height: 1.65;
  color: var(--w10-muted);
}

.w10-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

.w10-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0 1.4rem;
  border: 1px solid transparent;
  font-family: var(--w10-font);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.w10-btn:hover { transform: translateY(-2px); }

.w10-btn--solid {
  background: var(--w10-amber);
  color: #1a1206;
}

.w10-btn--solid:hover {
  background: var(--w10-amber-hot);
  color: #1a1206;
}

.w10-btn--ghost {
  background: transparent;
  border-color: rgba(245, 240, 230, 0.28);
  color: var(--w10-chalk);
}

.w10-btn--ghost:hover {
  border-color: var(--w10-chalk);
  background: rgba(245, 240, 230, 0.06);
}

.w10-btn--xl {
  min-height: 3.35rem;
  padding: 0 1.75rem;
  font-size: 1rem;
}

.w10-scroll-hint {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--w10-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--w10-muted);
  opacity: 0.7;
}

.w10-scroll-hint span {
  width: 1px;
  height: 2rem;
  background: linear-gradient(180deg, var(--w10-amber), transparent);
  animation: w10-pulse 1.8s ease-in-out infinite;
}

/* —— Blocks —— */
.w10-block {
  max-width: 960px;
  margin: 0 auto;
  padding: clamp(3.5rem, 10vh, 6.5rem) clamp(1.25rem, 5vw, 2.5rem);
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.w10-block.w10-visible {
  opacity: 1;
  transform: none;
}

.w10-why-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 800px) {
  .w10-why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

.w10-why-text {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--w10-muted);
}

.w10-why-text--accent {
  padding-left: 1.25rem;
  border-left: 2px solid var(--w10-amber);
  color: var(--w10-chalk);
}

.w10-why-text em {
  font-family: var(--w10-serif);
  font-style: italic;
  color: var(--w10-amber-hot);
}

/* —— Demo —— */
.w10-demo-stage {
  position: relative;
  border: 1px solid rgba(232, 184, 74, 0.22);
  background: #071810;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}

.w10-demo-canvas {
  display: block;
  width: 100%;
  height: auto;
  cursor: crosshair;
  touch-action: none;
}

.w10-demo-hud {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
  padding: 0.85rem 1rem;
  border-top: 1px solid rgba(245, 240, 230, 0.08);
  font-family: var(--w10-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--w10-muted);
  background: rgba(5, 12, 9, 0.9);
}

.w10-demo-reset {
  margin-left: auto;
  appearance: none;
  border: 1px solid rgba(245, 240, 230, 0.2);
  background: transparent;
  color: var(--w10-chalk);
  font-family: var(--w10-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  cursor: pointer;
}

.w10-demo-reset:hover {
  border-color: var(--w10-amber);
  color: var(--w10-amber);
}

.w10-demo-note {
  margin: 1rem 0 0;
  font-size: 0.88rem;
  color: var(--w10-muted);
  opacity: 0.85;
}

/* —— Pillars —— */
.w10-pillar-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.w10-pillar {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1.25rem;
  padding: 1.75rem 0;
  border-top: 1px solid rgba(245, 240, 230, 0.1);
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.w10-pillar:last-child {
  border-bottom: 1px solid rgba(245, 240, 230, 0.1);
}

.w10-pillar.w10-pillar--on {
  opacity: 1;
  transform: none;
}

.w10-pillar-n {
  font-family: var(--w10-serif);
  font-size: 2rem;
  line-height: 1;
  color: var(--w10-amber);
}

.w10-pillar h3 {
  margin: 0 0 0.5rem;
  font-family: var(--w10-font);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--w10-chalk);
}

.w10-pillar p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--w10-muted);
}

/* —— Map —— */
.w10-map {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

@media (min-width: 720px) {
  .w10-map {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.w10-map-link {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding: 1.1rem 1rem;
  border: 1px solid rgba(245, 240, 230, 0.12);
  background: rgba(13, 40, 28, 0.45);
  color: var(--w10-chalk);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.w10-map-link span {
  font-family: var(--w10-mono);
  font-size: 0.7rem;
  color: var(--w10-amber);
}

.w10-map-link:hover {
  border-color: rgba(232, 184, 74, 0.55);
  background: rgba(22, 74, 50, 0.55);
  transform: translateY(-2px);
}

/* —— Rule —— */
.w10-rule {
  text-align: center;
}

.w10-rule-quote {
  margin: 0 auto 1.5rem;
  max-width: 36rem;
  padding: 0;
  border: none;
}

.w10-rule-quote p {
  margin: 0;
  font-family: var(--w10-serif);
  font-size: clamp(1.45rem, 3.5vw, 2.15rem);
  line-height: 1.4;
  color: var(--w10-chalk);
}

.w10-rule-quote em {
  font-style: italic;
  color: var(--w10-amber-hot);
}

.w10-slogan {
  margin: 0;
  font-family: var(--w10-mono);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--w10-green);
}

.w10-finale .w10-cta {
  justify-content: flex-start;
}

.w10-versions {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem clamp(1.25rem, 5vw, 2.5rem) 4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  align-items: center;
  font-family: var(--w10-mono);
  font-size: 0.68rem;
  color: var(--w10-muted);
}

.w10-versions a {
  color: rgba(245, 240, 230, 0.55);
  text-decoration: none;
}

.w10-versions a:hover {
  color: var(--w10-amber);
}

@keyframes w10-hero-in {
  from {
    opacity: 0;
    transform: translateY(1.25rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes w10-fade-in {
  to { opacity: 1; }
}

@keyframes w10-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
  50% { opacity: 1; transform: scaleY(1); }
}

@media (prefers-reduced-motion: reduce) {
  .w10-block,
  .w10-pillar {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .w10-scroll-hint span { animation: none; }
}
