/* PTP Elite rebuilt static site */
:root {
  --red: #d9161f;
  --red-dark: #a80f17;
  --ink: #101114;
  --charcoal: #17191d;
  --coal: #08090b;
  --paper: #ffffff;
  --mist: #f5f5f2;
  --stone: #e4e0d8;
  --muted: #62656d;
  --line: rgba(16, 17, 20, 0.12);
  --gold: #b9954a;
  --field: #e9eee5;
  --max-w: 1180px;
  --radius: 8px;
  --shadow: 0 18px 48px rgba(8, 9, 11, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

p {
  margin: 0 0 1rem;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 2000;
  padding: 0.75rem 1rem;
  color: var(--paper);
  background: var(--coal);
  border-radius: var(--radius);
}

.skip-link:focus {
  left: 12px;
}

.container {
  width: min(100% - 40px, var(--max-w));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  color: var(--paper);
  background: rgba(8, 9, 11, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.nav-container {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--paper);
  text-decoration: none;
}

.site-logo {
  width: 68px;
  height: 68px;
  object-fit: contain;
}

.site-logo--small {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.logo-text {
  font-family: "Oswald", Impact, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--paper);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  cursor: pointer;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  content: "";
}

.nav-toggle-lines {
  position: relative;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  position: absolute;
  left: 0;
}

.nav-toggle-lines::before {
  top: -6px;
}

.nav-toggle-lines::after {
  top: 6px;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.55rem 0.62rem;
  color: rgba(255, 255, 255, 0.86);
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.active {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.1);
}

.nav-link.cta {
  color: var(--paper);
  background: var(--red);
}

.nav-link.cta:hover,
.nav-link.cta:focus-visible {
  background: #ef202b;
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--paper);
  background-color: var(--coal);
  background-image:
    linear-gradient(90deg, rgba(8, 9, 11, 0.96) 0%, rgba(8, 9, 11, 0.84) 48%, rgba(8, 9, 11, 0.54) 100%),
    url("/images/ptp-elite-logo.png?v=2");
  background-repeat: no-repeat;
  background-position: center, right -120px center;
  background-size: cover, 760px auto;
}

.hero::after,
.page-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 12px;
  content: "";
  background: repeating-linear-gradient(
    90deg,
    var(--red) 0 42px,
    var(--paper) 42px 50px,
    var(--coal) 50px 92px
  );
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.35rem;
  max-width: 760px;
  padding: 5rem 0 6rem;
}

.hero-logo {
  width: 148px;
  height: auto;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  width: 34px;
  height: 2px;
  background: currentColor;
  content: "";
}

.hero h1,
.page-hero h1,
.section-title,
.card h2,
.card h3,
.program-card h2,
.sponsor-card h2,
.form-title {
  font-family: "Oswald", Impact, sans-serif;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 700px;
  margin: 0;
  font-size: 4.35rem;
}

.hero-sub {
  max-width: 690px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.18rem;
}

.hero-actions,
.section-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.78rem 1rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--paper);
  background: var(--red);
  box-shadow: 0 14px 32px rgba(217, 22, 31, 0.26);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #ee1d28;
}

.btn-secondary {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--paper);
  background: rgba(255, 255, 255, 0.14);
}

.btn-outline {
  color: var(--ink);
  border-color: var(--ink);
  background: transparent;
}

.btn-outline:hover,
.btn-outline:focus-visible {
  color: var(--paper);
  background: var(--ink);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  max-width: 680px;
  margin-top: 1rem;
}

.proof-item {
  padding: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.proof-item strong {
  display: block;
  color: var(--paper);
  font-family: "Oswald", Impact, sans-serif;
  font-size: 1.55rem;
  line-height: 1;
  text-transform: uppercase;
}

.proof-item span {
  display: block;
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.88rem;
}

.section {
  padding: 5rem 0;
}

.section-tight {
  padding: 3.5rem 0;
}

.section-dark {
  color: var(--paper);
  background: var(--charcoal);
}

.section-field {
  background:
    linear-gradient(rgba(233, 238, 229, 0.94), rgba(233, 238, 229, 0.94)),
    repeating-linear-gradient(90deg, transparent 0 92px, rgba(16, 17, 20, 0.06) 92px 94px);
}

.section-muted {
  background: var(--mist);
}

.section-head {
  display: grid;
  gap: 0.7rem;
  max-width: 780px;
  margin-bottom: 2rem;
}

.section-title {
  margin: 0;
  font-size: 2.25rem;
}

.section-lead,
.lead {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-dark .section-lead,
.section-dark .lead,
.section-dark p {
  color: rgba(255, 255, 255, 0.78);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 2rem;
  align-items: center;
}

.split-reverse {
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
}

.visual-panel {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(8, 9, 11, 0.92), rgba(217, 22, 31, 0.8)),
    url("/images/ptp-elite-logo.png?v=2");
  background-position: center;
  background-size: cover, 520px auto;
  box-shadow: var(--shadow);
}

.visual-panel img {
  position: absolute;
  right: 7%;
  bottom: 7%;
  width: min(58%, 260px);
  height: auto;
}

.visual-caption {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.card-grid,
.program-grid,
.sponsor-grid,
.resource-grid {
  display: grid;
  gap: 1rem;
}

.card-grid.three,
.program-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.resource-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.program-card,
.sponsor-card,
.contact-panel,
.form-shell,
.note {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 10px 26px rgba(16, 17, 20, 0.06);
}

.card,
.program-card,
.contact-panel,
.note {
  padding: 1.25rem;
}

.card h2,
.card h3,
.program-card h2,
.sponsor-card h2 {
  margin: 0 0 0.75rem;
  font-size: 1.3rem;
}

.card p,
.program-card p,
.sponsor-card p,
.note p {
  color: var(--muted);
}

.esa-credential {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.9rem;
  align-items: start;
  min-width: 0;
  max-width: 780px;
  margin: 1.15rem 0 1.25rem;
  padding: 1rem;
  border: 1px solid rgba(185, 149, 74, 0.42);
  border-radius: var(--radius);
  background: rgba(185, 149, 74, 0.08);
}

.esa-credential strong {
  display: block;
  min-width: 0;
  margin-bottom: 0.2rem;
  overflow-wrap: break-word;
}

.esa-credential p {
  min-width: 0;
  margin: 0;
  color: var(--muted);
  overflow-wrap: break-word;
}

.esa-badge {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  border: 1px solid rgba(185, 149, 74, 0.6);
  border-radius: 50%;
  background: var(--paper);
  font-family: "Oswald", Impact, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
}

.hero-credential {
  margin-top: 1.35rem;
}

.esa-feature {
  margin-top: 0;
}

.small-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.section-dark .card,
.section-dark .program-card,
.section-dark .note {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.section-dark .card p,
.section-dark .program-card p,
.section-dark .small-note {
  color: rgba(255, 255, 255, 0.78);
}

.card-label {
  display: inline-flex;
  margin-bottom: 0.75rem;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.check-list,
.dot-list,
.plain-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.dot-list li {
  position: relative;
  padding-left: 1.45rem;
  margin: 0.65rem 0;
  color: var(--muted);
}

.section-dark .check-list li,
.section-dark .dot-list li {
  color: rgba(255, 255, 255, 0.78);
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 900;
  content: "\2713";
}

.dot-list li::before {
  position: absolute;
  left: 0.25rem;
  top: 0.65em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  content: "";
}

.process-list {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  position: relative;
  padding: 1.1rem 1.1rem 1.1rem 4.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  counter-increment: process;
}

.process-list li::before {
  position: absolute;
  left: 1rem;
  top: 1rem;
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  color: var(--paper);
  border-radius: var(--radius);
  background: var(--red);
  content: counter(process, decimal-leading-zero);
  font-family: "Oswald", Impact, sans-serif;
  font-weight: 700;
}

.process-list h3 {
  margin: 0 0 0.35rem;
  font-family: "Oswald", Impact, sans-serif;
  font-size: 1.18rem;
  text-transform: uppercase;
}

.process-list p {
  margin: 0;
  color: var(--muted);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 4.6rem;
  background-color: var(--mist);
  background-image:
    linear-gradient(90deg, rgba(245, 245, 242, 0.96), rgba(245, 245, 242, 0.76)),
    url("/images/ptp-elite-logo.png?v=2");
  background-repeat: no-repeat;
  background-position: center, right -80px center;
  background-size: cover, 460px auto;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 760px;
  margin: 0 0 0.85rem;
  font-size: 3.15rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.breadcrumb a {
  color: var(--red-dark);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.45rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--paper);
  font-size: 0.88rem;
  font-weight: 800;
}

.quote-band {
  padding: 1.5rem;
  border-left: 6px solid var(--red);
  background: rgba(255, 255, 255, 0.08);
}

.quote-band blockquote {
  margin: 0;
  color: var(--paper);
  font-size: 1.22rem;
  font-weight: 700;
}

.sponsor-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sponsor-card {
  overflow: hidden;
}

.sponsor-card img {
  width: 100%;
  height: 280px;
  object-fit: contain;
  padding: 1.2rem;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.sponsor-content {
  padding: 1.25rem;
}

.sponsor-contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sponsor-contact-list li {
  margin: 0.4rem 0;
  color: var(--muted);
}

.sponsorship-flyer {
  width: min(100%, 760px);
  margin-inline: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: 1.2rem;
  align-items: start;
}

.contact-panel {
  display: grid;
  gap: 1rem;
}

.contact-panel a {
  color: var(--red-dark);
  font-weight: 800;
  text-decoration: none;
}

.contact-panel a:hover {
  text-decoration: underline;
}

.form-shell {
  padding: 1.25rem;
}

.form-title {
  margin: 0 0 0.5rem;
  font-size: 1.7rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-group,
.fieldset {
  display: grid;
  gap: 0.45rem;
}

.form-group.full,
.fieldset,
.form-actions,
.form-status {
  grid-column: 1 / -1;
}

label,
legend {
  color: var(--ink);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 0.72rem 0.78rem;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  font: inherit;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(217, 22, 31, 0.18);
  border-color: var(--red);
}

.fieldset {
  margin: 0;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.choice {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.65rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--mist);
  font-weight: 700;
}

.choice input {
  width: 18px;
  min-width: 18px;
  min-height: 18px;
  margin-top: 0.18rem;
}

.error-msg {
  min-height: 1.15rem;
  color: var(--red-dark);
  font-size: 0.84rem;
  font-weight: 700;
}

.form-status {
  min-height: 1.3rem;
  margin: 0;
  font-weight: 800;
}

.waiver-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1rem;
}

.legal-note {
  border-left: 6px solid var(--red);
}

.waiver-form {
  max-width: none;
}

.nested-form-grid {
  grid-column: 1 / -1;
}

.waiver-legal {
  max-height: 430px;
  overflow: auto;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.96)),
    repeating-linear-gradient(0deg, transparent 0 34px, rgba(16,17,20,0.04) 34px 35px);
}

.waiver-legal h3 {
  margin: 0 0 0.75rem;
  font-family: "Oswald", Impact, sans-serif;
  font-size: 1.35rem;
  line-height: 1.15;
  text-transform: uppercase;
}

.waiver-legal p {
  color: var(--ink);
}

.full-choice {
  width: 100%;
  margin-top: 0.6rem;
}

.signature-fieldset {
  background: #fbfaf7;
}

.required-note {
  margin-bottom: 0;
}

.site-footer {
  color: var(--paper);
  background: var(--coal);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(180px, 0.55fr) minmax(220px, 0.65fr);
  gap: 2rem;
  padding: 3rem 0 2rem;
}

.footer-brand {
  display: grid;
  gap: 0.85rem;
}

.footer-brand p,
.footer-bottom,
.footer-contact {
  color: rgba(255, 255, 255, 0.72);
}

.footer-nav {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-nav a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--paper);
  text-decoration: underline;
}

.footer-bottom {
  padding: 1rem 0 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.content-enter {
  opacity: 1;
}

.js .content-enter,
.js .content-enter.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  .site-nav {
    position: fixed;
    inset: 76px 0 auto 0;
    padding: 0.75rem 20px 1rem;
    background: rgba(8, 9, 11, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    transform: translateY(-125%);
    transition: transform 180ms ease;
  }

  .site-nav.open {
    transform: translateY(0);
  }

  .site-nav ul {
    display: grid;
    gap: 0.45rem;
    width: min(100%, var(--max-w));
    margin-inline: auto;
  }

  .nav-link {
    font-size: 0.92rem;
    width: 100%;
    justify-content: flex-start;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero {
    background-position: center, right -260px center;
  }

  .card-grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: 620px;
    background-position: center, right -330px center;
  }

  .hero h1 {
    font-size: 3.15rem;
  }

  .split,
  .split-reverse,
  .contact-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .card-grid.three,
  .program-grid,
  .resource-grid,
  .sponsor-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    gap: 1.25rem;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--max-w));
  }

  .nav-container {
    min-height: 68px;
  }

  .site-logo {
    width: 58px;
    height: 58px;
  }

  .site-nav {
    inset: 68px 0 auto 0;
  }

  .hero {
    min-height: auto;
    background-position: center, right -390px center;
    background-size: cover, 650px auto;
  }

  .hero-inner {
    padding: 4rem 0 4.6rem;
  }

  .hero h1 {
    font-size: 2.45rem;
  }

  .hero-sub {
    font-size: 1rem;
  }

  .hero-proof,
  .card-grid.four,
  .form-grid,
  .choice-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3.6rem 0;
  }

  .section-title {
    font-size: 1.85rem;
  }

  .page-hero {
    padding: 3.5rem 0 4rem;
    background-position: center, right -220px center;
    background-size: cover, 380px auto;
  }

  .page-hero h1 {
    max-width: 100%;
    font-size: 2rem;
    overflow-wrap: break-word;
  }

  .esa-credential {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .esa-badge {
    width: 44px;
    height: 44px;
  }

  .visual-panel {
    min-height: 300px;
  }

  .process-list li {
    padding: 4rem 1rem 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
