/* Investor gate · landing page when not signed in */

.inv-gate-view {
  background: #FAFAF7;
  min-height: 70vh;
}
.inv-gate { padding-top: 56px !important; padding-bottom: 80px !important; }
.inv-gate-card {
  max-width: 720px;
  margin: 0 auto;
  background: #FFFFFF;
  border: 1px solid rgba(26, 18, 8, 0.10);
  border-top: 4px solid #4B8E1E;
  border-radius: 12px;
  padding: 44px 48px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(26, 18, 8, 0.08);
}
.inv-gate-icon {
  width: 64px; height: 64px;
  margin: 0 auto 22px;
  color: #4B8E1E;
}
.inv-gate-icon svg { width: 100%; height: 100%; }

.inv-gate-eyebrow {
  font-family: "Raleway", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #4B8E1E;
}
.inv-gate-title {
  margin: 10px 0 14px;
  font-family: "Raleway", sans-serif;
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #1A1208;
  line-height: 1.1;
}
.inv-gate-title .hl { color: #4B8E1E; }
.inv-gate-sub {
  margin: 0 auto 24px;
  max-width: 56ch;
  font-size: 14.5px;
  line-height: 1.6;
  color: #4A4035;
}

.inv-gate-list {
  list-style: none;
  padding: 18px 22px;
  margin: 0 auto 28px;
  max-width: 520px;
  text-align: left;
  background: rgba(75, 142, 30, 0.05);
  border: 1px solid rgba(75, 142, 30, 0.18);
  border-radius: 8px;
  display: grid;
  gap: 10px;
}
.inv-gate-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Outfit", "Raleway", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #1A1208;
  letter-spacing: -0.005em;
}

.inv-gate-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.inv-gate-btn {
  appearance: none;
  padding: 14px 26px;
  border-radius: 6px;
  font-family: "Raleway", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 160ms ease;
}
.inv-gate-btn.primary {
  background: #4B8E1E;
  color: #FFFFFF;
  border-color: #4B8E1E;
  box-shadow: 0 10px 24px rgba(75, 142, 30, 0.28);
}
.inv-gate-btn.primary:hover {
  background: #3F7517;
  border-color: #3F7517;
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(75, 142, 30, 0.40);
}
.inv-gate-btn.ghost {
  background: transparent;
  color: #1A1208;
  border-color: rgba(26, 18, 8, 0.20);
}
.inv-gate-btn.ghost:hover {
  background: rgba(26, 18, 8, 0.04);
  border-color: rgba(26, 18, 8, 0.45);
}

.inv-gate-foot {
  margin: 0;
  font-size: 11.5px;
  color: #6F6356;
  line-height: 1.55;
  max-width: 60ch;
  margin: 0 auto;
}

@media (max-width: 720px) {
  .inv-gate-card { padding: 28px 22px; }
  .inv-gate-title { font-size: 30px; }
  .inv-gate-actions { flex-direction: column; }
  .inv-gate-btn { width: 100%; }
}


/* ─── Gate · photo background + lock animation ────────────────── */
.inv-gate {
  position: relative;
  overflow: hidden;
}
.inv-gate-bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/u25.jpg");
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.inv-gate-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(250, 250, 247, 0.86) 0%,
      rgba(250, 250, 247, 0.78) 50%,
      rgba(250, 250, 247, 0.92) 100%);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.inv-gate > .container { position: relative; z-index: 2; }

/* Lock icon · larger, with body */
.inv-gate-icon {
  width: 92px !important;
  height: 110px !important;
  margin: 0 auto 24px !important;
  color: #4B8E1E !important;
  filter: drop-shadow(0 8px 14px rgba(75, 142, 30, 0.30));
}
.inv-gate-icon svg { width: 100%; height: 100%; }

/* Shackle animation · open / close cycle */
.inv-lock-shackle {
  transform-origin: 22px 46px;
  animation: shackle-cycle 3.4s ease-in-out infinite;
}
@keyframes shackle-cycle {
  0%, 18%   { transform: translateY(0)    rotate(0); }
  28%, 52%  { transform: translateY(-12px) rotate(-12deg); }
  62%, 100% { transform: translateY(0)    rotate(0); }
}

/* Subtle pulse on the body */
.inv-gate-icon { animation: lock-breathe 3.4s ease-in-out infinite; }
@keyframes lock-breathe {
  0%, 100% { transform: scale(1); }
  35%      { transform: scale(1.04); }
}


/* Gate · less veil so the photo shows, compressed card */
.inv-gate { padding-top: 28px !important; padding-bottom: 40px !important; }
.inv-gate-veil {
  background:
    linear-gradient(180deg,
      rgba(250, 250, 247, 0.55) 0%,
      rgba(250, 250, 247, 0.30) 50%,
      rgba(250, 250, 247, 0.60) 100%) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
.inv-gate-card {
  max-width: 580px !important;
  padding: 24px 32px !important;
  background: rgba(255, 255, 255, 0.96) !important;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.inv-gate-icon {
  width: 56px !important;
  height: 66px !important;
  margin-bottom: 12px !important;
}
.inv-gate-eyebrow { font-size: 10px !important; letter-spacing: 0.20em !important; }
.inv-gate-title { font-size: 26px !important; margin: 6px 0 8px !important; }
.inv-gate-sub { font-size: 13px !important; margin-bottom: 16px !important; max-width: 50ch !important; }
.inv-gate-list { padding: 12px 16px !important; margin-bottom: 18px !important; gap: 6px !important; }
.inv-gate-list li { font-size: 12.5px !important; }
.inv-gate-list svg { width: 14px !important; height: 14px !important; }
.inv-gate-actions { gap: 10px !important; margin-bottom: 12px !important; }
.inv-gate-btn { padding: 11px 20px !important; font-size: 11px !important; }
.inv-gate-foot { font-size: 10.5px !important; max-width: 56ch !important; }


/* Gate disclaimer · terracotta warning band (matches calc.css) */
.inv-gate-foot {
  display: flex !important;
  align-items: flex-start;
  gap: 12px;
  margin-top: 14px;
  padding: 10px 14px;
  background: rgba(217, 119, 87, 0.06);
  border-left: 3px solid #D97757;
  border-radius: 4px;
  max-width: 100% !important;
  text-align: left !important;
}
.inv-gate-foot-icon {
  color: #D97757;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  margin-top: 1px;
}
.inv-gate-foot p {
  margin: 0;
  font-size: 11px;
  line-height: 1.5;
  color: #4A4035;
  letter-spacing: 0.01em;
}
