:root {
  --bg: #05070a;
  --panel: #101318;
  --panel-strong: #171b22;
  --line: rgba(255, 255, 255, 0.12);
  --text: #f4efe7;
  --muted: #b9b1a8;
  --dim: #787d85;
  --red: #ef3124;
  --red-dark: #a41612;
  --pz-gold: #f0d030;
  --pz-gold-soft: #ffe86a;
  --pz-red: #d01020;
  --pz-ink: #090d13;
  --pz-graphite: #121821;
  --pz-steel: #606070;
  --steel: #343a42;
  --white: #fff9ee;
  --shadow: rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 0%, rgba(239, 49, 36, 0.08), transparent 26rem),
    linear-gradient(135deg, #070a0f 0%, #05070a 46%, #0d1016 100%);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(18px, 4vw, 48px);
  background: rgba(5, 7, 10, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
}

.brand span {
  font-size: 17px;
}

nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

nav a {
  padding: 9px 12px;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

nav a:hover,
nav a[aria-current='page'] {
  color: var(--white);
}

.nav-patreon {
  color: var(--white);
  background: rgba(239, 49, 36, 0.12);
  border: 1px solid rgba(239, 49, 36, 0.5);
  border-radius: 4px;
}

.hero {
  min-height: clamp(420px, 58vh, 560px);
  display: flex;
  align-items: center;
  padding: clamp(34px, 5vw, 62px) clamp(18px, 4vw, 48px);
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.98) 0%, rgba(5, 7, 10, 0.88) 50%, rgba(5, 7, 10, 0.52) 100%),
    url('/images/skorot-speed-hero.png') center / cover no-repeat;
  border-bottom: 1px solid var(--line);
}

.hero-copy,
.project-hero > div,
.narrow {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 16px;
  font-size: clamp(38px, 4.6vw, 56px);
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.1;
}

.hero p,
.project-hero p,
.contact-copy p,
.split > p,
.support-band p {
  color: var(--muted);
  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 14px 32px rgba(239, 49, 36, 0.22);
}

.button.ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line);
}

.band,
.support-band,
.contact-layout,
.project-hero {
  padding: clamp(42px, 6vw, 72px) clamp(18px, 4vw, 48px);
}

.band-tight {
  padding-top: clamp(38px, 5vw, 60px);
}

.section-head {
  max-width: 760px;
  margin-bottom: 22px;
}

.project-grid {
  display: grid;
  grid-template-columns: minmax(0, 760px);
  gap: 18px;
}

.project-card,
.feature-grid article,
.contact-form {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.project-card {
  padding: 22px;
}

.project-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.project-topline span {
  padding: 5px 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.project-card p,
.project-card li,
.feature-grid p,
.details li {
  color: var(--muted);
}

.project-card ul,
.details ul {
  padding-left: 20px;
}

.project-card li + li,
.details li + li {
  margin-top: 8px;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--white);
  font-weight: 800;
  text-decoration-color: var(--red);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.support-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(239, 49, 36, 0.16), rgba(255, 255, 255, 0.03)),
    #0d1016;
  border-block: 1px solid var(--line);
}

.support-band div {
  max-width: 850px;
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(280px, 1.15fr);
  gap: clamp(24px, 5vw, 68px);
  align-items: start;
}

.project-hero {
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(0deg, rgba(5, 7, 10, 0.98) 0%, rgba(5, 7, 10, 0.8) 60%, rgba(5, 7, 10, 0.55) 100%),
    url('/images/skorot-speed-hero.png') center / cover no-repeat;
  border-bottom: 1px solid var(--line);
}

.project-hero.pz-hero {
  position: relative;
  min-height: clamp(520px, 72vh, 720px);
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(100deg, rgba(5, 7, 10, 0.98) 0%, rgba(9, 13, 19, 0.95) 48%, rgba(9, 13, 19, 0.72) 100%),
    linear-gradient(135deg, rgba(240, 208, 48, 0.2), rgba(208, 16, 32, 0.16) 45%, transparent 72%),
    #05070a;
}

.project-hero.pz-hero::before,
.project-hero.pz-hero::after {
  position: absolute;
  content: '';
  pointer-events: none;
}

.project-hero.pz-hero::before {
  inset: auto -8vw 9% 8vw;
  height: 18%;
  background:
    linear-gradient(146deg, transparent 0 22%, rgba(208, 16, 32, 0.95) 22% 48%, rgba(240, 208, 48, 0.95) 48% 72%, transparent 72% 100%);
  opacity: 0.72;
  transform: skewY(-8deg);
}

.project-hero.pz-hero::after {
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 42%, rgba(255, 255, 255, 0.035) 42% 43%, transparent 43% 100%),
    linear-gradient(0deg, rgba(5, 7, 10, 0.9), transparent 45%);
}

.pz-hero > div {
  max-width: none;
}

.pz-hero-copy,
.pz-hero-visual {
  position: relative;
  z-index: 1;
}

.pz-hero-copy {
  max-width: 720px;
}

.pz-hero-icon {
  width: clamp(82px, 10vw, 132px);
  margin-bottom: 24px;
  border-radius: 22%;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.48);
}

.pz-hero h1 {
  color: var(--pz-gold-soft);
  text-shadow: 0 4px 0 rgba(0, 0, 0, 0.38);
}

.pz-hero p {
  max-width: 670px;
}

.pz-hero .button.primary,
.pz-download .button.primary {
  color: #090d13;
  background: linear-gradient(135deg, var(--pz-gold-soft), var(--pz-gold));
  box-shadow: 0 16px 36px rgba(240, 208, 48, 0.2);
}

.pz-hero .button.ghost {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(240, 208, 48, 0.34);
}

.pz-hero-visual {
  align-self: end;
  margin-bottom: -2vw;
}

.pz-hero-visual img {
  display: block;
  width: min(58vw, 880px);
  min-width: 420px;
  border: 1px solid rgba(240, 208, 48, 0.26);
  border-radius: 8px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.55);
  transform: perspective(900px) rotateY(-8deg) rotateX(2deg);
  transform-origin: left center;
}

.pz-proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(240, 208, 48, 0.22);
  border-bottom: 1px solid rgba(240, 208, 48, 0.22);
}

.pz-proof-strip article {
  display: grid;
  gap: 8px;
  padding: clamp(20px, 3vw, 30px) clamp(18px, 4vw, 48px);
  background:
    linear-gradient(135deg, rgba(240, 208, 48, 0.08), rgba(208, 16, 32, 0.06)),
    var(--pz-ink);
}

.pz-proof-strip strong {
  color: var(--white);
  font-size: 18px;
  text-transform: uppercase;
}

.pz-proof-strip span,
.pz-intro > p,
.pz-download p,
.pz-shot p {
  color: var(--muted);
}

.pz-intro {
  background:
    linear-gradient(90deg, rgba(18, 24, 33, 0.88), rgba(5, 7, 10, 0.92)),
    #080b10;
  border-bottom: 1px solid var(--line);
}

.project-summary {
  max-width: 920px;
}

.project-bullets {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
  font-size: 18px;
}

.quiet-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}

.feature-grid article {
  padding: 22px;
}

.feature-grid h3 {
  color: var(--white);
}

.pz-feature-band {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(240, 208, 48, 0.035)),
    #05070a;
}

.pz-features article {
  border-color: rgba(240, 208, 48, 0.18);
}

.pz-features h3 {
  color: var(--pz-gold-soft);
}

.pz-screenshot-band {
  background:
    linear-gradient(180deg, rgba(208, 16, 32, 0.08), rgba(255, 255, 255, 0.018)),
    var(--pz-graphite);
}

.pz-shot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.pz-shot {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    #090d13;
  border: 1px solid rgba(240, 208, 48, 0.18);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.26);
}

.pz-shot:first-child {
  grid-column: 1 / -1;
}

.pz-shot img {
  display: block;
  width: 100%;
  aspect-ratio: 1672 / 941;
  object-fit: cover;
  background: #05070a;
}

.pz-shot div {
  padding: 18px;
}

.pz-shot h3 {
  color: var(--white);
  font-size: 20px;
}

.pz-download {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 520px);
  gap: clamp(24px, 5vw, 68px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(240, 208, 48, 0.12), rgba(208, 16, 32, 0.09) 46%, rgba(96, 96, 112, 0.12)),
    #080b10;
  border-block: 1px solid rgba(240, 208, 48, 0.16);
}

.pz-download-panel {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.014)),
    #0d1118;
  border: 1px solid rgba(240, 208, 48, 0.24);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.3);
}

.pz-download-panel img {
  width: 74px;
  height: 74px;
  border-radius: 22%;
}

.pz-download-panel div {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.pz-download-panel strong {
  color: var(--white);
  font-size: 20px;
}

.pz-download-panel span {
  color: var(--muted);
}

.pz-download-panel .button {
  grid-column: 1 / -1;
}

.pz-support {
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.96), rgba(18, 24, 33, 0.9)),
    #05070a;
}

.details {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), rgba(239, 49, 36, 0.06)),
    #0a0d12;
}

code {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 2px 5px;
}

.contact-layout {
  min-height: calc(100vh - 74px);
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(300px, 1fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: start;
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.94), rgba(5, 7, 10, 0.7)),
    url('/images/skorot-speed-hero.png') center / cover no-repeat;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 3vw, 30px);
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 13px;
  color: var(--text);
  background: rgba(0, 0, 0, 0.34);
  font: inherit;
  text-transform: none;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(239, 49, 36, 0.55);
  outline-offset: 1px;
}

textarea {
  resize: vertical;
}

.captcha {
  grid-template-columns: 1fr;
}

.honey {
  position: absolute;
  left: -9999px;
}

.form-alert {
  padding: 13px 14px;
  border-radius: 6px;
  font-weight: 700;
}

.form-alert ul {
  margin: 8px 0 0;
  padding-left: 20px;
}

.form-alert.error {
  color: #ffe7e4;
  background: rgba(239, 49, 36, 0.16);
  border: 1px solid rgba(239, 49, 36, 0.4);
}

.form-alert.success {
  color: #f2fff5;
  background: rgba(46, 160, 87, 0.2);
  border: 1px solid rgba(46, 160, 87, 0.45);
}

.not-found {
  min-height: calc(100vh - 170px);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 4vw, 56px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: #05070a;
}

.site-footer div {
  display: grid;
  gap: 4px;
}

.site-footer strong {
  color: var(--white);
  text-transform: uppercase;
}

.site-footer a {
  color: var(--white);
  font-weight: 800;
  text-decoration-color: var(--red);
  text-underline-offset: 5px;
}

@media (max-width: 820px) {
  .site-header,
  .support-band,
  .split,
  .contact-layout,
  .project-hero.pz-hero,
  .pz-download,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-header {
    display: grid;
  }

  nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: auto;
    align-items: flex-end;
    padding-top: 74px;
    padding-bottom: 40px;
    background:
      linear-gradient(0deg, rgba(5, 7, 10, 0.98) 0%, rgba(5, 7, 10, 0.86) 65%, rgba(5, 7, 10, 0.5) 100%),
      url('/images/skorot-speed-hero.png') center / cover no-repeat;
  }

  .support-band {
    display: grid;
  }

  .support-band .button {
    justify-self: start;
  }

  .project-hero.pz-hero {
    min-height: auto;
    gap: 30px;
    padding-top: 54px;
  }

  .pz-hero-visual {
    margin-bottom: -48px;
  }

  .pz-hero-visual img {
    width: 100%;
    min-width: 0;
    transform: none;
  }

  .pz-proof-strip,
  .pz-shot-grid {
    grid-template-columns: 1fr;
  }

  .pz-shot:first-child {
    grid-column: auto;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 26px;
  }

  nav a {
    padding: 8px 9px;
    font-size: 12px;
  }

  .button {
    width: 100%;
  }

  .quiet-actions {
    align-items: stretch;
    flex-direction: column;
  }
}
