/* ============================================================
   Pyrority — Early Access page
   ============================================================ */

body.pyrority-page--early-access .amber-period { color: var(--white-hot); }

/* The home page's .nav-current rule (white) is shared, but on
   early-access the active link reads in amber to match the design. */
body.pyrority-page--early-access .nav-current {
  color: var(--amber) !important;
  font-weight: 500;
}

/* ============================================================
   Hero — split layout, form prominent
   Override the home-page's .hero/.hero-content rules.
   ============================================================ */
body.pyrority-page--early-access .hero {
  padding: 80px 0 100px;
  min-height: calc(100vh - 71px);
  display: flex;
  align-items: center;
  /* Reset home grid + max-width */
  max-width: none;
  margin: 0;
  grid-template-columns: none;
  gap: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 96px;
  align-items: start;
  width: 100%;
}

body.pyrority-page--early-access .hero-content {
  max-width: 580px;
}

body.pyrority-page--early-access .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 32px;
  /* Reset home animation */
  opacity: 1;
  animation: none;
}

.hero-form-wrap .ember-glow,
body.pyrority-page--early-access .ember-glow {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle at center, #fff5e0 0%, var(--amber) 40%, var(--amber-deep) 100%);
  box-shadow:
    0 0 6px var(--amber),
    0 0 14px rgba(239, 159, 39, 0.6),
    0 0 28px rgba(239, 159, 39, 0.3);
  animation: emberPulse 2.4s ease-in-out infinite;
  flex-shrink: 0;
  display: inline-block;
}

.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(48px, 5.6vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 28px;
}

.hero-subhead {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.45;
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 480px;
}

.hero-body {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-dim);
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-context-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 4px;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.hero-context-link:hover {
  color: var(--amber);
  border-color: var(--amber-deep);
}

/* ============================================================
   Form card (right column)
   ============================================================ */
.hero-form-wrap {
  background: var(--surface);
  border-radius: 18px;
  padding: 36px 36px 32px;
  box-shadow:
    0 30px 60px -16px rgba(0, 0, 0, 0.55),
    0 18px 36px -18px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.03);
}

.form-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 18px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--border-soft);
}

.form-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 19px;
  color: var(--text);
  letter-spacing: -0.01em;
}

.form-status {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* Override the base capture-* rules on this page only. */
body.pyrority-page--early-access .capture-label {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 12px;
  text-align: left;
  padding-left: 0;
}

body.pyrority-page--early-access .capture-form {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 6px 6px 6px 18px;
  display: flex;
  align-items: center;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  margin-bottom: 16px;
}

body.pyrority-page--early-access .capture-input {
  font-size: 16px;
  padding: 14px 0;
}

body.pyrority-page--early-access .capture-submit {
  width: 42px;
  height: 42px;
  border-radius: 7px;
}

/* On this page, .capture-form sits on a darker tint (rgba(0,0,0,0.25)
   over surface), so the autofill paint-over needs a matching shade. */
body.pyrority-page--early-access .capture-input:-webkit-autofill,
body.pyrority-page--early-access .capture-input:-webkit-autofill:hover,
body.pyrority-page--early-access .capture-input:-webkit-autofill:focus,
body.pyrority-page--early-access .capture-input:-webkit-autofill:active,
body.pyrority-page--early-access .capture-form-shell .ff-el-form-control:-webkit-autofill,
body.pyrority-page--early-access .capture-form-shell .ff-el-form-control:-webkit-autofill:hover,
body.pyrority-page--early-access .capture-form-shell .ff-el-form-control:-webkit-autofill:focus,
body.pyrority-page--early-access .capture-form-shell .ff-el-form-control:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px #191919 inset;
}

/* Fluent Forms shell — match this page's slimmer / darker input variant
   (matches the original .capture-form rules in page-early-access). */
body.pyrority-page--early-access .capture-form-shell .frm-fluent-form {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  padding: 6px 6px 6px 18px;
}

body.pyrority-page--early-access .capture-form-shell .ff-el-form-control {
  font-size: 16px;
  padding: 14px 0;
}

body.pyrority-page--early-access .capture-form-shell button.ff-btn-submit {
  width: 42px !important;
  min-width: 42px;
  height: 42px !important;
  min-height: 42px;
  border-radius: 7px !important;
}

body.pyrority-page--early-access .capture-fineprint {
  margin-top: 0;
  margin-bottom: 28px;
  line-height: 1.45;
}

/* Confirmation override — different layout from home. */
body.pyrority-page--early-access .capture-confirmation {
  padding: 20px 22px;
  margin-bottom: 28px;
  align-items: flex-start;
  border-radius: 10px;
}

body.pyrority-page--early-access .capture-confirm-tick { margin-top: 1px; }

.capture-confirm-text {
  flex: 1;
}

body.pyrority-page--early-access .capture-confirm-text { color: inherit; }

.capture-confirm-strong {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--amber);
  margin-bottom: 6px;
}

.capture-confirm-detail {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Commitments list inside the form card */
.commitments {
  padding-top: 24px;
  border-top: 1px solid var(--border-soft);
}

.commitments-label {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.commitments-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.commitment-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: flex-start;
}

.commitment-tick {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.5px solid var(--amber);
  margin-top: 4px;
  position: relative;
  flex-shrink: 0;
}

.commitment-tick::after {
  content: '';
  position: absolute;
  left: 2.5px;
  top: 3.5px;
  width: 6px;
  height: 3px;
  border-bottom: 1.5px solid var(--amber);
  border-left: 1.5px solid var(--amber);
  transform: rotate(-45deg);
}

.commitment-text {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.commitment-text strong {
  color: var(--text);
  font-weight: 500;
}

/* ============================================================
   Pitch section
   ============================================================ */
.pitch {
  background: var(--base-deeper);
  padding: 120px 0;
  border-top: 1px solid var(--border-soft);
}

.pitch-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 40px;
}

.pitch-eyebrow {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber-deep);
  margin-bottom: 28px;
}

.pitch-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 36px;
}

.pitch-body p {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: 19px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.pitch-body p:last-child { margin-bottom: 0; }

.pitch-body p strong {
  color: var(--text);
  font-weight: 500;
}

.pitch-spotter {
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
}

.pitch-spotter-name { color: var(--amber); font-weight: 500; }
.pitch-spotter-msg { color: var(--text-muted); font-weight: 300; }

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  body.pyrority-page--early-access .ember-glow { animation: none; }
}

/* ============================================================
   Tablet
   ============================================================ */
@media (max-width: 1100px) {
  body.pyrority-page--early-access .hero {
    padding: 60px 0 80px;
    min-height: auto;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  body.pyrority-page--early-access .hero-content { max-width: 100%; }
  .hero-form-wrap { max-width: 540px; margin: 0 auto; width: 100%; }
  .pitch { padding: 80px 0; }
  .pitch-inner { padding: 0 32px; }
}

/* ============================================================
   Mobile
   ============================================================ */
@media (max-width: 768px) {
  body.pyrority-page--early-access .hero { padding: 40px 0 60px; }
  .hero-grid { gap: 40px; }
  .hero-headline { font-size: 44px; }
  .hero-subhead { font-size: 17px; }
  .hero-body { font-size: 15px; }

  .hero-form-wrap { padding: 26px 22px 22px; }
  .form-title { font-size: 17px; }
  body.pyrority-page--early-access .capture-input { font-size: 15px; }

  .pitch { padding: 64px 0; }
  .pitch-inner { padding: 0 20px; }
  .pitch-headline { font-size: 28px; }
  .pitch-body p { font-size: 17px; }
  .pitch-spotter { font-size: 14px; flex-wrap: wrap; }
}
