/* Legal Connect — Premium landing & signup (dark gateway) */

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap");

body.lc-landing-mode {
  background: #0a0a0a !important;
  color: #f7f3e8 !important;
}

body.lc-landing-mode .app-shell {
  width: 100% !important;
  max-width: none !important;
  grid-template-columns: 1fr !important;
  gap: 0 !important;
  margin: 0 !important;
}

body.lc-landing-mode .rail,
body.lc-landing-mode .topbar,
body.lc-landing-mode .demo-status,
body.lc-landing-mode .command-dock,
body.lc-landing-mode .floating-work,
body.lc-landing-mode .floating-lawbot,
body.lc-landing-mode .floating-sos,
body.lc-landing-mode .legal-footer,
body.lc-landing-mode .app-update-banner {
  display: none !important;
}

body.lc-landing-mode main {
  padding: 0 !important;
  min-height: 100vh;
}

body.lc-landing-mode .view {
  padding: 0 !important;
}

body.lc-landing-mode .view:not(.active) {
  display: none !important;
}

.lc-page {
  --lc-gold: #c5a059;
  --lc-muted: #9da5b4;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

.lc-serif {
  font-family: "Playfair Display", Georgia, serif;
}

/* Header */
.lc-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(197, 160, 89, 0.12);
}

.lc-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.lc-brand-mark {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--lc-gold);
  border-radius: 50%;
  position: relative;
}

.lc-brand-mark::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: var(--lc-gold);
  opacity: 0.85;
}

.lc-brand strong {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
}

.lc-brand small {
  font-size: 0.65rem;
  font-style: italic;
  color: var(--lc-muted);
}

.lc-header-nav {
  display: none;
  gap: 1.75rem;
}

@media (min-width: 1024px) {
  .lc-header-nav {
    display: flex;
  }
}

.lc-header-nav button {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
  cursor: pointer;
  transition: color 0.2s;
}

.lc-header-nav button:hover {
  color: var(--lc-gold);
}

.lc-btn-outline {
  border: 1px solid rgba(197, 160, 89, 0.55);
  background: transparent;
  color: #fff;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  font-size: 0.875rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.lc-btn-login svg {
  opacity: 0.85;
}

.lc-header {
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}

.lc-header-scrolled {
  background: rgba(5, 5, 5, 0.96) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  padding-top: 0.65rem !important;
  padding-bottom: 0.65rem !important;
}

.lc-gold-text {
  color: var(--lc-gold);
}

/* Entrance animations */
.lc-animate-in .lc-animate-item {
  opacity: 0;
  transform: translateY(28px);
  animation: lc-rise 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(0.15s + var(--i, 0) * 0.12s);
}

.lc-animate-in.lc-animate-delay {
  opacity: 0;
  animation: lc-rise 1s cubic-bezier(0.22, 1, 0.36, 1) 0.55s forwards;
}

@keyframes lc-rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lc-btn-outline:hover {
  border-color: var(--lc-gold);
  background: rgba(197, 160, 89, 0.1);
}

.lc-btn-gold {
  background: linear-gradient(180deg, #d4b06a, #c5a059, #a8864a);
  color: #0a0a0a;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  transition: box-shadow 0.25s, filter 0.25s;
}

.lc-btn-gold:hover {
  box-shadow: 0 0 24px rgba(197, 160, 89, 0.45);
  filter: brightness(1.05);
}

.lc-btn-white {
  background: #fff;
  color: #0a0a0a;
  border: none;
  padding: 0.65rem 1.35rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
}

/* Hero */
.lc-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 6rem 1.5rem 5.5rem;
}

.lc-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
}

.lc-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(5, 5, 5, 0.94) 0%,
    rgba(5, 5, 5, 0.82) 42%,
    rgba(5, 5, 5, 0.35) 72%,
    rgba(5, 5, 5, 0.55) 100%
  );
}

.lc-hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    radial-gradient(1px 1px at 15% 25%, rgba(197, 160, 89, 0.5), transparent),
    radial-gradient(1px 1px at 45% 15%, rgba(197, 160, 89, 0.35), transparent),
    radial-gradient(1.5px 1.5px at 75% 35%, rgba(197, 160, 89, 0.4), transparent),
    radial-gradient(1px 1px at 88% 70%, rgba(197, 160, 89, 0.3), transparent);
  animation: lc-drift 18s ease-in-out infinite alternate;
}

@keyframes lc-drift {
  from { transform: translateY(0); opacity: 0.6; }
  to { transform: translateY(-12px); opacity: 1; }
}

.lc-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .lc-hero-inner {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
    min-height: calc(100vh - 7rem);
  }
}

.lc-hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lc-chakra-scene {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lc-chakra-glow-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(320px, 70vw);
  height: min(320px, 70vw);
  transform: translate(-50%, -58%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.22) 0%, transparent 68%);
  animation: lc-pulse-glow 4s ease-in-out infinite;
}

@keyframes lc-pulse-glow {
  0%, 100% { opacity: 0.55; transform: translate(-50%, -58%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -58%) scale(1.06); }
}

.lc-chakra {
  filter: drop-shadow(0 0 35px rgba(197, 160, 89, 0.55));
}

.lc-chakra:not(.lc-chakra-outer):not(.lc-chakra-inner) {
  width: min(280px, 62vw);
  height: min(280px, 62vw);
  animation: lc-spin 45s linear infinite;
  position: relative;
  z-index: 2;
}

.lc-pedestal {
  width: 160px;
  height: 52px;
  margin-top: -10px;
  background: linear-gradient(180deg, #4a4a4a 0%, #222 45%, #0d0d0d 100%);
  clip-path: polygon(6% 0%, 94% 0%, 100% 100%, 0% 100%);
  position: relative;
  z-index: 1;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
}

.lc-pedestal-base {
  width: 200px;
  height: 14px;
  margin-top: -2px;
  background: linear-gradient(180deg, #1a1a1a, #080808);
  border-radius: 2px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.lc-quote-box {
  margin-top: 1.75rem;
  max-width: 22rem;
  width: 100%;
  padding: 1.35rem 1.75rem 1.25rem;
  text-align: center;
  background: rgba(8, 8, 8, 0.82);
  border: 1px solid rgba(197, 160, 89, 0.28);
  border-radius: 10px;
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.lc-quote-box.lc-quote-visible {
  opacity: 1;
  transform: translateY(0);
}

.lc-quote-box.lc-quote-changing {
  opacity: 0;
  transform: translateY(8px);
}

.lc-quote-mark {
  font-size: 2.25rem;
  line-height: 1;
  color: var(--lc-gold);
  display: block;
}

.lc-quote-sanskrit {
  color: var(--lc-gold);
  font-size: 1.15rem;
  margin: 0.35rem 0 0.5rem;
  line-height: 1.4;
}

.lc-quote-english {
  font-size: 0.875rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.55;
  margin: 0;
}

.lc-quote-box cite {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.72rem;
  color: var(--lc-muted);
  font-style: normal;
}

.lc-quote-dots {
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  margin-top: 1rem;
}

.lc-quote-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.lc-quote-dots span.active {
  width: 22px;
  border-radius: 999px;
  background: var(--lc-gold);
}

@keyframes lc-spin {
  to { transform: rotate(360deg); }
}

.lc-eyebrow {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--lc-gold);
  text-transform: uppercase;
}

.lc-hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.12;
  font-weight: 400;
  margin: 0.75rem 0;
  color: #fff;
}

.lc-hero-desc {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 28rem;
}

.lc-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.75rem;
  align-items: center;
}

.lc-play-btn {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  cursor: pointer;
}

.lc-play-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.lc-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .lc-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.lc-stat strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  color: var(--lc-gold);
}

.lc-stat span {
  font-size: 0.65rem;
  color: var(--lc-muted);
}

/* Chakra legacy — kept for compatibility */
.lc-chakra-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Trust bar */
.lc-trust {
  padding: 2.5rem 1.5rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: #0a0a0a;
}

.lc-trust p {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--lc-gold);
  font-weight: 700;
}

.lc-trust-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  margin-top: 1.5rem;
}

.lc-trust-logos span {
  font-family: "Playfair Display", serif;
  color: rgba(255, 255, 255, 0.28);
  font-size: 0.9rem;
}

/* Portal cards */
.lc-portals {
  padding: 4rem 1.5rem;
  background: #0a0a0a;
  max-width: 1400px;
  margin: 0 auto;
}

.lc-section-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.lc-section-head h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: #fff;
  font-weight: 400;
  margin: 0.5rem 0;
}

.lc-section-head p {
  color: var(--lc-muted);
  font-size: 0.9rem;
}

.lc-portal-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .lc-portal-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.lc-portal-card {
  display: grid;
  grid-template-columns: 1fr;
  background: #111;
  border: 1px solid rgba(197, 160, 89, 0.15);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s, border-color 0.4s;
  animation: lc-rise 0.8s ease backwards;
}

.lc-portal-grid .lc-portal-card:nth-child(1) { animation-delay: 0.1s; }
.lc-portal-grid .lc-portal-card:nth-child(2) { animation-delay: 0.22s; }

@media (min-width: 768px) {
  .lc-portal-card {
    grid-template-columns: 2fr 3fr;
  }
}

.lc-portal-card:hover {
  transform: translateY(-4px);
  border-color: rgba(197, 160, 89, 0.4);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.lc-portal-img {
  min-height: 200px;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s;
}

.lc-portal-card:hover .lc-portal-img {
  transform: scale(1.05);
}

.lc-portal-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lc-portal-body h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: #fff;
  line-height: 1.3;
  margin: 0.5rem 0;
  font-weight: 400;
}

.lc-portal-body p {
  color: var(--lc-muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

.lc-portal-body button {
  margin-top: 1.25rem;
  align-self: flex-start;
}

.lc-intern-strip {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  background: #111;
  border: 1px solid rgba(197, 160, 89, 0.15);
  border-radius: 12px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .lc-intern-strip {
    grid-template-columns: 200px 1fr auto;
    align-items: center;
  }
}

.lc-intern-img {
  min-height: 120px;
  background-size: cover;
  background-position: center;
}

.lc-intern-copy {
  padding: 1.5rem;
}

.lc-intern-copy h3 {
  font-family: "Playfair Display", serif;
  color: #fff;
  font-weight: 400;
  margin: 0.25rem 0;
}

.lc-intern-strip .lc-btn-outline {
  margin: 1rem 1.5rem;
  align-self: center;
}

/* Features */
.lc-features {
  padding: 4rem 1.5rem;
  background: #080808;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.lc-feature-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.lc-feature {
  text-align: center;
}

.lc-feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  border: 1px solid rgba(197, 160, 89, 0.25);
  display: grid;
  place-items: center;
  color: var(--lc-gold);
  font-size: 1.25rem;
}

.lc-feature h4 {
  font-size: 0.875rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.lc-feature p {
  font-size: 0.75rem;
  color: var(--lc-muted);
  line-height: 1.5;
}

/* Footer */
.lc-footer {
  padding: 2rem 1.5rem;
  text-align: center;
  background: #0a0a0a;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.lc-footer p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
}

.lc-footer .lc-tagline {
  font-family: "Playfair Display", serif;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

/* Signup page */
.lc-signup {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr;
  background: #0a0a0a;
}

@media (min-width: 1024px) {
  .lc-signup {
    grid-template-columns: 1fr 1fr;
  }
}

.lc-signup-visual {
  position: relative;
  min-height: 280px;
  display: none;
}

@media (min-width: 1024px) {
  .lc-signup-visual {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2.5rem;
  }
}

.lc-signup-visual-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.lc-signup-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.65));
}

.lc-signup-visual-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.lc-signup-visual h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.25rem;
  font-weight: 400;
  margin: 0.75rem 0;
}

.lc-signup-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.lc-signup-perks span {
  font-size: 0.7rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(197, 160, 89, 0.3);
  color: var(--lc-gold);
  background: rgba(197, 160, 89, 0.08);
}

.lc-signup-quote {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 1.5rem;
  background: rgba(12, 12, 12, 0.85);
  border: 1px solid rgba(197, 160, 89, 0.2);
  border-radius: 8px;
}

.lc-signup-quote blockquote {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.5;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
}

.lc-signup-quote footer {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--lc-gold);
}

.lc-signup-form-wrap {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 28rem;
  margin: 0 auto;
  width: 100%;
}

.lc-signup-form-wrap h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.75rem;
  color: #fff;
  font-weight: 400;
}

.lc-signup-form-wrap > p {
  color: var(--lc-muted);
  font-size: 0.875rem;
  margin: 0.5rem 0 1.5rem;
}

.lc-signup-tabs {
  display: flex;
  gap: 0.25rem;
  padding: 0.25rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.lc-signup-tabs button {
  flex: 1;
  padding: 0.6rem;
  border: none;
  border-radius: 6px;
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.875rem;
  cursor: pointer;
}

.lc-signup-tabs button.active {
  background: var(--lc-gold);
  color: #0a0a0a;
  font-weight: 700;
}

.lc-signup .form-panel {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.lc-signup label {
  display: block;
  font-size: 0.75rem;
  color: var(--lc-muted);
  margin-bottom: 1rem;
}

.lc-signup input,
.lc-signup select {
  display: block;
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 6px !important;
  color: #fff !important;
  font-size: 0.875rem !important;
}

.lc-signup input:focus {
  border-color: rgba(197, 160, 89, 0.55) !important;
  outline: none;
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.12);
}

.lc-signup .verification-box {
  background: rgba(197, 160, 89, 0.06) !important;
  border: 1px solid rgba(197, 160, 89, 0.2) !important;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
}

.lc-signup .gold-button {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.875rem !important;
  background: linear-gradient(180deg, #d4b06a, #c5a059) !important;
  color: #0a0a0a !important;
  font-weight: 700 !important;
  border: none !important;
  border-radius: 6px !important;
}

.lc-signup .auth-status {
  font-size: 0.75rem !important;
  color: var(--lc-muted) !important;
}

.lc-signup .consent-line {
  font-size: 0.7rem !important;
  color: var(--lc-muted) !important;
  line-height: 1.5;
}

.lc-signup .split {
  display: contents;
}

.lc-signup .login-panel {
  display: none !important;
}

.lc-back-home {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--lc-muted);
  font-size: 0.875rem;
  background: none;
  border: none;
  cursor: pointer;
  margin-bottom: 1.5rem;
  padding: 0;
}

.lc-back-home:hover {
  color: var(--lc-gold);
}

.lc-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.lc-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.lc-signup-mobile-back {
  display: block;
}

@media (min-width: 1024px) {
  .lc-signup-mobile-back {
    display: none;
  }
}

@media (max-width: 1023px) {
  .lc-signup-form-wrap {
    padding-top: 5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lc-chakra,
  .lc-hero-particles,
  .lc-chakra-glow-ring {
    animation: none !important;
  }

  .lc-animate-in .lc-animate-item,
  .lc-animate-in.lc-animate-delay,
  .lc-portal-card {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .lc-quote-box {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Landing isolation — overrides styles.css v16 cream theme */
html:has(body.lc-landing-mode),
body.lc-landing-mode {
  background: #050505 !important;
  color: #f7f3e8 !important;
}

body.lc-landing-mode .app-shell {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  grid-template-columns: 1fr !important;
  gap: 0 !important;
  min-height: 100vh !important;
}

body.lc-landing-mode main {
  display: block !important;
  background: #050505 !important;
  gap: 0 !important;
  align-content: stretch !important;
  min-height: 100vh !important;
}

body.lc-landing-mode #home.view,
body.lc-landing-mode #home.view.active,
body.lc-landing-mode #login.view,
body.lc-landing-mode #login.view.active {
  max-width: none !important;
  width: 100% !important;
  margin: 0 !important;
  min-height: 100vh !important;
  animation: none !important;
}

body.lc-landing-mode .lc-page {
  min-height: 100vh;
  background: #050505;
}

body.lc-landing-mode .lc-signup-form-wrap .panel,
body.lc-landing-mode .lc-signup-form-wrap input,
body.lc-landing-mode .lc-signup-form-wrap select,
body.lc-landing-mode .lc-signup-form-wrap textarea {
  background: rgba(255, 255, 255, 0.05) !important;
  color: #fff !important;
  border-color: rgba(197, 160, 89, 0.28) !important;
}

body.lc-landing-mode .lc-signup-form-wrap h2,
body.lc-landing-mode .lc-signup-form-wrap p,
body.lc-landing-mode .lc-signup-form-wrap label,
body.lc-landing-mode .lc-signup-form-wrap strong {
  color: #fff !important;
}

body.lc-landing-mode .role-card {
  background: rgba(255, 255, 255, 0.06) !important;
  color: #fff !important;
  border-color: rgba(197, 160, 89, 0.28) !important;
}

body.lc-landing-mode .role-card.selected {
  background: rgba(197, 160, 89, 0.22) !important;
  border-color: var(--lc-gold) !important;
}

body.lc-landing-mode .auth-status,
body.lc-landing-mode .verification-box p {
  color: rgba(255, 255, 255, 0.72) !important;
}

/* Sharp dual-ring Dharma Chakra */
.lc-chakra-stack {
  position: relative;
  width: min(300px, 68vw);
  height: min(300px, 68vw);
}

.lc-chakra-stack svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.lc-chakra-outer {
  animation: lc-spin 60s linear infinite;
  filter: drop-shadow(0 0 48px rgba(197, 160, 89, 0.65));
}

.lc-chakra-inner {
  animation: lc-spin-rev 42s linear infinite;
  opacity: 0.75;
  pointer-events: none;
}

.lc-chakra-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14%;
  height: 14%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff6d0, #c5a059 55%, #7a5a1a);
  box-shadow: 0 0 28px rgba(197, 160, 89, 0.75);
  z-index: 3;
}

.lc-chakra-hub::after {
  content: "";
  position: absolute;
  inset: 28%;
  border-radius: 50%;
  background: #050505;
}

@keyframes lc-spin-rev {
  to {
    transform: rotate(-360deg);
  }
}

.lc-hero-feature-ribbon {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  padding: 1rem 1.5rem;
  background: linear-gradient(180deg, transparent, rgba(5, 5, 5, 0.92) 35%);
  border-top: 1px solid rgba(197, 160, 89, 0.12);
}

.lc-ribbon-item {
  text-align: center;
  padding: 0.5rem 0.35rem;
  opacity: 0;
  transform: translateY(16px);
  animation: lc-rise 0.7s ease forwards;
  animation-delay: calc(0.8s + var(--r, 0) * 0.08s);
}

.lc-ribbon-icon {
  font-size: 1.1rem;
  color: var(--lc-gold);
  margin-bottom: 0.25rem;
}

.lc-ribbon-item h5 {
  margin: 0;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}

.lc-ribbon-item p {
  margin: 0.2rem 0 0;
  font-size: 0.58rem;
  color: var(--lc-muted);
  line-height: 1.3;
}

.lc-quote-float {
  position: absolute;
  right: clamp(1rem, 4vw, 3rem);
  bottom: clamp(5.5rem, 12vh, 8rem);
  z-index: 5;
  max-width: 16rem;
  padding: 1rem 1.25rem;
  background: rgba(8, 8, 8, 0.88);
  border: 1px solid rgba(197, 160, 89, 0.22);
  border-radius: 10px;
  backdrop-filter: blur(12px);
  opacity: 0;
  animation: lc-rise 0.9s ease 1.1s forwards;
}

.lc-quote-float p {
  margin: 0;
  font-size: 0.78rem;
  color: var(--lc-gold);
  line-height: 1.45;
}

.lc-quote-float cite {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.65rem;
  color: var(--lc-muted);
  font-style: normal;
}

@media (max-width: 900px) {
  .lc-hero-feature-ribbon {
    grid-template-columns: repeat(2, 1fr);
    padding-bottom: 1.5rem;
  }

  .lc-quote-float {
    display: none;
  }
}

@media (max-width: 520px) {
  .lc-hero-feature-ribbon {
    display: none;
  }
}

/* Kill styles.css v16/v20/Phase2 overrides inside landing */
body.lc-landing-mode #home.view.active h1,
body.lc-landing-mode #home.view.active h2,
body.lc-landing-mode #home.view.active h3,
body.lc-landing-mode #home.view.active h4,
body.lc-landing-mode #home.view.active p,
body.lc-landing-mode #home.view.active span,
body.lc-landing-mode #home.view.active strong,
body.lc-landing-mode #home.view.active label,
body.lc-landing-mode #home.view.active cite,
body.lc-landing-mode #home.view.active button {
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  text-shadow: none !important;
  letter-spacing: normal !important;
}

body.lc-landing-mode #home .lc-hero h1 {
  color: #ffffff !important;
  font-family: "Playfair Display", Georgia, serif !important;
  font-size: clamp(2rem, 5vw, 3.25rem) !important;
  line-height: 1.12 !important;
  font-weight: 400 !important;
  max-width: none !important;
  margin: 0.75rem 0 !important;
}

body.lc-landing-mode #home .lc-hero-desc,
body.lc-landing-mode #home .lc-eyebrow {
  color: rgba(255, 255, 255, 0.78) !important;
}

body.lc-landing-mode #home .lc-eyebrow {
  color: var(--lc-gold) !important;
}

body.lc-landing-mode #home .lc-section-head h2 {
  color: #ffffff !important;
  font-family: "Playfair Display", Georgia, serif !important;
  font-size: clamp(1.75rem, 4vw, 2.5rem) !important;
  line-height: 1.1 !important;
}

body.lc-landing-mode #home .lc-section-head p {
  color: var(--lc-muted) !important;
  font-size: 0.92rem !important;
}

body.lc-landing-mode #home .lc-portal-body h3 {
  color: #ffffff !important;
  font-family: "Playfair Display", Georgia, serif !important;
  font-size: 1.45rem !important;
  line-height: 1.15 !important;
}

body.lc-landing-mode #home .lc-portal-body p {
  color: var(--lc-muted) !important;
}

body.lc-landing-mode #home .lc-feature h4 {
  color: #ffffff !important;
  font-size: 0.78rem !important;
}

body.lc-landing-mode #home .lc-feature p {
  color: var(--lc-muted) !important;
  font-size: 0.72rem !important;
}

body.lc-landing-mode #home .lc-footer p {
  color: var(--lc-muted) !important;
}

body.lc-landing-mode #home .lc-trust p {
  color: var(--lc-muted) !important;
}

body.lc-landing-mode #home .lc-trust-logos span {
  color: rgba(255, 255, 255, 0.55) !important;
}

body.lc-landing-mode #home .lc-intern-copy h3 {
  color: #fff !important;
}

body.lc-landing-mode .lc-header-nav button {
  color: rgba(255, 255, 255, 0.88) !important;
  background: transparent !important;
  border: 1px solid rgba(197, 160, 89, 0.35) !important;
  border-radius: 999px !important;
  padding: 0.45rem 1rem !important;
  min-height: auto !important;
  box-shadow: none !important;
}

body.lc-landing-mode .lc-quote-float {
  display: none;
}

@media (min-width: 1200px) {
  body.lc-landing-mode .lc-quote-float {
    display: block;
    right: 2rem;
    bottom: 6rem;
  }
}

.lc-demo-login {
  margin-top: 1.25rem;
  padding: 1rem;
  border-radius: 12px;
  background: rgba(197, 160, 89, 0.08);
  border: 1px dashed rgba(197, 160, 89, 0.35);
}

.lc-demo-login p {
  margin: 0 0 0.75rem;
  font-size: 0.82rem;
  color: var(--lc-muted);
}

.lc-demo-login-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.lc-demo-login-grid button {
  padding: 0.55rem 0.35rem;
  font-size: 0.72rem;
  border-radius: 8px;
  border: 1px solid rgba(197, 160, 89, 0.35);
  background: rgba(255, 255, 255, 0.05);
  color: var(--lc-gold);
  font-weight: 700;
  cursor: pointer;
}

.lc-demo-login-grid button:hover {
  background: rgba(197, 160, 89, 0.18);
}

@media (max-width: 640px) {
  .lc-demo-login-grid {
    grid-template-columns: 1fr;
  }
}
