/* =========================
   Homepage
   ========================= */

.hero-banner {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url('/Assets/images/portland_sunset.png') center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 30%, rgba(214, 162, 67, 0.08), transparent 30%),
    linear-gradient(rgba(16, 22, 16, 0.08), rgba(16, 22, 16, 0.72));
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-card {
  max-width: 600px;
  padding: 40px;
  border-radius: var(--radius-lg);
  background: rgba(16, 22, 16, 0.75);
  border: 1px solid var(--border-gold);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-soft);
}

.hero-title {
  font-size: clamp(3rem, 6vw, 4.4rem);
  line-height: 1.02;
  color: var(--gold);
}

.hero-cta {
  margin-top: 30px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.homepage-section {
  padding: 90px 0;
}

.problem-section,
.strategy-pillars-section,
.final-cta-section {
  background: transparent;
}

.solution-section,
.performance-preview-section {
  background: rgba(255, 255, 255, 0.01);
}

.features-grid-4,
.homepage-card-grid.four-col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.homepage-card-grid.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card,
.homepage-card {
  padding: 30px 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover,
.homepage-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 24px rgba(214, 162, 67, 0.22);
  border-color: rgba(214, 162, 67, 0.45);
}

.feature-card h3,
.homepage-card h3 {
  margin-bottom: 12px;
}

.feature-card p,
.homepage-card p {
  line-height: 1.7;
}
.problem-card {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  border-radius: var(--radius-xl);
  padding: 0;
  background:
    radial-gradient(circle at center, rgba(214, 162, 67, 0.08), transparent 60%),
    linear-gradient(160deg, rgba(17, 24, 17, 0.90), rgba(9, 16, 10, 0.86));
  border: 1px solid rgba(214, 162, 67, 0.16);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.problem-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.25);
  border-color: rgba(214, 162, 67, 0.35);
}

.problem-card .card-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
  pointer-events: none;
}

.problem-card .card-bg::after {
  content: "";
  position: absolute;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(214, 162, 67, 0.10) 0%,
    rgba(214, 162, 67, 0.04) 35%,
    transparent 75%
  );
  filter: blur(10px);
}

.problem-card .card-bg img {
  width: 78%;
  height: 78%;
  object-fit: contain;
  opacity: 0.22;
  filter: brightness(1.2) saturate(1);
  transform: scale(1);
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.problem-card:hover .card-bg img {
  transform: scale(1.06);
  opacity: 0.30;
}

.problem-card .card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(6, 15, 10, 0.18) 0%,
    rgba(6, 15, 10, 0.30) 45%,
    rgba(6, 15, 10, 0.50) 100%
  );
}

.problem-card .card-content {
  position: relative;
  z-index: 2;
  min-height: 340px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.problem-card .card-content-inner {
  max-width: 260px;
  padding: 20px 18px;
  border-radius: 18px;
  background: rgba(7, 18, 11, 0.42);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.problem-card h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 1.45rem;
  line-height: 1.2;
}

.problem-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.75;
  font-size: 0.98rem;
}
.problem-card h3::after {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  margin: 0 auto 16px;
  background: var(--gold);
  border-radius: 999px;
  opacity: 0.9;
}
@media (max-width: 900px) {
  .problem-card,
  .problem-card .card-content {
    min-height: 300px;
  }

  .problem-card .card-bg img {
    width: 52%;
    height: 52%;
  }

  .problem-card .card-content h3,
  .problem-card .card-content p {
    max-width: 100%;
  }
}
.solution-hero-card {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 26px;
  padding: 34px;
  margin-bottom: 28px;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(26, 38, 19, 1), rgba(16, 22, 16, 1));
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-soft);
}

.solution-hero-copy h3 {
  color: var(--gold);
  margin-bottom: 14px;
}

.solution-hero-copy p {
  line-height: 1.8;
}

.solution-badges {
  display: grid;
  gap: 14px;
}

.solution-badge {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(214, 162, 67, 0.16);
  border-radius: 14px;
  padding: 16px 18px;
}

.solution-badge-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  font-size: 22px;
  border-radius: 12px;
  background: rgba(214, 162, 67, 0.12);
  color: var(--gold);
}

.solution-badge strong {
  display: block;
  color: #f0e2c8;
  margin-bottom: 4px;
}

.solution-badge span {
  color: #bfc5b9;
  font-size: 14px;
  line-height: 1.5;
}

.solution-process {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 18px;
  align-items: stretch;
  background: var(--bg-surface-2);
  border: 1px solid rgba(214, 162, 67, 0.18);
  border-radius: 18px;
  padding: 26px;
}

.solution-process-step {
  background: var(--bg-surface);
  border: 1px solid rgba(214, 162, 67, 0.14);
  border-radius: 16px;
  padding: 20px;
}

.solution-process-step .step-number {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.solution-process-step h4 {
  color: var(--gold);
  font-size: 22px;
  margin-bottom: 10px;
}

.solution-process-step p {
  line-height: 1.7;
  margin: 0;
}

.solution-process-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 28px;
  font-weight: 600;
}

.performance-preview-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.9fr;
  gap: 28px;
}

.preview-chart-header h3,
.performance-metrics-card h3 {
  color: var(--gold);
  margin-bottom: 8px;
}

.preview-chart-header p {
  margin-bottom: 20px;
}

.preview-chart-wrap {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 12px;
  align-items: stretch;
}

.preview-y-axis {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 14px;
  padding: 6px 0;
}

.preview-chart-area {
  position: relative;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.preview-chart-svg {
  width: 100%;
  height: 420px;
  position: relative;
  z-index: 2;
  display: block;
}

.preview-x-axis {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 10px;
  padding: 0 2px;
}

.preview-x-axis span {
  flex: 1;
  text-align: center;
  white-space: nowrap;
}

.preview-x-axis span:first-child {
  text-align: left;
}

.preview-x-axis span:last-child {
  text-align: right;
}


.preview-grid-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(214, 162, 67, 0.12);
}

.preview-grid-line.line-1 { top: 15%; }
.preview-grid-line.line-2 { top: 35%; }
.preview-grid-line.line-3 { top: 55%; }
.preview-grid-line.line-4 { top: 75%; }



.strategy-line,
.benchmark-line,
.preview-strategy-line,
.preview-benchmark-line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.strategy-line,
.preview-strategy-line {
  stroke: var(--gold-light);
  stroke-width: 4;
}

.benchmark-line,
.preview-benchmark-line {
  stroke: rgba(255, 255, 255, 0.65);
  stroke-width: 4;
}

.chart-legend {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 12px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: #d6d6d6;
}

.legend-line {
  display: inline-block;
  width: 34px;
  height: 0;
  border-top: 3px solid;
  border-radius: 999px;
}

.strategy-legend {
  border-color: var(--gold-light);
}

.benchmark-legend {
  border-color: #8a8f98;
}

.preview-metrics {
  display: grid;
  gap: 16px;
  margin: 22px 0 26px;
}

.preview-metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-surface);
  border: 1px solid rgba(214, 162, 67, 0.14);
  border-radius: 12px;
  padding: 14px 16px;
}

.metric-label {
  color: #d0d0d0;
}

.preview-metric strong {
  color: var(--gold);
  font-size: 20px;
}

.callout-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.65);
  z-index: 3;
  animation: bounceCue 1.8s infinite;
  transition: opacity 0.25s ease, transform 0.25s ease, color 0.25s ease;
}

.scroll-cue:hover {
  color: rgba(214, 162, 67, 0.95);
  transform: translateX(-50%) scale(1.05);
}

.scroll-cue-text {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}

.scroll-cue-arrow {
  font-size: 24px;
  line-height: 1;
}

@keyframes bounceCue {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-8px);
  }
  60% {
    transform: translateX(-50%) translateY(-4px);
  }
}

.investor-eligibility-note {
  margin: 18px auto 0;
  max-width: 720px;
  padding: 14px 18px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ccc;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
}

@media (max-width: 1100px) {
  .features-grid-4,
  .homepage-card-grid.four-col {
    grid-template-columns: repeat(2, 1fr);
  }

  .performance-preview-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1000px) {
  .solution-hero-card,
  .solution-process {
    grid-template-columns: 1fr;
  }

  .solution-process-arrow {
    transform: rotate(90deg);
    min-height: 22px;
  }
}

@media (max-width: 900px) {
  .homepage-card-grid.three-col {
    grid-template-columns: 1fr;
  }

  .problem-card {
    min-height: 280px;
  }

  .problem-card .card-bg img {
    width: 60%;
    height: 60%;
  }
}

@media (max-width: 768px) {
  .features-grid-4,
  .homepage-card-grid.four-col {
    grid-template-columns: 1fr;
  }

  .hero-banner {
    min-height: 75vh;
  }

  .hero-card {
    padding: 28px 22px;
  }

  .preview-chart-wrap {
    grid-template-columns: 1fr;
  }

  .preview-y-axis {
    display: none;
  }
}

.final-callout {
  display: flex;
  justify-content: center;
}

.final-cta-section .callout-card {
  width: min(880px, 100%);
  padding: 50px 38px;
  text-align: center;
}

.final-cta-section .callout-card h2 {
  margin-bottom: 18px;
}

.final-cta-section .callout-card p {
  max-width: 700px;
  margin: 0 auto 28px;
}

.final-cta-section .investor-eligibility-note {
  margin: 18px auto 0;
  max-width: 720px;
}

.final-cta-section .callout-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.final-cta-section .btn-primary,
.final-cta-section .gold-outline-btn {
  min-height: 52px;
}

@media (max-width: 768px) {
  .final-cta-section .callout-card {
    padding: 36px 20px;
  }
}