/* Progplayer marketing site */

:root {
  --bg: #0c1117;
  --bg-alt: #10161f;
  --surface: #161d29;
  --surface-2: #1c2432;
  --border: #263145;
  --text: #f4f6fa;
  --text-dim: #9aa8c0;
  --text-dimmer: #6b7690;
  --accent: #2bc0f0;
  --accent-dim: #1c4a5c;
  --teal: #5eead4;
  --orange: #f2994a;
  --green: #6fcf97;
  --blue: #56ccf2;
  --radius: 14px;
  --maxw: 1180px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono: 'JetBrains Mono', 'SFMono-Regular', Consolas, monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--accent);
}

h1, h2, h3 { font-weight: 700; letter-spacing: -0.01em; margin: 0; }

.section-head { max-width: 640px; margin: 0 0 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.section-head h2 {
  font-size: clamp(28px, 3.4vw, 38px);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-head p {
  color: var(--text-dim);
  font-size: 17px;
  margin: 0;
}

section { padding: 96px 0; border-top: 1px solid var(--border); }
section:first-of-type { border-top: none; }

/* Background dot grid */
.dotgrid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 0%, #000 40%, transparent 100%);
  pointer-events: none;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(12, 17, 23, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav .brand { display: flex; align-items: center; gap: 10px; }
.nav .brand img { height: 42px; width: auto; }
.nav .brand span {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-dim);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--text); }

.nav-right { display: flex; align-items: center; gap: 12px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 600;
  padding: 11px 20px;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-accent {
  background: var(--accent);
  color: #052029;
}
.btn-accent:hover { filter: brightness(1.08); }
.btn-ghost {
  border-color: var(--border);
  color: var(--text);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--text-dimmer); }

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 40px;
  height: 40px;
  color: var(--text);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

/* Hero */
.hero {
  position: relative;
  padding: 108px 0 96px;
  overflow: hidden;
  border-top: none;
}

.hero-glow {
  position: absolute;
  top: -220px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(closest-side, rgba(43,192,240,0.16), transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(34px, 5.6vw, 58px);
  line-height: 1.08;
  margin-bottom: 22px;
}

.hero p.lead {
  font-size: clamp(16px, 1.9vw, 19px);
  color: var(--text-dim);
  max-width: 600px;
  margin: 0 auto 36px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-caps {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 56px;
  flex-wrap: wrap;
}

.cap-pill {
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-dim);
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 8px 16px;
  border-radius: 999px;
  letter-spacing: 0.03em;
}

/* Screen mockup, used in place of a stock photo */
.mock-screen {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  max-width: 420px;
  margin: 56px auto 0;
  text-align: left;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}
.mock-screen__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  padding: 0 2px;
}
.mock-screen__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}
.mock-screen__label {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 6px;
}
.mock-screen__status {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(111, 207, 151, 0.2);
}
.mock-screen__stage {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}
.mock-tile {
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dim));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #052029;
  font-size: 1.4rem;
}
.mock-schedule {
  list-style: none;
  margin: 0;
  padding: 10px 14px;
  background: var(--surface-2);
  border-radius: 10px;
  font-family: var(--mono);
}
.mock-schedule li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--text-dim);
  font-size: 12.5px;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
}
.mock-schedule li:last-child { border-bottom: 0; }
.mock-schedule .mock-time { color: var(--text-dimmer); }

/* Feature / publisher-style section */
.callout {
  background: linear-gradient(135deg, rgba(43,192,240,0.09), rgba(43,192,240,0.02));
  border: 1px solid var(--accent-dim);
  border-radius: var(--radius);
  padding: 28px 30px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--text);
  margin: 40px 0 0;
  position: relative;
}
.callout::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--accent);
  border-radius: 3px 0 0 3px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  position: relative;
}

.card-dot {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  margin-bottom: 16px;
}

.card h3 { font-size: 17px; margin-bottom: 8px; }
.card p { font-size: 14.5px; color: var(--text-dim); margin: 0; line-height: 1.55; }

/* How it works */
.how-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 28px;
}
.how-card .tags {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--teal);
  letter-spacing: 0.03em;
  margin-bottom: 14px;
}
.how-card h3 { font-size: 19px; margin-bottom: 10px; }
.how-card p { font-size: 14.5px; color: var(--text-dim); margin: 0; line-height: 1.6; }
.how-card .num {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--text-dimmer);
  margin-bottom: 18px;
}

.how-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 56px;
  color: var(--text-dimmer);
  font-family: var(--mono);
  font-size: 13px;
  flex-wrap: wrap;
  text-align: center;
}
.how-flow .node {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--text-dim);
}
.how-flow .node.center {
  border-color: var(--accent-dim);
  color: var(--accent);
}

/* Steps */
.steps { counter-reset: step; display: grid; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  padding: 26px 0;
  border-top: 1px solid var(--border);
}
.step:first-child { border-top: none; }
.step-num {
  font-family: var(--mono);
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  border: 1px solid var(--accent-dim);
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step h3 { font-size: 17px; margin-bottom: 4px; }
.step p { font-size: 14.5px; color: var(--text-dim); margin: 0; }

/* Why section (checklist) */
.why-conditions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 40px 0;
}
.cond {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.cond .check {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: rgba(94, 234, 212, 0.12);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}
.cond p { margin: 0; font-size: 15px; font-weight: 500; }

.why-footnote {
  color: var(--text-dim);
  font-size: 15px;
  border-left: 2px solid var(--border);
  padding-left: 18px;
  max-width: 640px;
}

/* Final CTA */
.cta-band { text-align: center; }
.cta-band h2 { font-size: clamp(26px, 3.6vw, 36px); margin-bottom: 14px; }
.cta-band p { color: var(--text-dim); font-size: 16px; margin: 0 0 32px; }

.contact-form {
  max-width: 560px;
  margin: 0 auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 13px; font-weight: 600; color: var(--text-dim); }
.field input,
.field textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
  color: var(--text);
  font-family: var(--font);
  font-size: 14.5px;
  resize: vertical;
}
.field input:focus,
.field textarea:focus { outline: none; border-color: var(--accent); }

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form .btn {
  align-self: center;
  border: none;
  min-width: 200px;
  justify-content: center;
}

.form-status { min-height: 20px; font-size: 14px; text-align: center; margin: 0; }
.form-status.success { color: var(--green); }
.form-status.error { color: #ff6b6b; }

@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
}

/* Footer */
footer { border-top: 1px solid var(--border); padding: 48px 0 36px; }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { height: 22px; }
.footer-brand span { color: var(--text-dimmer); font-size: 13.5px; }
.footer-rights {
  color: var(--text-dimmer);
  font-size: 12.5px;
  margin-top: 28px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

/* Responsive */
@media (max-width: 900px) {
  .grid-3, .why-conditions { grid-template-columns: 1fr; }
  .how-flow { display: none; }
  section { padding: 72px 0; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  header.open .nav-links {
    display: flex;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 20px 28px;
    gap: 18px;
  }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
