/* ============================================================
   Investor pitch — additive styles on top of site.css + site-dark.css
   ============================================================ */

/* Gradient text for hero accents and KPI numbers */
.grad-text {
  background: linear-gradient(135deg, #FB923C 0%, #FCD34D 60%, #FB923C 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- HERO ---------- */
.pitch-hero {
  position: relative;
  padding: clamp(20px, 3vw, 40px) 0 clamp(64px, 8vw, 120px);
  background:
    radial-gradient(ellipse 60% 50% at 80% 0%, rgba(251,146,60,0.22), transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 30%, rgba(124,58,237,0.10), transparent 60%),
    linear-gradient(180deg, #0A0D14 0%, #0A0D14 100%);
  overflow: hidden;
}
.pitch-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 80% at 50% 30%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 50% 30%, #000 0%, transparent 70%);
  pointer-events: none;
}
.pitch-hero .container { position: relative; z-index: 1; }

.pitch-hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: rgba(251,146,60,0.12);
  border: 1px solid rgba(251,146,60,0.3);
  color: #FDBA74;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 32px;
}
.pitch-hero-tag .tag-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #FB923C;
  box-shadow: 0 0 12px #FB923C;
}

.pitch-hero-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(40px, 6.5vw, 88px);
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: #F5F7FB;
  margin: 0 0 32px;
  text-wrap: balance;
}
.pitch-hero-sub {
  font-size: clamp(16px, 1.7vw, 21px);
  line-height: 1.55;
  color: #B4BBCA;
  max-width: 820px;
  margin: 0 0 44px;
  text-wrap: pretty;
}
.pitch-cta-row {
  display: flex; gap: 14px; flex-wrap: wrap; align-items: center;
  margin-bottom: 64px;
}

.pitch-hero-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 900px) {
  .pitch-hero-kpis { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
}
@media (max-width: 480px) {
  .pitch-hero-kpis { grid-template-columns: 1fr 1fr; }
}
.kpi { display: flex; flex-direction: column; gap: 8px; }
.kpi-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(28px, 3.4vw, 44px);
  letter-spacing: -0.03em;
  line-height: 1;
  color: #F5F7FB;
}
.kpi-label {
  font-size: 13px; line-height: 1.45;
  color: #8891A3;
}

/* ---------- PROBLEM ---------- */
.problem-card { padding: 32px; }
.problem-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.14em;
  color: #FB923C;
  margin-bottom: 20px;
}
.problem-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: #F5F7FB;
  margin: 0 0 12px;
}
.problem-body {
  font-size: 15px; line-height: 1.6;
  color: #B4BBCA;
  margin: 0;
}
.problem-conclusion {
  margin-top: 48px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: #F5F7FB;
  text-wrap: balance;
  max-width: 920px;
}

/* ---------- SOLUTION ---------- */
.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
@media (max-width: 960px) {
  .solution-grid { grid-template-columns: 1fr; }
}
.solution-lead {
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.5;
  color: #B4BBCA;
  margin: 0 0 32px;
  max-width: 540px;
}
.solution-flow {
  display: flex; flex-direction: column; gap: 24px;
}
.flow-step { display: flex; gap: 18px; align-items: flex-start; }
.flow-dot {
  width: 40px; height: 40px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 800; font-size: 16px;
  background: rgba(255,255,255,0.06);
  color: #F5F7FB;
  border: 1px solid rgba(255,255,255,0.12);
  flex-shrink: 0;
}
.flow-dot.grad-dot {
  background: linear-gradient(135deg, #FB923C 0%, #F97316 100%);
  color: #fff;
  border: none;
  box-shadow: 0 0 24px rgba(251,146,60,0.5);
}
.flow-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 17px;
  color: #F5F7FB;
  letter-spacing: -0.01em;
}
.flow-body {
  font-size: 14px; line-height: 1.55;
  color: #8891A3;
  margin-top: 4px;
}
.flow-body a {
  display: inline;
  margin-left: 6px;
  color: #FDBA74;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(251, 146, 60, 0.45);
  text-underline-offset: 3px;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}
.flow-body a:hover {
  color: #FB923C;
  text-decoration-color: rgba(251, 146, 60, 0.85);
}

.solution-media {
  display: flex; flex-direction: column; gap: 20px;
}
.solution-shot-2 {
  margin-left: clamp(20px, 5vw, 60px);
}

/* ---------- MARKET ---------- */
.market-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 56px;
}
@media (max-width: 900px) {
  .market-grid { grid-template-columns: 1fr; }
}
.market-card {
  padding: 36px 32px;
  background: #121826;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-3xl);
  position: relative;
  overflow: hidden;
}
.market-card-tam {
  background: linear-gradient(160deg, rgba(251,146,60,0.18) 0%, #121826 60%);
  border-color: rgba(251,146,60,0.25);
}
.market-card-sam {
  background: linear-gradient(160deg, rgba(251,146,60,0.10) 0%, #121826 60%);
}
.market-tag {
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: #FDBA74;
  margin-bottom: 16px;
}
.market-card-som .market-tag { color: #8891A3; }
.market-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(36px, 4.4vw, 56px);
  letter-spacing: -0.035em;
  line-height: 1;
  color: #F5F7FB;
  margin-bottom: 12px;
}
.market-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  color: #F5F7FB;
  margin-bottom: 8px;
}
.market-note {
  font-size: 13px; line-height: 1.55;
  color: #8891A3;
}

.market-trends-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 20px;
  color: #F5F7FB;
  margin: 0 0 24px;
}
.trend {
  display: flex; flex-direction: column; gap: 8px;
}
.trend-arrow {
  font-size: 28px; color: #FB923C;
  font-weight: 800;
  line-height: 1;
}
.trend-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 17px;
  color: #F5F7FB;
  letter-spacing: -0.01em;
}
.trend-body {
  font-size: 14px; line-height: 1.55;
  color: #8891A3;
}

/* ---------- PRODUCT STACK ---------- */
.product-stack {
  display: flex; flex-direction: column; gap: 20px;
}
.layer {
  display: grid;
  grid-template-columns: 80px 1fr 1.2fr;
  gap: 32px;
  align-items: center;
  padding: 32px;
  background: #121826;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-3xl);
}
@media (max-width: 900px) {
  .layer { grid-template-columns: 1fr; gap: 24px; padding: 28px; }
  .layer-shot { order: -1; }
}
.layer-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 32px;
  letter-spacing: -0.04em;
  color: #FB923C;
  text-align: center;
  align-self: start;
}
@media (max-width: 900px) {
  .layer-num { text-align: left; font-size: 24px; }
}
.layer-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(20px, 2.2vw, 26px);
  letter-spacing: -0.02em;
  color: #F5F7FB;
  margin-bottom: 12px;
}
.layer-body {
  font-size: 15px; line-height: 1.6;
  color: #B4BBCA;
  margin-bottom: 16px;
}
.layer-meta {
  display: inline-block;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: rgba(251,146,60,0.12);
  color: #FDBA74;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.04em;
}

/* ---------- MOAT ---------- */
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 700px) { .grid-2 { grid-template-columns: 1fr; } }

.moat-card { padding: 32px; }
.moat-icon {
  font-size: 32px;
  margin-bottom: 16px;
  filter: grayscale(0.2);
}
.moat-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: #F5F7FB;
  margin: 0 0 12px;
}
.moat-body {
  font-size: 15px; line-height: 1.6;
  color: #B4BBCA;
  margin: 0;
}
.moat-body a {
  color: #FDBA74;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(251, 146, 60, 0.45);
  text-underline-offset: 3px;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}
.moat-body a:hover {
  color: #FB923C;
  text-decoration-color: rgba(251, 146, 60, 0.85);
}

/* ---------- TRACTION ---------- */
.traction-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
@media (max-width: 900px) {
  .traction-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .traction-stats { grid-template-columns: 1fr 1fr; }
}
.traction-stat {
  padding: 28px;
  background: #121826;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-3xl);
}
.traction-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.03em;
  line-height: 1;
  color: #F5F7FB;
  margin-bottom: 10px;
}
.traction-label {
  font-size: 14px;
  color: #B4BBCA;
  margin-bottom: 8px;
}
.traction-delta {
  font-size: 12px; font-weight: 700;
  color: #4ADE80;
  letter-spacing: 0.02em;
}

.traction-logos { margin-top: 24px; }
.logo-strip-label {
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: #8891A3;
  margin-bottom: 14px;
}
.logo-strip { display: flex; flex-wrap: wrap; gap: 10px; }
.logo-chip {
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: #CBD5E1;
  font-size: 14px; font-weight: 600;
  transition: background 180ms ease-out, border-color 180ms ease-out, color 180ms ease-out;
}
@media (hover: hover) and (pointer: fine) {
  .logo-chip:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(251, 146, 60, 0.35);
    color: #F5F7FB;
  }
}

/* ---------- TEAM ---------- */
.team-grid { margin-top: 8px; }
.team-card {
  padding: 28px;
  background: #121826;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-3xl);
  display: flex; flex-direction: column;
  gap: 6px;
}
.team-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FB923C 0%, #F97316 100%);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 800; font-size: 22px;
  margin-bottom: 12px;
}
.team-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 19px;
  color: #F5F7FB;
  letter-spacing: -0.01em;
}
.team-role {
  font-size: 13px; font-weight: 700;
  color: #FDBA74;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.team-bio {
  font-size: 14px; line-height: 1.55;
  color: #8891A3;
}

/* ---------- ASK ---------- */
.section-ask {
  background:
    radial-gradient(ellipse 50% 60% at 90% 30%, rgba(251,146,60,0.15), transparent 60%),
    linear-gradient(180deg, #0A0D14 0%, #0F1420 100%);
}
.ask-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 56px);
  align-items: start;
}
@media (max-width: 900px) {
  .ask-grid { grid-template-columns: 1fr; }
}
.ask-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: #F5F7FB;
  margin: 0 0 40px;
  text-wrap: balance;
}

.ask-allocation { display: flex; flex-direction: column; gap: 18px; }
.alloc-row { display: flex; flex-direction: column; gap: 8px; }
.alloc-bar {
  width: 100%;
  height: 8px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.06);
  overflow: hidden;
}
.alloc-fill {
  height: 100%;
  border-radius: var(--radius-pill);
  box-shadow: 0 0 16px rgba(251,146,60,0.4);
}
.alloc-meta {
  display: flex; justify-content: space-between; align-items: baseline;
}
.alloc-label { font-size: 14px; color: #B4BBCA; font-weight: 600; }
.alloc-pct {
  font-family: var(--font-heading); font-weight: 800;
  font-size: 16px; color: #F5F7FB;
  letter-spacing: -0.01em;
}

.ask-card { padding: 36px; }
.ask-card-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 20px;
  color: #F5F7FB;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.ask-list {
  list-style: none; padding: 0; margin: 0 0 32px;
  display: flex; flex-direction: column; gap: 12px;
  font-size: 15px; line-height: 1.55;
  color: #B4BBCA;
}
.ask-list b { color: #F5F7FB; }
.ask-list li {
  padding-left: 16px; position: relative;
}
.ask-list li::before {
  content: "·";
  position: absolute; left: 0; top: -2px;
  color: #FB923C;
  font-weight: 800;
  font-size: 22px;
}

.ask-contact {
  display: flex; flex-direction: column; gap: 14px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 24px;
}
.ask-contact-row { display: flex; gap: 14px; align-items: center; }
.ask-contact-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: #F5F7FB;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.ask-contact-label {
  font-size: 12px; font-weight: 700;
  color: #8891A3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.ask-contact-value {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  color: #F5F7FB;
  letter-spacing: -0.01em;
}

.ask-cta {
  width: 100%;
  padding: 18px 28px;
  font-size: 16px;
}

/* ---------- Motion (pitch-only surfaces) ---------- */
.layer,
.market-card,
.traction-stat,
.team-card {
  transition:
    transform 200ms ease-out,
    box-shadow 200ms ease-out,
    border-color 200ms ease-out;
}
@media (hover: hover) and (pointer: fine) {
  .layer:hover,
  .market-card:hover,
  .traction-stat:hover,
  .team-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: 0 28px 72px -26px rgba(0, 0, 0, 0.65);
  }
}


.pitch-hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  margin: 0 0 48px;
  font-size: 14px;
  color: #8891A3;
}
.pitch-hero-links a {
  color: #CBD5E1;
  text-decoration: underline;
  text-decoration-color: rgba(148, 163, 184, 0.35);
  text-underline-offset: 3px;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}
.pitch-hero-links a:hover {
  color: #FDBA74;
  text-decoration-color: rgba(251, 146, 60, 0.55);
}

a.ask-contact-value {
  transition: color 160ms ease;
  cursor: pointer;
}
a.ask-contact-value:hover {
  color: #FDBA74;
}
a.ask-contact-value:focus-visible {
  outline: none;
  color: #FDBA74;
  box-shadow: 0 0 0 2px rgba(251, 146, 60, 0.45);
  border-radius: 4px;
}

/* Cooperation block (replaces former #ask) */
.pitch-cooperation .apply-title {
  margin-bottom: clamp(16px, 2.2vw, 28px);
}
.pitch-cooperation-note {
  margin: 0;
  max-width: 40rem;
  line-height: 1.55;
}
.pitch-cooperation-note a {
  color: #FDBA74;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.pitch-cooperation-note a:hover {
  color: #FB923C;
}

@media (prefers-reduced-motion: reduce) {
  .layer,
  .market-card,
  .traction-stat,
  .team-card,
  .logo-chip {
    transition: none !important;
  }
  .layer:hover,
  .market-card:hover,
  .traction-stat:hover,
  .team-card:hover {
    transform: none !important;
  }
}
