/* RevCav — home page (design spec v1.0) */

/* HERO */
#home-main .hero {
  padding: 88px 48px 72px;
  max-width: 840px;
}

#home-main .hero h1 {
  font-size: 46px;
  font-weight: 800;
  line-height: 1.07;
  letter-spacing: -1.5px;
  color: var(--parchment);
  margin-bottom: 22px;
}

#home-main .hero h1 .stop {
  color: var(--green);
}

#home-main .cursor {
  display: inline-block;
  width: 3px;
  height: 42px;
  background: var(--green);
  margin-left: 2px;
  vertical-align: middle;
  animation: cursor-blink 1s step-end infinite;
}

@keyframes cursor-blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

#home-main .hero-sub {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 400;
  color: rgba(242, 232, 208, 0.72);
  line-height: 1.85;
  margin-bottom: 40px;
  max-width: 580px;
  letter-spacing: 0.02em;
}

#home-main .btn-hero {
  background: var(--green);
  color: var(--near-black);
  border: 2px solid var(--green);
  padding: 15px 32px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.15s, color 0.15s;
  text-decoration: none;
  display: inline-block;
}

#home-main .btn-hero:hover {
  background: transparent;
  color: var(--green);
}

/* SECTIONS */
#home-main hr.div {
  border: none;
  border-top: 0.5px solid rgba(242, 232, 208, 0.06);
}

#home-main section {
  padding: 64px 48px;
}

#home-main .section-tag {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--green);
  margin-bottom: 10px;
}

#home-main .section-h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--parchment);
  letter-spacing: -0.4px;
  margin-bottom: 8px;
}

#home-main .section-sub {
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(242, 232, 208, 0.52);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 36px;
  letter-spacing: 0.02em;
}

/* COMPARE TABLE */
#home-main .compare-grid {
  border: 0.5px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

#home-main .compare-head {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: rgba(242, 232, 208, 0.02);
  border-bottom: 0.5px solid var(--border);
}

#home-main .ch {
  padding: 11px 16px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(242, 232, 208, 0.22);
}

#home-main .ch:first-child {
  border-right: 0.5px solid rgba(242, 232, 208, 0.05);
}

#home-main .ch:nth-child(2) {
  border-right: 0.5px solid rgba(242, 232, 208, 0.05);
}

#home-main .ch.grn {
  color: var(--green);
}

#home-main .compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 0.5px solid rgba(242, 232, 208, 0.04);
}

#home-main .compare-row:last-child {
  border-bottom: none;
}

#home-main .cr-param {
  padding: 13px 16px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(242, 232, 208, 0.28);
  border-right: 0.5px solid rgba(242, 232, 208, 0.04);
  display: flex;
  align-items: center;
}

#home-main .cr-bad {
  padding: 13px 16px;
  font-size: 13px;
  color: rgba(242, 232, 208, 0.18);
  text-decoration: line-through;
  border-right: 0.5px solid rgba(242, 232, 208, 0.04);
  display: flex;
  align-items: center;
  line-height: 1.4;
}

#home-main .cr-good {
  padding: 13px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--green);
  background: rgba(61, 220, 132, 0.04);
  display: flex;
  align-items: center;
  line-height: 1.4;
}

#home-main .cr-icon {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(61, 220, 132, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  flex-shrink: 0;
  font-size: 8px;
  color: var(--green);
  font-family: var(--mono);
}

/* FIELD BOARD */
#home-main .field-board {
  border: 0.5px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

#home-main .top-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 0.5px solid var(--border);
}

#home-main .t-col {
  border-right: 0.5px solid rgba(242, 232, 208, 0.06);
}

#home-main .t-col:last-child {
  border-right: none;
}

#home-main .col-header {
  padding: 11px 14px;
  background: rgba(242, 232, 208, 0.02);
  border-bottom: 0.5px solid rgba(242, 232, 208, 0.06);
  display: flex;
  align-items: center;
  gap: 8px;
}

#home-main .col-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

#home-main .dot-amber {
  background: #d97706;
}

#home-main .dot-green {
  background: var(--green);
}

#home-main .col-label {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(242, 232, 208, 0.28);
}

#home-main .col-count {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 9px;
  color: rgba(242, 232, 208, 0.15);
  background: rgba(242, 232, 208, 0.04);
  padding: 2px 7px;
  border-radius: 10px;
}

#home-main .col-body {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

#home-main .s-card {
  background: rgba(242, 232, 208, 0.02);
  border: 0.5px solid rgba(242, 232, 208, 0.07);
  border-left: 2px solid rgba(215, 119, 6, 0.45);
  border-radius: 3px;
  padding: 11px;
}

#home-main .b-card {
  background: rgba(61, 220, 132, 0.03);
  border: 0.5px solid rgba(61, 220, 132, 0.1);
  border-left: 2px solid rgba(61, 220, 132, 0.45);
  border-radius: 3px;
  padding: 11px;
}

#home-main .card-type {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 5px;
}

#home-main .type-venture {
  color: #a78bfa;
}

#home-main .type-fintech {
  color: #60a5fa;
}

#home-main .type-robotics {
  color: #f59e0b;
}

#home-main .type-cyber {
  color: #f87171;
}

#home-main .type-legal {
  color: #34d399;
}

#home-main .type-hardware {
  color: #fb923c;
}

#home-main .s-stakes {
  font-size: 11px;
  color: rgba(242, 232, 208, 0.36);
  line-height: 1.45;
  font-style: italic;
}

#home-main .b-built {
  font-size: 11px;
  color: rgba(61, 220, 132, 0.75);
  line-height: 1.45;
}

#home-main .outcome-header {
  padding: 11px 14px;
  background: rgba(61, 220, 132, 0.04);
  border-bottom: 0.5px solid rgba(61, 220, 132, 0.09);
  display: flex;
  align-items: center;
  gap: 8px;
}

#home-main .outcome-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

#home-main .o-card {
  padding: 14px 12px;
  border-right: 0.5px solid rgba(242, 232, 208, 0.04);
  background: rgba(61, 220, 132, 0.02);
}

#home-main .o-card:last-child {
  border-right: none;
}

#home-main .o-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

#home-main .o-type {
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

#home-main .o-tag {
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 500;
  padding: 1px 5px;
  border-radius: 8px;
}

#home-main .tag-closed {
  background: rgba(61, 220, 132, 0.09);
  color: var(--green);
  border: 0.5px solid rgba(61, 220, 132, 0.22);
}

#home-main .tag-acq {
  background: rgba(251, 146, 60, 0.09);
  color: #fb923c;
  border: 0.5px solid rgba(251, 146, 60, 0.22);
}

#home-main .o-num {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
  line-height: 1.2;
  margin-bottom: 5px;
}

#home-main .o-sub {
  font-size: 10px;
  color: rgba(242, 232, 208, 0.28);
  line-height: 1.4;
}

#home-main .field-note {
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(242, 232, 208, 0.15);
  letter-spacing: 0.04em;
  line-height: 1.6;
}

/* ABOUT */
#home-main .bio-text {
  font-size: 15px;
  color: rgba(242, 232, 208, 0.55);
  line-height: 1.85;
  margin-bottom: 14px;
  max-width: 620px;
}

#home-main .xp-note {
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(242, 232, 208, 0.27);
  margin: 20px 0 22px;
  line-height: 1.7;
  border-left: 2px solid rgba(61, 220, 132, 0.2);
  padding-left: 14px;
  letter-spacing: 0.02em;
  max-width: 620px;
}

#home-main .creds {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

#home-main .cred {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--green);
  background: rgba(61, 220, 132, 0.06);
  padding: 5px 11px;
  border-radius: 2px;
  border: 0.5px solid rgba(61, 220, 132, 0.18);
  letter-spacing: 0.04em;
}

/* CALENDLY */
#home-main .calendly-section .rc-calendly-wrap {
  border: 0.5px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  min-height: 700px;
}

#home-main .calendly-inline-widget {
  min-width: 320px;
  height: 700px;
}

@media (max-width: 1100px) {
  #home-main .outcome-row {
    grid-template-columns: repeat(3, 1fr);
  }

  #home-main .o-card:nth-child(3) {
    border-right: none;
  }

  #home-main .o-card:nth-child(4),
  #home-main .o-card:nth-child(5),
  #home-main .o-card:nth-child(6) {
    border-top: 0.5px solid rgba(242, 232, 208, 0.04);
  }
}

@media (max-width: 768px) {
  #home-main .hero {
    padding: 64px 24px 48px;
  }

  #home-main .hero h1 {
    font-size: 32px;
    letter-spacing: -1px;
  }

  #home-main .cursor {
    height: 32px;
  }

  #home-main section {
    padding: 48px 24px;
  }

  #home-main .compare-head,
  #home-main .compare-row {
    grid-template-columns: 1fr;
  }

  #home-main .ch,
  #home-main .cr-param,
  #home-main .cr-bad {
    border-right: none;
  }

  #home-main .top-cols {
    grid-template-columns: 1fr;
  }

  #home-main .t-col {
    border-right: none;
    border-bottom: 0.5px solid rgba(242, 232, 208, 0.06);
  }

  #home-main .t-col:last-child {
    border-bottom: none;
  }

  #home-main .outcome-row {
    grid-template-columns: 1fr 1fr;
  }

  #home-main .o-card:nth-child(3) {
    border-right: 0.5px solid rgba(242, 232, 208, 0.04);
  }

  #home-main .o-card:nth-child(2n) {
    border-right: none;
  }
}
