/* backend/domains/layout/static/layout/css/investors.css */

/* =====================================================
   Navbar Investor CTA
   ===================================================== */

.custom-navbar-brand {
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.investor-link:focus,
.investor-link:active {
  color: #ffffff;
  text-decoration: none;
}

/* =====================================================
   Investors Page
   ===================================================== */

:root {
  --investor-blue: #0f5fbb;
  --investor-dark: #0b1f3a;
  --investor-text: #23324a;
  --investor-muted: #667085;
  --investor-bg: #f4f8ff;
  --investor-card: #ffffff;
  --investor-border: rgba(15, 95, 187, 0.44);
  --investor-shadow: 0 18px 45px rgba(15, 95, 187, 0.12);
}

.investors-container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.investors-hero {
  padding: 28px 0 28px;
  background:
    radial-gradient(circle at 80% 20%, rgba(54, 162, 255, 0.22), transparent 34%),
    linear-gradient(135deg, #f7fbff 0%, #eaf3ff 100%);
}

.investors-hero-grid,
.investors-two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--investor-blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.investors-hero h1,
.investors-section h2 {
  margin: 0 0 14px;
  color: var(--investor-dark);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.investors-section h2 {
  font-size: clamp(30px, 4vw, 48px);
}

.hero-lead,
.section-header p,
.investors-two-col p {
  color: var(--investor-text);
  font-size: 16px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.hero-logo {
  display: block;
  width: 220px;
  max-width: 100%;
  height: auto;
  margin: 0 auto 14px;
  transition:
    transform 0.3s ease,
    filter 0.3s ease;
}

.hero-logo:hover {
  transform: scale(1.03);
  filter: drop-shadow(0 0 18px rgba(0, 168, 255, 0.35));
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #0f5fbb, #00a8ff);
  box-shadow: 0 12px 30px rgba(15, 95, 187, 0.28);
}

.btn-secondary {
  color: var(--investor-blue);
  background: #ffffff;
  border: 1px solid var(--investor-border);
}

.investors-hero-card,
.info-card,
.market-card,
.contact-card,
.revenue-list > div {
  background: var(--investor-card);
  border: 1px solid var(--investor-border);
  border-radius: 8px;
  box-shadow: var(--investor-shadow);
}

.investors-hero-card {
  position: relative;
  min-height: 300px;
  padding: 28px;
  overflow: hidden;
}

.investors-hero-card h3 {
  margin: 0 0 8px;
  color: var(--investor-dark);
  font-size: 28px;
}

.investors-hero-card p {
  color: var(--investor-muted);
}

.investors-section {
  padding: 28px 0;
  background: #ffffff;
}

.soft-bg {
  background: var(--investor-bg);
}

.section-header {
  max-width: 820px;
  margin-bottom: 28px;
}

.investors-grid-3,
.market-grid,
.comparable-grid {
  display: grid;
  gap: 18px;
}

.investors-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.info-card {
  padding: 22px;
}

.info-card h3,
.revenue-list h3,
.contact-card h3 {
  margin: 0 0 12px;
  color: var(--investor-dark);
  font-size: 22px;
}

.info-card p,
.revenue-list p,
.contact-card p {
  margin: 0;
  color: var(--investor-muted);
  line-height: 1.6;
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  padding: 14px 18px;
  color: var(--investor-text);
  background: #ffffff;
  border: 1px solid var(--investor-border);
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(15, 95, 187, 0.08);
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.module-grid div,
.comparable-grid div {
  padding: 16px;
  color: var(--investor-dark);
  font-weight: 800;
  text-align: center;
  background: linear-gradient(180deg, #ffffff, #f4f9ff);
  border: 1px solid var(--investor-border);
  border-radius: 20px;
}

.market-grid {
  grid-template-columns: repeat(4, 1fr);
}

.market-card {
  padding: 24px 18px;
  text-align: center;
}

.market-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--investor-blue);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1;
}

.market-card span {
  color: var(--investor-text);
  font-weight: 700;
}

.revenue-list {
  display: grid;
  gap: 18px;
}

.revenue-list > div {
  padding: 18px;
}

.comparable-grid {
  grid-template-columns: repeat(3, 1fr);
}

.contact-card {
  padding: 26px;
}

.contact-card a {
  color: var(--investor-blue);
  font-weight: 700;
  text-decoration: none;
}

/* =====================================================
   Investor Access Page — Balanced Compact Layout
   ===================================================== */

.investor-access-compact {
  padding-top: 36px !important;
  padding-bottom: 36px !important;
}

.investor-access-compact .investors-hero-grid {
  gap: 32px !important;
}

.investor-access-compact h1 {
  font-size: clamp(32px, 3.8vw, 48px) !important;
  line-height: 1.1 !important;
  margin-bottom: 12px !important;
}

.investor-access-compact .eyebrow {
  margin-bottom: 10px !important;
}

.investor-access-compact .hero-lead {
  font-size: 16px !important;
  line-height: 1.55 !important;
}

.investor-access-compact .hero-actions {
  margin-top: 20px !important;
}

.investor-access-compact .btn-primary,
.investor-access-compact .btn-secondary {
  min-height: 46px !important;
  padding: 0 20px !important;
}

.investor-access-compact .investors-hero-card {
  min-height: 260px !important;
  padding: 24px !important;
}

.investor-access-compact .hero-logo {
  width: 180px !important;
  margin-bottom: 12px !important;
}

.investor-access-compact .investors-hero-card h3 {
  font-size: 24px !important;
}

.investor-access-steps {
  padding-top: 36px !important;
  padding-bottom: 40px !important;
}

.investor-access-steps .section-header {
  margin-bottom: 24px !important;
}

.investor-access-steps h2 {
  font-size: clamp(28px, 3.2vw, 38px) !important;
  margin-bottom: 10px !important;
}

.investor-access-steps .section-header p {
  font-size: 16px !important;
  line-height: 1.55 !important;
}

.investor-access-steps .investors-grid-3 {
  gap: 18px !important;
}

.investor-access-steps .info-card {
  padding: 22px !important;
}

.investor-access-steps .info-card h3 {
  font-size: 20px !important;
  margin-bottom: 8px !important;
}

.investor-access-steps .info-card p {
  font-size: 15px !important;
  line-height: 1.55 !important;
}
/* =====================================================
   Investor Dashboard Material Cards
   ===================================================== */

.investor-material-card {
  display: block;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.investor-material-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 168, 255, 0.45);
  box-shadow: 0 22px 55px rgba(15, 95, 187, 0.18);
}

.investor-material-card h3,
.investor-material-card p {
  text-decoration: none;
}

.investor-material-card:hover h3 {
  color: var(--investor-blue);
}

/* =====================================================
   Investor Material Access States
   ===================================================== */

.investor-material-locked {
  opacity: 0.62;
  cursor: not-allowed;
  filter: grayscale(0.15);
}

.investor-material-card small {
  display: block;
  margin-top: 12px;
  color: var(--investor-muted);
  font-weight: 700;
}

/* =====================================================
   Investor Material Visual Cards
   ===================================================== */

.investor-access-card {
  margin-bottom: 32px;
}

.investor-material-card {
  overflow: hidden;
  padding: 0;
}

.investor-material-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center;
}

.investor-material-body {
  padding: 22px;
}

.investor-material-locked {
  opacity: 0.68;
  cursor: not-allowed;
  filter: grayscale(0.2);
}

.investor-material-card small {
  display: block;
  margin-top: 12px;
  color: var(--investor-muted);
  font-weight: 700;
}

/* =====================================================
   Investor Dashboard Compact Material Cards
   ===================================================== */

.investor-dashboard-material-card {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 96px;
  padding: 16px 18px;
}

.investor-dashboard-material-card .investor-material-image {
  display: block;
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 8px;
}

.investor-material-preview {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}

.investor-material-icon {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--investor-blue);
  background: rgba(15, 95, 187, 0.08);
  border: 1px solid rgba(15, 95, 187, 0.18);
  border-radius: 16px;
  font-size: 22px;
  font-weight: 800;
}

.investor-dashboard-material-card .investor-material-body {
  padding: 0;
  text-align: left;
}

.investor-dashboard-material-card h3,
.investor-dashboard-material-card h4 {
  margin: 0 0 5px;
  font-size: 17px;
  line-height: 1.2;
}

.investor-dashboard-material-card p {
  margin: 0 0 6px;
  font-size: 13px;
  line-height: 1.35;
}

.investor-dashboard-material-card small {
  margin-top: 0;
  font-size: 11px;
}

/* =====================================================
   Investor Dashboard Profile Cards
   ===================================================== */

.investor-two-col-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.investor-two-col-grid .contact-card {
  width: 100%;
  box-sizing: border-box;
}

/* =====================================================
   Founder Letter Button
   ===================================================== */

.founder-letter-action {
  margin-top: 18px;
}

.founder-letter-button {
  position: relative;
  gap: 10px;
}

.founder-letter-indicator {
  width: 10px;
  height: 10px;
  display: inline-block;
  background: #00a8ff;
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(0, 168, 255, 0.6);
}

.founder-letter-unread .founder-letter-indicator {
  animation: founderLetterPulse 1.4s infinite;
}

@keyframes founderLetterPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 168, 255, 0.65);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(0, 168, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 168, 255, 0);
  }
}

.founder-letter-modal-content {
  border: 1px solid var(--investor-border);
  border-radius: 24px;
  box-shadow: var(--investor-shadow);
}

.founder-letter-body p {
  color: var(--investor-text);
  line-height: 1.65;
}

/* =====================================================
   Investor Image Preview Modal
   ===================================================== */

.investor-image-modal .modal-backdrop {
  background: rgba(11, 31, 58, 0.55);
}

.investor-image-modal-dialog {
  max-width: min(92vw, 1180px);
  margin: 1.75rem auto;
}

.investor-image-modal-content {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.investor-image-modal-body {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 80px);
  padding: 24px;
}

.investor-image-modal-img {
  display: block;
  max-width: min(88vw, 1100px);
  max-height: 82vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 22px;
  box-shadow: 0 28px 80px rgba(11, 31, 58, 0.38);
  cursor: zoom-out;
}

.investor-image-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  width: 42px;
  height: 42px;
  color: #ffffff;
  font-size: 30px;
  line-height: 1;
  background: rgba(11, 31, 58, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  cursor: pointer;
}

.investor-image-modal-close:hover {
  background: rgba(15, 95, 187, 0.82);
}

/* =====================================================
   Investor Communication Cards
   Founder's Letter + Investor Updates
   ===================================================== */

.investor-communication-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
  margin: 28px 0 34px;
}

.investor-communication-card {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(180px, 260px);
  align-items: center;
  min-height: 170px;
  padding: 28px;
  overflow: hidden;
  border: none;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(15, 95, 187, 0.10);
}

.founder-letter-card {
  grid-template-columns: minmax(240px, 1fr) minmax(220px, 300px);
}

.investor-updates-card {
  grid-template-columns: minmax(240px, 1fr) minmax(140px, 180px);
}

.investor-communication-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(15, 95, 187, 0.16);
}

.investor-communication-content {
  flex: 1 1 auto;
  min-width: 0;
}

.investor-communication-content h4 {
  margin: 0 0 10px;
  color: var(--investor-dark);
  font-size: 24px;
  line-height: 1.2;
}

.investor-communication-content p {
  margin: 0 0 18px;
  color: var(--investor-text);
  font-size: 15px;
  line-height: 1.45;
}

/* Founder's Letter */

.founder-letter-button {
  gap: 10px;
  min-height: 46px;
  padding: 0 20px;
}

.founder-letter-icon {
  font-size: 17px;
}

.founder-envelope-button {
  justify-self: end;
  width: 100%;
  max-width: 300px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.founder-envelope-media {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.founder-envelope-button:hover .founder-envelope-media {
  transform: translateY(-4px) scale(1.02);
}

/* Investor Updates */

.investor-updates-button {
  gap: 10px;
  min-height: 46px;
  padding: 0 20px;
}

.investor-updates-button-icon {
  font-size: 17px;
}

.investor-updates-visual {
  justify-self: end;
}

.investor-updates-bell-img {
  display: block;
  width: 100px;
  height: auto;
  filter: drop-shadow(0 14px 24px rgba(156, 111, 0, 0.24));
  animation: investorBellFloat 2.8s ease-in-out infinite;
}

@keyframes investorBellFloat {
  0%, 100% {
    transform: translateY(0) rotate(-4deg);
  }

  50% {
    transform: translateY(-8px) rotate(4deg);
  }
}

/* Responsive */

@media (max-width: 960px) {
  .investor-communication-grid {
    grid-template-columns: 1fr;
  }

  .investor-communication-card {
    min-height: 180px;
  }
}

@media (max-width: 640px) {
  .investor-communication-card {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .founder-envelope-button {
    flex-basis: auto;
    max-width: 260px;
  }

  .investor-updates-visual {
    flex-basis: auto;
    justify-content: center;
  }

  .investor-updates-bell-img {
    width: 110px;
  }
}

/* =====================================================
   Investor Status WEBP Background Cards
   Applies ONLY to Investor Profile + Access Level
   ===================================================== */

.investor-dashboard-level-basic .investor-profile-status-card {
  background-image: url("/static/layout/images/investor/status/profile-basic.webp");
}

.investor-dashboard-level-basic .investor-access-status-card {
  background-image: url("/static/layout/images/investor/status/access-basic.webp");
}

.investor-dashboard-level-advanced .investor-profile-status-card {
  background-image: url("/static/layout/images/investor/status/profile-advanced.webp");
}

.investor-dashboard-level-advanced .investor-access-status-card {
  background-image: url("/static/layout/images/investor/status/access-advanced.webp");
}

.investor-dashboard-level-due_diligence .investor-profile-status-card {
  background-image: url("/static/layout/images/investor/status/profile-due-diligence.webp");
}

.investor-dashboard-level-due_diligence .investor-access-status-card {
  background-image: url("/static/layout/images/investor/status/access-due-diligence.webp");
}

.investor-profile-status-card,
.investor-access-status-card {
  position: relative;
  min-height: 220px;
  padding: 0;
  overflow: hidden;
  border: none;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

.investor-profile-status-card:hover,
.investor-access-status-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .22);
}

.investor-status-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .22);
}

.investor-status-content {
  position: relative;
  z-index: 2;
  max-width: 58%;
  padding-top: 42px;
  padding-left: 142px;
  padding-right: 24px;
}

.investor-access-status-card .investor-status-content {
  max-width: 68%;
  padding-left: 118px;
}

.investor-status-content h3 {
  margin: 0 0 18px;
  color: #0b1f3a;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.15;
}

.investor-status-content p {
  margin: 0 0 8px;
  color: #23324a;
  font-size: 14px;
  line-height: 1.35;
}

.investor-status-content strong {
  color: #0b1f3a;
  font-weight: 800;
}

/* Responsive */

@media (max-width: 960px) {
  .investor-status-card {
    grid-template-columns: 72px 1fr;
    gap: 18px;
  }

  .investor-status-content {
    padding-right: 64px;
  }

  .investor-status-content h3 {
    font-size: 21px;
  }
}

@media (max-width: 640px) {
  .investor-two-col-grid {
    grid-template-columns: 1fr;
  }

  .investor-status-card {
    grid-template-columns: 64px 1fr;
    min-height: 142px;
  }

  .investor-status-content {
    padding-right: 42px;
  }

  .investor-status-watermark {
    right: 18px;
    bottom: 16px;
    font-size: 58px;
  }
}
/* =====================================================
   Investor Card Animation
   ===================================================== */

.contact-card,
.investor-dashboard-material-card {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.contact-card:hover,
.investor-dashboard-material-card:hover {
  transform: translateY(-6px);
}

/* Basic */

.investor-dashboard-level-basic .contact-card:hover {
/*.investor-dashboard-level-basic .investor-dashboard-material-card:hover {*/
  box-shadow: 0 18px 42px rgba(15,95,187,0.18);
}

/* Advanced */

.investor-dashboard-level-advanced .contact-card:hover {
/*.investor-dashboard-level-advanced .investor-dashboard-material-card:hover {*/
  box-shadow: 0 20px 48px rgba(148,163,184,0.22);
}

/* Due Diligence */

.investor-dashboard-level-due_diligence .contact-card:hover {
/*.investor-dashboard-level-due_diligence .investor-dashboard-material-card:hover {*/
  transform: translateY(-6px);

  box-shadow:
    0 24px 56px rgba(212,175,55,0.24),
    0 0 0 1px rgba(212,175,55,0.20);
}

/* =====================================================
   Investor Updates Modal
   ===================================================== */

.investor-updates-modal-content {
  border: none;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(15, 95, 187, 0.22);
}

.investor-updates-modal-body {
  padding: 30px;
}

.investor-updates-modal-body > p {
  margin-bottom: 24px;
  color: var(--investor-text);
  line-height: 1.6;
}

.investor-updates-level {
  padding: 20px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: #f7fbff;
  border: 1px solid rgba(15, 95, 187, 0.10);
}

.investor-updates-level h4 {
  margin: 0 0 10px;
  color: var(--investor-dark);
  font-size: 20px;
}

.investor-updates-level p {
  margin: 0 0 12px;
  color: var(--investor-text);
  line-height: 1.55;
}

.investor-updates-level ul {
  margin: 0 0 12px 20px;
  padding: 0;
}

.investor-updates-level li {
  margin-bottom: 6px;
  color: var(--investor-text);
}

.investor-updates-level-gold {
  background: linear-gradient(135deg, #fff8df, #fff1b8);
  border-color: rgba(190, 145, 40, 0.30);
}

.investor-updates-security {
  padding: 22px;
  margin-top: 24px;
  border-radius: 18px;
  background: #ffffff;
  border-left: 5px solid var(--investor-blue);
  box-shadow: 0 12px 30px rgba(15, 95, 187, 0.10);
}

.investor-updates-security h4 {
  margin: 0 0 10px;
  color: var(--investor-dark);
}

.investor-updates-security p {
  margin: 0;
  color: var(--investor-text);
  line-height: 1.6;
}

/* =====================================================
   Pitch Deck PDF Downloads
   ===================================================== */

.pitch-deck-downloads {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.pitch-deck-downloads .btn-secondary {
  min-width: 210px;
}

@media (max-width: 640px) {
  .pitch-deck-downloads {
    flex-direction: column;
    gap: 12px;
  }

  .pitch-deck-downloads .btn-secondary {
    width: 100%;
  }
}

/* =====================================================
   Pitch Deck Gallery
   ===================================================== */

.pitch-deck-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.pitch-deck-card {
  overflow: hidden;
  padding: 0;
}

.pitch-deck-preview {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: block;
}

.pitch-deck-image {
  display: block;
  width: 100%;
  height: 210px;

  object-fit: contain;
  object-position: center center;

  background: #ffffff;
  padding: 8px;

  transition: transform 0.25s ease;
}

.pitch-deck-card:hover .pitch-deck-image {
  transform: scale(1.04);
}

.pitch-deck-body {
  padding: 18px 20px 20px;
}

.pitch-deck-body h4 {
  margin: 0 0 6px;
  font-size: 18px;
}

.pitch-deck-body p {
  margin: 0;
  font-size: 14px;
  color: var(--investor-muted);
}

.pitch-deck-notice {
  margin-top: 40px;
}

.pitch-deck-modal-stage {
  text-align: center;
}

.pitch-deck-modal-stage h4 {
  margin: 0 0 18px;
  color: #ffffff;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.pitch-deck-nav {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 52px;
  height: 52px;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(11, 31, 58, 0.68);
  color: #ffffff;
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
}

.pitch-deck-nav:hover {
  background: rgba(15, 95, 187, 0.9);
}

.pitch-deck-prev {
  left: 24px;
}

.pitch-deck-next {
  right: 24px;
}

@media (max-width: 1100px) {
  .pitch-deck-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .pitch-deck-grid {
    grid-template-columns: 1fr;
  }

  .pitch-deck-image {
    height: 190px;
  }

  .pitch-deck-nav {
    width: 42px;
    height: 42px;
    font-size: 34px;
  }

  .pitch-deck-prev {
    left: 10px;
  }

  .pitch-deck-next {
    right: 10px;
  }
}

/* =====================================================
   Investors Public Page Hero Card
   ===================================================== */

.investors-hero-card-caption {
  width: 100%;
  text-align: center;
  margin-top: 18px;
}

.investors-hero-card-caption h4 {
  margin: 0 0 8px;
  color: var(--investor-dark);
  font-size: 22px;
  line-height: 1.2;
  font-weight: 800;
}

.investors-hero-card-caption p {
  margin: 0;
  color: var(--investor-muted);
  font-size: 15px;
  line-height: 1.4;
}

/* =====================================================
   Investor Communication Cards: Mobile Compact
   ===================================================== */

@media (max-width: 768px) {
  .investor-communication-grid {
    gap: 16px;
    margin: 20px 0 28px;
  }

  .investor-communication-card,
  .founder-letter-card,
  .investor-updates-card {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 20px 18px;
    text-align: center;
  }

  .investor-communication-content h4 {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .investor-communication-content p {
    font-size: 13px;
    line-height: 1.35;
    margin-bottom: 14px;
  }

  .founder-letter-button,
  .investor-updates-button {
    width: 100%;
    min-height: 42px;
    padding: 0 14px;
    font-size: 13px;
  }

  .founder-envelope-button {
    justify-self: center;
    max-width: 130px;
    margin-top: 12px;
  }

  .investor-updates-visual {
    justify-self: center;
    margin-top: 12px;
  }

  .investor-updates-bell-img {
    width: 72px;
  }
}

/* =====================================================
   Tablet
   ===================================================== */

@media (max-width: 960px) {
  .investors-hero {
    padding: 48px 0 36px;
  }

  .investors-section {
    padding: 40px 0;
  }

  .investors-hero-grid,
  .investors-two-col {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .investors-grid-3,
  .market-grid,
  .comparable-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .brand-wrapper {
    gap: 10px;
  }

  .investor-link {
    padding: 6px 10px;
    font-size: 0.75rem;
  }
}

/* =====================================================
   Mobile
   ===================================================== */

@media (max-width: 640px) {
  .investors-container {
    width: min(100% - 24px, 1180px);
  }

  .investors-hero {
    padding: 40px 0 32px;
  }

  .investors-section {
    padding: 34px 0;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

  .investors-grid-3,
  .market-grid,
  .comparable-grid,
  .module-grid,
  .investor-two-col-grid {
    grid-template-columns: 1fr;
  }

  .info-card,
  .market-card,
  .contact-card,
  .investors-hero-card {
    padding: 20px;
  }

  .investors-hero-card {
    min-height: auto;
  }

  .hero-logo {
    width: 180px;
  }

  .brand-wrapper {
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }

  .investor-link {
    padding: 5px 8px;
    font-size: 0.70rem;
  }
}

/* =====================================================
   Investor Communication Cards: Small Mobile
   ===================================================== */

@media (max-width: 430px) {
  .investor-communication-card,
  .founder-letter-card,
  .investor-updates-card {
    padding: 18px 14px;
  }

  .founder-envelope-button {
    max-width: 110px;
  }

  .investor-updates-bell-img {
    width: 62px;
  }
}

/* =====================================================
   Investor Status Cards: Mobile Compact
   ===================================================== */

@media (max-width: 768px) {
  .investor-two-col-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .investor-profile-status-card,
  .investor-access-status-card {
    min-height: 125px;
    padding: 0;
    background-size: cover;
    background-position: center;
    overflow: hidden;
  }

  .investor-status-content {
    width: 100%;
    max-width: none;
    padding: 18px 16px 18px 96px;
    text-align: left;
  }

  .investor-status-content h3 {
    margin: 0 0 10px;
    font-size: 20px;
    line-height: 1.15;
  }

  .investor-status-content p {
    margin: 0 0 6px;
    font-size: 13px;
    line-height: 1.25;
  }

  .investor-status-content p:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 430px) {
  .investor-profile-status-card,
  .investor-access-status-card {
    min-height: 125px;
  }

  .investor-status-content {
    padding: 16px 14px 16px 90px;
  }

  .investor-status-content h3 {
    font-size: 19px;
  }

  .investor-status-content p {
    font-size: 12px;
  }

@media (max-width: 768px) {

  .investor-access-status-card .investor-status-content {
    padding-left: 88px;
  }

}

/* =====================================================
   Investor Communication Cards: Mobile Inline Media
   ===================================================== */

@media (max-width: 768px) {
  .investor-communication-card,
  .founder-letter-card,
  .investor-updates-card {
    grid-template-columns: minmax(0, 1fr) 82px;
    align-items: center;
    gap: 14px;
    min-height: auto;
    padding: 18px 16px;
    text-align: left;
  }

  .investor-communication-content {
    min-width: 0;
    text-align: center;
  }

  .investor-communication-content h4 {
    margin-bottom: 8px;
    font-size: 19px;
  }

  .investor-communication-content p {
    margin-bottom: 12px;
    font-size: 12px;
    line-height: 1.35;
  }

  .founder-letter-button,
  .investor-updates-button {
    width: 100%;
    min-height: 40px;
    padding: 0 12px;
    font-size: 12px;
  }

  .founder-envelope-button {
    justify-self: center;
    width: 82px;
    max-width: 82px;
    margin-top: 0;
  }

  .founder-envelope-media {
    width: 82px;
    height: auto;
  }

  .investor-updates-visual {
    justify-self: center;
    margin-top: 0;
  }

  .investor-updates-bell-img {
    width: 64px;
  }
}

@media (max-width: 430px) {
  .investor-communication-card,
  .founder-letter-card,
  .investor-updates-card {
    grid-template-columns: minmax(0, 1fr) 70px;
    gap: 10px;
    padding: 16px 14px;
  }

  .founder-envelope-button {
    width: 70px;
    max-width: 70px;
  }

  .founder-envelope-media {
    width: 70px;
  }

  .investor-updates-bell-img {
    width: 56px;
  }

  .investor-communication-content h4 {
    font-size: 18px;
  }

  .investor-communication-content p {
    font-size: 11px;
  }
}

}