/* ═══════════════════════════════════════
   DYNK — Founders Page Styles
   ═══════════════════════════════════════ */

/* ── HERO ── */
.f-hero .hero-inner {
  align-items: center;
  padding-top: 110px;
}

.f-hero .hero-text {
  gap: 24px;
}

.f-hero-content {
  display: flex; flex-direction: column; gap: 24px;
}

/* ── ENTRANCE ANIMATIONS ── */
.f-hero-anim {
  opacity: 0;
  transform: translateY(28px);
  animation: f-hero-rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--delay, 0s);
}
@keyframes f-hero-rise {
  to { opacity: 1; transform: translateY(0); }
}

.f-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 900; letter-spacing: 0.03em; line-height: 0.95;
  color: #1A1A1A;
  max-width: 580px;
}
.f-hero-sub {
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 400; color: #5C5E68;
  line-height: 1.7; text-wrap: pretty; max-width: 600px;
}

/* ── ACTIONS ── */
.f-hero-actions {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  justify-content: flex-start;
}
.f-hero-learn {
  font-size: 15px; font-weight: 500; color: #5C5E68;
  text-decoration: none; border-bottom: 1px solid rgba(92,94,104,0.3);
  padding-bottom: 2px; transition: color 0.2s, border-color 0.2s;
}
.f-hero-learn:hover { color: #1A1A1A; border-color: #1A1A1A; }

/* ── PROGRESS BAR ── */
.f-hero-progress-wrap {
  width: 100%; max-width: 520px;
}
.f-hero-progress-header {
  display: flex; justify-content: space-between;
  font-size: 13px; font-weight: 500; color: #8A8D9A;
  margin-bottom: 10px;
}
.f-hero-progress-bar {
  width: 100%; height: 6px; border-radius: 999px;
  background: rgba(0,0,0,0.08);
  overflow: hidden;
}
.f-hero-progress-fill {
  height: 100%; border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--orange-deep));
  animation: f-progress-in 1.4s cubic-bezier(0.16, 1, 0.3, 1) 1s both;
  transform-origin: left;
}
@keyframes f-progress-in {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

/* ── STATS STRIP ── */
.f-hero-stats {
  display: flex; align-items: center;
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 20px;
  padding: 20px 0;
  width: 100%; max-width: 580px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.f-hero-stat {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 5px;
}
.f-hero-stat-val {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 800; color: #1A1A1A; line-height: 1;
}
.f-hero-stat-label {
  font-size: 11px; font-weight: 600; color: #8A8D9A;
  text-transform: uppercase; letter-spacing: 0.1em;
}
.f-hero-stat-div {
  width: 1px; height: 36px; background: rgba(0,0,0,0.09);
}

/* ── HERO EYEBROW ── */
.f-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px;
  background: rgba(255,122,26,0.08);
  border: 1px solid rgba(255,122,26,0.18);
  border-radius: 999px;
  font-size: 12px; font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.1em; text-transform: uppercase;
}
.f-hero-eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 10px var(--orange);
  animation: f-dot-pulse 2.5s ease-in-out infinite;
}
@keyframes f-dot-pulse {
  0%, 100% { box-shadow: 0 0 6px var(--orange); }
  50% { box-shadow: 0 0 14px var(--orange), 0 0 4px var(--orange); }
}

/* ── PROBLEM STATS ── */
.fp-stats-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 48px;
}
.fp-stat-card {
  background: rgba(255,255,255,0.7); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.7); border-radius: 24px;
  padding: 32px 24px; text-align: left;
}
.fp-stat-val {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 42px); font-weight: 800;
  color: #1A1A1A; margin-bottom: 4px;
}
.fp-stat-label {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 600; color: var(--orange);
  letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 10px;
}
.fp-stat-card p {
  font-size: 14px; color: #5C5E68; line-height: 1.6; text-wrap: pretty;
}

/* ── COMPARISON TABLE ── */
.fp-compare {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.fp-compare-col {
  border-radius: 24px; padding: 36px 32px;
}
.fp-compare-col--old {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
}
.fp-compare-col--new {
  background: linear-gradient(135deg, rgba(255,122,26,0.08), rgba(255,122,26,0.02));
  border: 1px solid rgba(255,122,26,0.2);
}
.fp-compare-col h4 {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 700; color: var(--text-1); margin-bottom: 4px;
}
.fp-compare-sub {
  font-size: 13px; color: var(--text-3); display: block; margin-bottom: 20px;
}
.fp-compare-col ul {
  list-style: none; display: flex; flex-direction: column; gap: 12px;
}
.fp-compare-col ul li {
  font-size: 15px; color: var(--text-2); padding-left: 24px; position: relative;
}
.fp-compare-col--new ul li::before {
  content: '✓'; position: absolute; left: 0;
  color: #22C55E; font-weight: 700;
}
.fp-compare-col--old ul li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--text-3);
}
.fp-compare-neg { color: var(--text-3) !important; }
.fp-compare-neg::before { color: #EF4444 !important; content: '✕' !important; }

/* ── COMING SOON TAG ── */
.fp-coming-soon {
  display: inline-block;
  padding: 2px 8px;
  background: rgba(255,122,26,0.12);
  border: 1px solid rgba(255,122,26,0.3);
  border-radius: 999px;
  font-size: 10px; font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.08em; text-transform: uppercase;
  vertical-align: middle; margin-left: 6px;
  font-family: var(--font-body);
}

/* ── BENEFIT CARDS ── */
.fp-benefit-num {
  font-family: var(--font-heading);
  font-size: 32px; font-weight: 800;
  color: var(--orange); margin-bottom: 4px;
}

/* ── REVENUE ── */
.fp-revenue-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; margin-top: 48px; margin-bottom: 48px;
}
.fp-rev-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border); border-radius: 20px;
  padding: 28px 22px;
}
.fp-rev-type {
  font-size: 11px; font-weight: 600; color: var(--orange);
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 12px;
}
.fp-rev-card h4 {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 700; color: var(--text-1); margin-bottom: 8px;
}
.fp-rev-card p {
  font-size: 14px; color: var(--text-2); line-height: 1.5;
}

.fp-projections {
  display: flex; justify-content: center; gap: 0;
  border: 1px solid var(--border); border-radius: 20px;
  overflow: hidden;
}
.fp-proj {
  flex: 1; text-align: center; padding: 28px 20px;
  border-right: 1px solid var(--border);
}
.fp-proj:last-child { border-right: none; }
.fp-proj-year {
  font-family: var(--font-heading);
  font-size: 13px; font-weight: 700; color: var(--orange);
  letter-spacing: 0.06em; margin-bottom: 8px;
}
.fp-proj-val {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 32px); font-weight: 800;
  color: var(--text-1); margin-bottom: 4px;
}
.fp-proj-desc {
  font-size: 13px; color: var(--text-3);
}

/* ── TIMELINE ── */
.fp-timeline {
  margin-top: 48px;
  display: flex; flex-direction: column; gap: 0;
  position: relative;
  padding-left: 32px;
}
.fp-timeline::before {
  content: ''; position: absolute;
  left: 7px; top: 8px; bottom: 8px; width: 2px;
  background: linear-gradient(to bottom, var(--orange), rgba(0,0,0,0.1));
  border-radius: 1px;
}
.fp-tl-item {
  display: flex; gap: 24px; padding: 20px 0;
  position: relative;
}
.fp-tl-marker {
  width: 16px; height: 16px; border-radius: 50%; flex-shrink: 0;
  background: rgba(0,0,0,0.15);
  border: 2px solid rgba(0,0,0,0.1);
  position: absolute; left: -32px; top: 24px;
  transform: translateX(-1px);
}
.fp-tl-item--done .fp-tl-marker {
  background: var(--orange); border-color: var(--orange);
  box-shadow: 0 0 8px rgba(255,122,26,0.3);
}
.fp-tl-item--current .fp-tl-marker {
  background: #22C55E; border-color: #22C55E;
  box-shadow: 0 0 10px rgba(34,197,94,0.4);
  animation: marker-pulse 2s ease-in-out infinite;
}
@keyframes marker-pulse {
  0%, 100% { box-shadow: 0 0 6px rgba(34,197,94,0.4); }
  50% { box-shadow: 0 0 16px rgba(34,197,94,0.6); }
}
.fp-tl-content h4 {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 700; color: #1A1A1A; margin-bottom: 8px;
}
.fp-tl-content p {
  font-size: 15px; color: #5C5E68; line-height: 1.6; text-wrap: pretty;
}
.fp-tl-badge {
  display: inline-block; padding: 3px 10px;
  background: #22C55E; color: #fff;
  font-size: 11px; font-weight: 700; border-radius: 999px;
  letter-spacing: 0.04em; text-transform: uppercase;
  vertical-align: middle; margin-left: 8px;
}

/* ── CONTACT CTA ── */
.fp-email-form {
  width: 100%; max-width: 520px; margin-top: 8px;
}
.fp-email-input-wrap {
  display: flex; gap: 0;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 999px;
  padding: 6px 6px 6px 24px;
  transition: border-color 0.3s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.fp-email-input-wrap:focus-within {
  border-color: var(--orange);
}
.fp-email-input {
  flex: 1; border: none; background: none; outline: none;
  font-family: var(--font-body);
  font-size: 16px; color: #1A1A1A;
  min-width: 0;
}
.fp-email-input::placeholder {
  color: #9CA3AF;
}
.fp-email-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border: none; cursor: pointer;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: #fff; font-family: var(--font-body);
  font-weight: 600; font-size: 15px;
  border-radius: 999px; white-space: nowrap;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s;
  box-shadow: 0 6px 24px rgba(255,122,26,0.25);
}
.fp-email-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 32px rgba(255,122,26,0.35);
}
.fp-email-note {
  font-size: 13px; color: #9CA3AF;
  text-align: center; margin-top: 12px;
}
.fp-email-success {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.fp-success-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: #22C55E;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; font-weight: 700; color: #fff;
  box-shadow: 0 0 20px rgba(34,197,94,0.3);
}
.fp-success-msg {
  font-size: 18px; font-weight: 500; color: #1A1A1A;
}
.fp-contact-email {
  font-family: var(--font-heading);
  font-size: 18px; font-weight: 600;
  color: var(--orange); letter-spacing: 0.04em;
  margin-top: 8px;
}
.fp-contact-detail {
  font-size: 14px; color: #9CA3AF; margin-top: 4px;
}

/* ── FOUNDERS CTA (light) ── */
.f-cta {
  position: relative; padding: 140px 0 100px;
  background:
    radial-gradient(140% 80% at 78% 12%, #F8C9A5 0%, rgba(248,201,165,0) 55%),
    radial-gradient(120% 70% at 12% 8%, #FFE0CB 0%, rgba(255,224,203,0) 50%),
    radial-gradient(140% 80% at 90% 92%, #C7D2EE 0%, rgba(199,210,238,0) 55%),
    radial-gradient(160% 90% at 8% 90%, #DCDFEB 0%, rgba(220,223,235,0) 60%),
    linear-gradient(180deg, #F0E5DA 0%, #E5E6EE 50%, #DBDDE8 100%);
  overflow: hidden;
}
.f-cta-inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 24px;
  max-width: 1200px; margin: 0 auto; padding: 0 40px;
  text-align: center;
}
.f-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 700; color: #1A1A1A;
  line-height: 1.1; letter-spacing: 0.02em;
}
.f-cta-desc {
  font-size: 18px; color: #5C5E68;
  line-height: 1.65; max-width: 520px; text-wrap: pretty;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .fp-stats-row { grid-template-columns: 1fr; }
  .fp-compare { grid-template-columns: 1fr; }
  .fp-revenue-grid { grid-template-columns: repeat(2, 1fr); }
  .fp-projections { flex-direction: column; }
  .fp-proj { border-right: none; border-bottom: 1px solid var(--border); }
  .fp-proj:last-child { border-bottom: none; }
  .wallet-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 600px) {
  .fp-revenue-grid { grid-template-columns: 1fr; }
  .wallet-grid { grid-template-columns: 1fr !important; }
  .f-hero-actions { justify-content: center; }
  .fp-email-input-wrap {
    flex-direction: column;
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
  }
  .fp-email-input {
    padding: 16px 20px;
    font-size: 16px;
  }
  .fp-email-btn {
    border-radius: 0;
    justify-content: center;
    padding: 16px 28px;
  }
  .f-cta-inner { padding: 0 20px; }
  .fp-email-form { max-width: 100%; }
}
