/* 100 Club landing — Viture-style layout (Drive "Landing website design")
   Frosted nav · left copy · right logo + floating glass cards · 3 path cards
   Brand: navy + cyan */

.viture-land {
  margin: 0;
  min-height: 100vh;
  background: #05080f;
  color: #f1f5f9;
  font-family: "DM Sans", system-ui, sans-serif;
  overflow-x: clip;
}
.viture-land .site-nav,
.viture-land .site-footer,
.viture-land .founding-banner { display: none !important; }

/* ── Nav ─────────────────────────────────────────────── */
.vl-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  background: rgba(8, 14, 24, 0.72);
  border-bottom: 1px solid rgba(125, 211, 252, 0.14);
}
.vl-nav__inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0.7rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.vl-nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: #f8fafc;
  font-family: Outfit, system-ui, sans-serif;
  font-weight: 750;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.vl-nav__brand img {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.55rem;
  max-width: none !important;
}
.vl-nav__brand em {
  font-style: normal;
  color: #67e8f9;
  text-shadow: 0 0 18px rgba(34, 211, 238, 0.45);
}
.vl-nav__links {
  display: none;
  gap: 1.35rem;
  margin-left: 1.5rem;
  font-size: 0.9rem;
  font-weight: 550;
}
.vl-nav__links a {
  text-decoration: none;
  color: #94a3b8;
  transition: color 0.15s ease;
}
.vl-nav__links a:hover { color: #e2e8f0; }
.vl-nav__actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.vl-nav__ghost {
  display: none;
  text-decoration: none;
  color: #cbd5e1;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
}
.vl-nav__ghost:hover { background: rgba(34, 211, 238, 0.1); color: #fff; }
.vl-nav__cta {
  display: none;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.86rem;
  padding: 0.55rem 1.05rem;
  border-radius: 999px;
  color: #041016;
  background: linear-gradient(135deg, #67e8f9, #22d3ee 55%, #0ea5e9);
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.35);
}
.vl-nav__cta:hover { filter: brightness(1.06); }
.vl-nav__menu {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.65rem;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(15, 23, 42, 0.7);
  color: #e2e8f0;
  font-size: 1.15rem;
  cursor: pointer;
}
.vl-nav__mobile {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.5rem 1rem 1rem;
  border-top: 1px solid rgba(34, 211, 238, 0.14);
  background: rgba(6, 10, 18, 0.96);
}
.vl-nav__mobile[hidden] { display: none !important; }
.vl-nav__mobile a {
  text-decoration: none;
  color: #cbd5e1;
  padding: 0.85rem 0.75rem;
  border-radius: 0.65rem;
  font-weight: 600;
}
.vl-nav__mobile a:hover { background: rgba(34, 211, 238, 0.1); color: #fff; }

@media (min-width: 900px) {
  .vl-nav__links { display: flex; }
  .vl-nav__ghost, .vl-nav__cta { display: inline-flex; }
  .vl-nav__menu { display: none; }
  .vl-nav__mobile { display: none !important; }
}

/* ── Hero ────────────────────────────────────────────── */
.vl-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(2.5rem, 6vw, 4.5rem) 1.25rem clamp(2.5rem, 5vw, 4rem);
  background:
    radial-gradient(ellipse 80% 60% at 85% 20%, rgba(56, 189, 248, 0.16), transparent 55%),
    radial-gradient(ellipse 50% 45% at 10% 80%, rgba(34, 211, 238, 0.1), transparent 50%),
    linear-gradient(165deg, #070b14 0%, #0b1220 50%, #080e18 100%);
}
.vl-hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  opacity: 0.7;
}
.vl-hero__glow--a {
  width: 28rem; height: 22rem;
  top: -8%; right: 5%;
  background: rgba(56, 189, 248, 0.28);
}
.vl-hero__glow--b {
  width: 22rem; height: 18rem;
  bottom: 5%; left: -5%;
  background: rgba(99, 102, 241, 0.18);
}
.vl-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.vl-hero__eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #67e8f9;
}
.vl-hero__title {
  margin: 0 0 0.85rem;
  font-family: Outfit, system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(2.35rem, 5.5vw, 3.75rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: #f8fafc;
}
.vl-hero__lead {
  margin: 0 0 1.35rem;
  max-width: 34rem;
  font-size: 1.08rem;
  line-height: 1.6;
  color: #94a3b8;
}
.vl-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.15rem;
}
.vl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  font-weight: 750;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.15s ease, filter 0.15s ease, background 0.15s ease;
}
.vl-btn--primary {
  color: #041016;
  background: #f8fafc;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}
.vl-btn--primary:hover { filter: brightness(0.96); transform: translateY(-1px); }
.vl-btn--ghost {
  color: #e2e8f0;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.35);
}
.vl-btn--ghost:hover {
  border-color: rgba(103, 232, 249, 0.45);
  background: rgba(34, 211, 238, 0.1);
}
.vl-hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.vl-hero__pills li {
  font-size: 0.75rem;
  font-weight: 650;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(125, 211, 252, 0.28);
  background: rgba(34, 211, 238, 0.08);
  color: #a5f3fc;
}

/* Visual + floats: owned by /shared/float-cards.css (do not restyle cards here) */
.vl-hero__visual {
  /* size handled in float-cards; keep grid slot usable on landing */
  width: min(100%, 38rem);
  justify-self: center;
}
/* ── Three path cards ────────────────────────────────── */
.vl-paths {
  padding: 0.5rem 1.25rem 2.5rem;
  background: linear-gradient(180deg, #080e18 0%, #05080f 100%);
}
.vl-paths__inner {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.vl-path {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.25rem 1.2rem 1.15rem;
  border-radius: 1.15rem;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(125, 211, 252, 0.28);
  background: linear-gradient(165deg, rgba(14, 24, 42, 0.9), rgba(8, 14, 26, 0.95));
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.vl-path:hover {
  transform: translateY(-4px);
  border-color: rgba(103, 232, 249, 0.5);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.4), 0 0 40px rgba(34, 211, 238, 0.15);
}
.vl-path__num {
  position: absolute;
  right: 0.65rem;
  top: 0.35rem;
  font-family: Outfit, system-ui, sans-serif;
  font-weight: 800;
  font-size: 3.25rem;
  line-height: 1;
  letter-spacing: -0.06em;
  color: rgba(125, 211, 252, 0.12);
  pointer-events: none;
}
.vl-path__icon {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.7rem;
  color: #67e8f9;
  background: rgba(34, 211, 238, 0.12);
  border: 1px solid rgba(34, 211, 238, 0.3);
}
.vl-path__title {
  margin: 0.15rem 0 0;
  font-family: Outfit, system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: #f8fafc;
}
.vl-path__copy {
  margin: 0;
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.45;
  flex: 1;
}
.vl-path__cta {
  margin-top: 0.55rem;
  color: #67e8f9;
  font-weight: 700;
  font-size: 0.9rem;
}

.vl-reviews {
  padding: 0.5rem 1.25rem 2.25rem;
  background: linear-gradient(180deg, #05080f 0%, #080e18 100%);
}
.vl-reviews__inner {
  max-width: 72rem;
  margin: 0 auto;
  text-align: center;
}
.vl-reviews__kicker {
  margin: 0 0 0.35rem;
  color: #67e8f9;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.vl-reviews__inner h2 {
  margin: 0 0 0.4rem;
  font-family: Outfit, system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  color: #f8fafc;
}
.vl-reviews__lead {
  margin: 0 auto 1.25rem;
  max-width: 36rem;
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.5;
}
.vl-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  text-align: left;
}
.vl-reviews__grid .club-review-card,
.vl-reviews__grid .review-card {
  background: linear-gradient(165deg, rgba(14, 24, 42, 0.92), rgba(8, 14, 26, 0.96));
  border: 1px solid rgba(125, 211, 252, 0.22);
  border-radius: 1rem;
  padding: 1rem 1.05rem;
}
.vl-reviews__more {
  margin: 1.15rem 0 0;
  color: #94a3b8;
  font-size: 0.9rem;
}
.vl-reviews__more a {
  color: #67e8f9;
  font-weight: 700;
  text-decoration: none;
}
.vl-reviews__more a:hover { text-decoration: underline; }
@media (max-width: 960px) {
  .vl-reviews__grid { grid-template-columns: 1fr; }
}

.vl-foot {
  padding: 1rem 1.25rem 1.5rem;
  text-align: center;
  font-size: 0.82rem;
  color: #64748b;
  border-top: 1px solid rgba(34, 211, 238, 0.1);
}
.vl-foot a { color: #94a3b8; text-decoration: none; }
.vl-foot a:hover { color: #67e8f9; }

@media (max-width: 960px) {
  .vl-hero__inner { grid-template-columns: 1fr; }
  .vl-hero__copy { text-align: center; }
  .vl-hero__lead { margin-left: auto; margin-right: auto; }
  .vl-hero__actions, .vl-hero__pills { justify-content: center; }
  .vl-hero__visual { min-height: 20rem; order: 0; }
  .vl-hero__logo-wrap { width: min(48%, 12rem); }
  .vl-paths__inner { grid-template-columns: 1fr; }
  /* Keep all floats, just tighten */
  /* float card size from float-cards.css */
  
  
}

@media (max-width: 480px) {
  .vl-float--5,
  .vl-float--6,
  .vl-float--11,
  /* old absolute float pos removed */
}

@media (prefers-reduced-motion: reduce) {
  .vl-float, .vl-hero__logo-glow { animation: none !important; }
}

/* Rounded logo — transparent corners, no black square */
.vl-hero__logo-wrap {
  border-radius: 28%;
  overflow: hidden;
}
.vl-hero__logo,
.vl-nav__brand img,
.orbit__logo,
.land-exact__logo,
.land-orbit .orbit__logo {
  border-radius: 28% !important;
  background: transparent !important;
}


/* landLogo2 — force rounded transparent logo on landing */
.viture-land .vl-hero__logo-wrap {
  border-radius: 28% !important;
  overflow: hidden !important;
  background: transparent !important;
}
.viture-land .vl-hero__logo {
  border-radius: 28% !important;
  background: transparent !important;
  box-shadow: none !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}
.viture-land .vl-nav__brand img {
  border-radius: 22% !important;
  background: transparent !important;
  object-fit: contain !important;
}

/* defer float layout to shared/float-cards.css */
