/* =========================================================
   RSDLC LANDING PAGE
   File: rsdlc-landing.css
   ========================================================= */

.rsdlc-landing {
  --rsdlc-green: #63e600;
  --rsdlc-green-dark: #47ad00;
  --rsdlc-orange: #ff9f1c;
  --rsdlc-navy: #071827;
  --rsdlc-blue: #0d2940;
  --rsdlc-white: #ffffff;
  --rsdlc-muted: #c9d4dc;

  width: 100%;
  background: #000000;
  color: var(--rsdlc-white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

.rsdlc-landing *,
.rsdlc-landing *::before,
.rsdlc-landing *::after {
  box-sizing: border-box;
}

.rsdlc-wrap {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

/* FREE OPTIONS INTRO */

.rsdlc-free-intro {
  padding: 48px 0 26px;
  text-align: center;
}

.rsdlc-free-intro h2 {
  margin: 0 0 12px;
  color: var(--rsdlc-green);
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.08;
  font-weight: 800;
}

.rsdlc-free-intro p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--rsdlc-muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

/* THREE FREE OPTIONS */

.rsdlc-free-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding: 20px 0 58px;
}

.rsdlc-free-card {
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 26px 22px;
  border: 1px solid rgba(99, 230, 0, 0.35);
  border-radius: 18px;
  background:
    linear-gradient(
      145deg,
      rgba(13, 41, 64, 0.96),
      rgba(3, 15, 24, 0.98)
    );
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.36);
  text-align: center;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.rsdlc-free-card:hover {
  transform: translateY(-5px);
  border-color: var(--rsdlc-green);
  box-shadow: 0 18px 42px rgba(99, 230, 0, 0.12);
}

.rsdlc-card-icon {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  margin: 0 auto 18px;
  border-radius: 18px;
  background: rgba(99, 230, 0, 0.12);
  color: var(--rsdlc-green);
  font-size: 42px;
  line-height: 1;
}

.rsdlc-free-card h3 {
  margin: 0 0 12px;
  color: var(--rsdlc-green);
  font-size: 1.38rem;
  line-height: 1.2;
}

.rsdlc-free-card p {
  margin: 0 0 22px;
  color: var(--rsdlc-muted);
  font-size: 0.98rem;
  flex: 1;
}

.rsdlc-card-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 10px;
  background: var(--rsdlc-green);
  color: #071200 !important;
  text-decoration: none !important;
  font-weight: 800;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.rsdlc-card-button:hover {
  background: #7cff12;
  transform: translateY(-2px);
}

/* VALUE BRIDGE */

.rsdlc-bridge {
  padding: 54px 0;
  background:
    linear-gradient(
      135deg,
      var(--rsdlc-navy),
      var(--rsdlc-blue)
    );
  text-align: center;
}

.rsdlc-bridge h2 {
  margin: 0 0 14px;
  color: var(--rsdlc-white);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
}

.rsdlc-bridge h2 span {
  color: var(--rsdlc-green);
}

.rsdlc-bridge p {
  max-width: 780px;
  margin: 0 auto 28px;
  color: var(--rsdlc-muted);
  font-size: 1.08rem;
}

/* MEMBERSHIP VALUE */

.rsdlc-member-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 28px;
  max-width: 860px;
  margin: 0 auto 30px;
  text-align: left;
}

.rsdlc-member-item {
  position: relative;
  padding-left: 30px;
  color: var(--rsdlc-white);
  font-size: 1rem;
}

.rsdlc-member-item::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--rsdlc-green);
  font-weight: 900;
}

/* MEMBERSHIP CTA */

.rsdlc-member-cta {
  padding: 62px 0;
  text-align: center;
  background: #000000;
}

.rsdlc-member-box {
  max-width: 900px;
  margin: 0 auto;
  padding: 38px 30px;
  border: 2px solid var(--rsdlc-green);
  border-radius: 20px;
  background:
    radial-gradient(
      circle at top center,
      rgba(99, 230, 0, 0.12),
      transparent 45%
    ),
    #07111a;
}

.rsdlc-member-box h2 {
  margin: 0 0 12px;
  color: var(--rsdlc-white);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
}

.rsdlc-member-box p {
  max-width: 700px;
  margin: 0 auto 26px;
  color: var(--rsdlc-muted);
  font-size: 1.08rem;
}

.rsdlc-join-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 28px;
  border-radius: 12px;
  background: var(--rsdlc-green);
  color: #071200 !important;
  text-decoration: none !important;
  font-size: 1.05rem;
  font-weight: 900;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.rsdlc-join-button:hover {
  transform: translateY(-2px);
  background: #7cff12;
}

.rsdlc-small-note {
  margin-top: 14px !important;
  font-size: 0.88rem !important;
  color: #9eb0bd !important;
}

/* TABLET */

@media (max-width: 900px) {
  .rsdlc-free-grid {
    grid-template-columns: 1fr;
    max-width: 680px;
    margin: 0 auto;
  }

  .rsdlc-free-card {
    min-height: 0;
  }

  .rsdlc-member-grid {
    grid-template-columns: 1fr;
  }
}

/* MOBILE */

@media (max-width: 600px) {
  .rsdlc-wrap {
    width: min(100% - 24px, 1120px);
  }

  .rsdlc-free-intro {
    padding: 34px 0 18px;
  }

  .rsdlc-free-grid {
    gap: 16px;
    padding-bottom: 42px;
  }

  .rsdlc-free-card {
    padding: 22px 18px;
    border-radius: 15px;
  }

  .rsdlc-card-icon {
    width: 66px;
    height: 66px;
    font-size: 36px;
  }

  .rsdlc-bridge {
    padding: 42px 0;
  }

  .rsdlc-member-cta {
    padding: 44px 0;
  }

  .rsdlc-member-box {
    padding: 28px 18px;
    border-radius: 16px;
  }

  .rsdlc-card-button,
  .rsdlc-join-button {
    width: 100%;
  }
}