/* ── Partnership Page ─── */

.pt-hero {
  min-height: 100vh;
  background: #0a0807;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  text-align: center;
}
.pt-hero-canvas {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(156,123,60,.12) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(156,123,60,.06) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(156,123,60,.06) 0%, transparent 50%);
}
.pt-hero-ring {
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='600'%3E%3Ccircle cx='300' cy='300' r='280' fill='none' stroke='rgba(156,123,60,0.05)' stroke-width='1'/%3E%3Ccircle cx='300' cy='300' r='220' fill='none' stroke='rgba(156,123,60,0.05)' stroke-width='1'/%3E%3C/svg%3E") center/700px no-repeat;
  opacity: .6;
}
.pt-hero-content {
  position: relative; z-index: 2;
  padding: 120px 40px 80px;
  max-width: 820px;
}
.pt-hero-eyebrow {
  font-size: .68rem; color: var(--gold);
  letter-spacing: 5px; text-transform: uppercase;
  opacity: .8; margin-bottom: 28px;
}
.pt-hero-title {
  font-family: var(--fd);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300; color: #fff;
  line-height: 1.05; margin-bottom: 32px;
}
.pt-hero-title em {
  font-style: italic; color: var(--gold);
}
.pt-hero-desc {
  font-size: 1.1rem; color: var(--tan);
  line-height: 1.9; font-weight: 300;
  max-width: 560px; margin: 0 auto 48px;
}
.pt-hero-cta-row {
  display: flex; gap: 16px; justify-content: center;
  flex-wrap: wrap;
}

/* ── What You Get ─── */
.pt-offer {
  background: var(--dark);
  padding: 100px 40px;
  border-top: 1px solid rgba(156,123,60,.12);
}
.pt-offer-inner { max-width: var(--max-w); margin: 0 auto; }
.pt-offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 64px;
}
.pt-offer-card {
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(156,123,60,.18);
  border-radius: 16px;
  padding: 36px 30px;
  transition: border-color .3s, transform .3s;
  position: relative; overflow: hidden;
}
.pt-offer-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.pt-offer-card:hover {
  border-color: rgba(156,123,60,.45);
  transform: translateY(-6px);
}
.pt-offer-card:hover::before { opacity: 1; }
.pt-offer-num {
  font-family: var(--fd); font-size: 3rem;
  color: rgba(156,123,60,.2); font-weight: 700;
  line-height: 1; margin-bottom: 16px;
}
.pt-offer-icon { font-size: 2rem; margin-bottom: 18px; display: block; }
.pt-offer-title {
  font-family: var(--fd); font-size: 1.35rem;
  color: var(--cream); font-weight: 600;
  margin-bottom: 12px;
}
.pt-offer-desc {
  font-size: .84rem; color: var(--grey);
  line-height: 1.85; font-weight: 300;
}
.pt-offer-list {
  list-style: none; margin-top: 18px;
  display: flex; flex-direction: column; gap: 8px;
}
.pt-offer-list li {
  font-size: .8rem; color: var(--tan);
  display: flex; align-items: flex-start; gap: 8px;
  line-height: 1.5;
}
.pt-offer-list li::before {
  content: '·'; color: var(--gold);
  font-size: .55rem; margin-top: 4px; flex-shrink: 0;
}

/* ── What We Need ─── */
.pt-needs {
  background: var(--bg-warm);
  padding: 100px 40px;
}
.pt-needs-inner { max-width: var(--max-w); margin: 0 auto; }
.pt-needs-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 64px;
  border: 1px solid rgba(156,123,60,.18);
  border-radius: 20px;
  overflow: hidden;
}
.pt-need-step {
  padding: 48px 36px;
  background: rgba(255,255,255,.02);
  border-right: 1px solid rgba(156,123,60,.12);
  position: relative;
}
.pt-need-step:last-child { border-right: none; }
.pt-need-num {
  font-family: var(--fd); font-size: 4.5rem;
  color: rgba(156,123,60,.12); font-weight: 700;
  line-height: 1; position: absolute;
  top: 24px; right: 28px;
}
.pt-need-icon { font-size: 2.2rem; margin-bottom: 20px; display: block; }
.pt-need-title {
  font-family: var(--fd); font-size: 1.45rem;
  color: var(--cream); font-weight: 600;
  margin-bottom: 12px; line-height: 1.25;
}
.pt-need-desc {
  font-size: .84rem; color: var(--grey);
  line-height: 1.9; font-weight: 300;
}
.pt-need-note {
  display: inline-block; margin-top: 16px;
  font-size: .72rem; color: var(--gold);
  border: 1px solid rgba(156,123,60,.3);
  border-radius: 4px; padding: 4px 12px;
  letter-spacing: 1px;
}

/* ── Timeline ─── */
.pt-timeline {
  background: var(--dark);
  padding: 100px 40px;
  border-top: 1px solid rgba(156,123,60,.1);
}
.pt-timeline-inner { max-width: var(--max-w); margin: 0 auto; }
.pt-tl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 64px;
  position: relative;
}
.pt-tl-grid::before {
  content: '';
  position: absolute; top: 44px; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 5%, rgba(156,123,60,.25) 20%, rgba(156,123,60,.25) 80%, transparent 95%);
  pointer-events: none;
}
.pt-tl-phase {
  padding: 0 32px 0 0;
  position: relative;
}
.pt-tl-phase:last-child { padding-right: 0; }
.pt-tl-dot {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--gold);
  margin-bottom: 32px;
  box-shadow: 0 0 0 4px rgba(156,123,60,.15);
  position: relative; z-index: 1;
}
.pt-tl-phase:nth-child(2) .pt-tl-dot { background: var(--gold-light); }
.pt-tl-phase:nth-child(3) .pt-tl-dot { background: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,.1); }
.pt-tl-period {
  font-size: .62rem; color: var(--gold);
  letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 10px;
}
.pt-tl-title {
  font-family: var(--fd); font-size: 1.55rem;
  color: var(--cream); font-weight: 600;
  margin-bottom: 20px; line-height: 1.2;
}
.pt-tl-tasks {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
}
.pt-tl-tasks li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .82rem; color: var(--tan); line-height: 1.55;
}
.pt-tl-tasks li .check {
  width: 16px; height: 16px; border-radius: 3px;
  border: 1px solid rgba(156,123,60,.4);
  flex-shrink: 0; margin-top: 1px;
  display: flex; align-items: center; justify-content: center;
  font-size: .5rem; color: var(--gold);
}

/* ── Financial Summary ─── */
.pt-finance {
  background: var(--bg-warm);
  padding: 100px 40px;
}
.pt-finance-inner { max-width: var(--max-w); margin: 0 auto; }
.pt-finance-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 64px;
  align-items: start;
}
.pt-terms-table {
  width: 100%;
  border-collapse: collapse;
}
.pt-terms-table tr {
  border-bottom: 1px solid rgba(156,123,60,.1);
}
.pt-terms-table tr:last-child { border-bottom: none; }
.pt-terms-table td {
  padding: 16px 8px;
  font-size: .85rem;
}
.pt-terms-table td:first-child {
  color: var(--grey); font-weight: 300;
  width: 45%;
}
.pt-terms-table td:last-child {
  color: var(--cream); font-weight: 500;
  text-align: right;
}
.pt-terms-table .highlight td:last-child {
  color: var(--gold); font-size: 1rem;
}
.pt-projection-bars {
  display: flex; flex-direction: column; gap: 20px;
}
.pt-proj-row { }
.pt-proj-label {
  display: flex; justify-content: space-between;
  margin-bottom: 8px;
}
.pt-proj-label span:first-child {
  font-size: .78rem; color: var(--tan);
}
.pt-proj-label span:last-child {
  font-size: .88rem; color: var(--cream);
  font-weight: 500;
}
.pt-proj-track {
  height: 8px; background: rgba(255,255,255,.05);
  border-radius: 4px; overflow: hidden;
}
.pt-proj-fill {
  height: 100%; border-radius: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  width: 0;
  transition: width 1.4s cubic-bezier(.25,.46,.45,.94);
}
.pt-proj-row.vis .pt-proj-fill { width: var(--w); }
.pt-proj-note {
  font-size: .68rem; color: var(--grey);
  margin-top: 6px;
}

/* ── Guarantee ─── */
.pt-guarantee {
  background: #0a0807;
  padding: 100px 40px;
  border-top: 1px solid rgba(156,123,60,.12);
  border-bottom: 1px solid rgba(156,123,60,.12);
  text-align: center;
}
.pt-guarantee-inner {
  max-width: 760px; margin: 0 auto;
}
.pt-guarantee-icon {
  font-size: 4rem; margin-bottom: 32px; display: block;
}
.pt-guarantee-title {
  font-family: var(--fd); font-size: 2.8rem;
  color: var(--cream); font-weight: 300;
  margin-bottom: 24px;
}
.pt-guarantee-title strong {
  color: var(--gold); font-weight: 600;
  font-style: italic;
}
.pt-guarantee-desc {
  font-size: .95rem; color: var(--tan);
  line-height: 1.95; font-weight: 300;
  margin-bottom: 40px;
}
.pt-guarantee-pills {
  display: flex; gap: 12px; flex-wrap: wrap;
  justify-content: center; margin-top: 36px;
}
.pt-guarantee-pill {
  padding: 10px 22px; border-radius: 100px;
  border: 1px solid rgba(156,123,60,.3);
  font-size: .78rem; color: var(--tan);
  letter-spacing: .5px;
}

/* ── The Ask ─── */
.pt-ask {
  background: linear-gradient(180deg, #0d0b08 0%, #0a0807 100%);
  padding: 120px 40px;
  text-align: center;
  position: relative; overflow: hidden;
}
.pt-ask-glow {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .6;
}
.pt-ask-inner {
  max-width: 700px; margin: 0 auto;
  position: relative; z-index: 1;
}
.pt-ask-eyebrow {
  font-size: .68rem; color: var(--gold);
  letter-spacing: 5px; text-transform: uppercase;
  opacity: .8; margin-bottom: 24px;
}
.pt-ask-title {
  font-family: var(--fd);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #fff; font-weight: 300;
  line-height: 1.15; margin-bottom: 24px;
}
.pt-ask-title em { font-style: italic; color: var(--gold); }
.pt-ask-sub {
  font-size: .95rem; color: var(--tan);
  line-height: 1.9; font-weight: 300;
  margin-bottom: 52px;
}
.pt-ask-cta-row {
  display: flex; flex-direction: column;
  align-items: center; gap: 16px;
}
.pt-ask-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 20px 52px; border-radius: 8px;
  background: linear-gradient(110deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  background-size: 200% auto;
  color: #fff; border: none; cursor: pointer;
  font-family: var(--fb); font-size: 1rem; font-weight: 500;
  letter-spacing: .5px;
  transition: background-position .5s, transform .25s, box-shadow .25s;
}
.pt-ask-btn:hover {
  background-position: right center;
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(156,123,60,.4);
}
.pt-ask-btn-icon { font-size: 1.1rem; }
.pt-ask-note {
  font-size: .75rem; color: var(--grey);
  letter-spacing: .5px;
}

/* ── Reveal ─── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.vis { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

@media(max-width:768px) {
  .pt-hero-content  { padding: 80px 20px 56px; }
  .pt-offer,
  .pt-needs,
  .pt-timeline,
  .pt-finance,
  .pt-guarantee     { padding: 56px 20px; }
  .pt-ask           { padding: 80px 20px; }
  .pt-offer-grid    { grid-template-columns: 1fr; }
  .pt-needs-steps   { grid-template-columns: 1fr; }
  .pt-tl-grid       { grid-template-columns: 1fr; }
  .pt-finance-layout{ grid-template-columns: 1fr; gap: 32px; }
}