/* RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body.vm-body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #faf9f6;
  color: #111;
  scroll-behavior: smooth;
}

/* ===========================
   HEADER
=========================== */

.vm-header {
  background: #faf9f6;
  border-bottom: 1px solid #eceae4;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(8px);
}

.vm-header-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vm-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #111;
}

.vm-logo-mark {
  border: 1px solid #111;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: lowercase;
}

.vm-logo-text {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: lowercase;
  letter-spacing: 0.09em;
}

.vm-header-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.vm-btn-ghost {
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1px solid #111;
  background: transparent;
  text-decoration: none;
  font-size: 0.85rem;
  color: #111;
  transition: 0.2s ease;
}

.vm-btn-ghost:hover {
  transform: translateY(-1px);
}

/* ===========================
   MAIN CONTAINER
=========================== */

.vm-main {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1.25rem;
}

/* ===========================
   BUTTONS
=========================== */

.vm-btn {
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  border: 1px solid #111;
  background: transparent;
  cursor: pointer;
  font-size: 0.92rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.18s ease;
  color: #111;
}

.vm-btn:hover {
  transform: translateY(-2px);
}

.vm-btn-primary {
  background: #111;
  color: #faf9f6;
}

.vm-btn-large {
  padding: 0.9rem 2.3rem;
  font-size: 1rem;
  font-weight: 500;
}

/* ===========================
   HERO
=========================== */

.vm-hero-fullscreen {
  height: 88vh;
  display: flex;
  align-items: center;
  padding: 0 1rem;
}

.vm-hero-inner-left {
  max-width: 680px;
}

.vm-hero-large {
  font-size: 3.6rem;
  font-weight: 600;
  line-height: 1.08;
  margin-bottom: 1rem;
}

.vm-hero-sub {
  font-size: 1.15rem;
  color: #444;
  max-width: 560px;
  line-height: 1.6;
}

/* Animations */
.fade-in {
  opacity: 0;
  animation: fadeIn 1.2s ease forwards;
}
.fade-in-delay {
  opacity: 0;
  animation: fadeIn 1.8s ease forwards;
}
.float-up {
  opacity: 0;
  animation: floatUp 1.3s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes floatUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===========================
   DARK ABOUT STRIP
=========================== */

.vm-section-dark {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: #111;
  color: #fafafa;
  padding: 5rem 0;
}

.vm-section-inner {
  max-width: 960px;
  margin: 0 auto;
}

.vm-section-title-light {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.vm-section-text-light {
  font-size: 1.12rem;
  line-height: 1.75;
  color: #e8e8e8;
  max-width: 640px;
}

/* ===========================
   LIGHT SECTIONS
=========================== */

.vm-section-light {
  padding: 4rem 0;
}

.vm-section-title {
  font-size: 2.6rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.vm-section-text {
  font-size: 1.08rem;
  max-width: 640px;
  color: #444;
  line-height: 1.68;
}

/* ===========================
   INTELLIGENCE CARDS
=========================== */

.vm-intel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.3rem;
  max-width: 780px;
  margin: 3rem auto 0;
}

.vm-intel-card {
  padding: 1.3rem;
  border-radius: 14px;
  background: #f4f3ef;
  border: 1px solid #dddacf;
  line-height: 1.55;
  transition: 0.25s ease;
}

.vm-intel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

/* ===========================
   LANDING PRICING SECTION
=========================== */

.vm-section-pricing {
  padding: 4rem 0 5rem;
}

.vm-plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.6rem;
}

.vm-plan-card {
  background: #fff;
  padding: 1.7rem;
  border-radius: 18px;
  border: 1px solid #e5e2dd;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: 0.25s ease;
}

.vm-plan-card.popular {
  border: 2px solid #111;
}

.vm-plan-card:hover {
  transform: translateY(-4px);
}

.vm-plan-header {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 1rem;
}

.vm-plan-title {
  font-size: 1.3rem;
  text-transform: lowercase;
  margin: 0;
}

.vm-plan-price {
  font-size: 1.1rem;
  margin: 0;
  color: #444;
}

.vm-plan-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vm-plan-list li {
  margin-bottom: 0.4rem;
  color: #555;
}

.vm-plan-badge {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  border: 1px solid #111;
  margin-bottom: 0.4rem;
}

.vm-center-btn {
  margin-top: 2.5rem;
  text-align: center;
}

/* ===========================
   FINAL CTA SECTION
=========================== */

.vm-section-cta {
  padding: 4rem 0 5rem;
  text-align: left;
}

/* ===========================
   FOOTER
=========================== */

.vm-footer {
  border-top: 1px solid #eceae4;
  padding: 1rem 1.25rem 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: #777;
}

/* =========================================================
   LOGIN / AUTH PAGE OVERRIDES
========================================================= */

.vm-auth-wrapper,
.vm-login-wrapper,
.vm-login-container {
  all: unset;
  display: flex;
  justify-content: center;
  padding: 8rem 1.5rem 6rem;
}

.vm-auth-box {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

.vm-auth-title {
  font-size: 2.7rem !important;
  font-weight: 600 !important;
  text-transform: lowercase;
  color: #111;
  margin-bottom: 1.2rem;
  text-align: left;
}

.vm-auth-subtitle {
  font-size: 1.13rem !important;
  line-height: 1.68 !important;
  color: #555;
  margin-bottom: 2.2rem;
  max-width: 420px;
  text-align: left;
}

/* Label */
.vm-input-label {
  font-size: 0.88rem;
  color: #666;
  margin-bottom: 0.4rem;
  display: block;
  text-align: left;
}

/* Underline input */
.vm-auth-input,
input[type="email"] {
  width: 100%;
  padding: 0.6rem 0;
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid #ccc !important;
  border-radius: 0 !important;
  font-size: 1rem !important;
  color: #111;
  outline: none;
  transition: border-color 0.25s ease;
}

.vm-auth-input:focus {
  border-bottom: 1px solid #111 !important;
}

.vm-auth-cta,
button[type="submit"] {
  background: none !important;
  border: none !important;
  padding: 0 !important;
  margin-top: 1.8rem;
  font-size: 1.05rem;
  color: #111 !important;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: 0.2s ease;
  text-align: left;
}

.vm-auth-cta:hover {
  opacity: 0.7;
  transform: translateX(3px);
}

.vm-auth-footnote {
  margin-top: 2.8rem;
  font-size: 0.8rem;
  line-height: 1.6;
  color: #666;
  max-width: 420px;
  text-align: left;
}

/* Remove old card/border styles */
.vm-login-card,
.vm-login-box,
.vm-auth-panel,
.vm-login-container,
.vm-login-wrapper {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

/* ============================================================
   CLARITY SPACE — CHAT
============================================================ */

.vm-clarity-wrapper {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: #f5f1e9;
  padding: 6rem 0 6rem;
  display: flex;
  justify-content: center;
}

.vm-clarity-box {
  width: 100%;
  max-width: 720px;
  padding: 0 1.5rem;
}

/* Title + subtitle */
.vm-clarity-title {
  font-size: 2.6rem;
  font-weight: 600;
  text-transform: lowercase;
  margin-bottom: 0.4rem;
}

.vm-clarity-sub {
  font-size: 1.05rem;
  color: #5a564e;
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 2rem;
}

/* Flow area */
.vm-flow-area {
  background: #faf8f2;
  border-radius: 20px;
  border: 1px solid #e4dccb;
  padding: 1.4rem 1.3rem;
  min-height: 320px;
  max-height: 480px;
  overflow-y: auto;
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
}

/* User bubble — matte sand */
.vm-bubble-user {
  background: #ebe4d4;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  margin-bottom: 0.7rem;
  max-width: 85%;
  margin-left: auto;
  font-size: 0.96rem;
  line-height: 1.48;
  box-shadow: 0 3px 8px rgba(0,0,0,0.06);
}

/* Assistant bubble — translucent glass */
.vm-bubble-assistant {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 0.95rem 1rem;
  border-radius: 16px;
  margin-bottom: 0.7rem;
  max-width: 85%;
  margin-right: auto;
  font-size: 0.96rem;
  line-height: 1.55;
  color: #222;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}

/* Input area */
.vm-input-block {
  margin-top: 1.4rem;
}

.vm-clarity-input {
  width: 100%;
  min-height: 90px;
  padding: 1rem 1rem;
  border-radius: 16px;
  border: 1px solid #d7cfbe;
  background: #fffdf7;
  font-size: 1rem;
  resize: vertical;
  outline: none;
}

.vm-clarity-input:focus {
  border-color: #111;
  box-shadow: 0 0 0 1px #111;
}

/* Send button — minimal text link */
.vm-clarity-send-btn {
  background: none;
  border: none;
  margin-top: 1rem;
  padding: 0;
  font-size: 1.05rem;
  color: #111;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
  transition: 0.2s ease;
}

.vm-clarity-send-btn:hover {
  opacity: 0.7;
  transform: translateX(3px);
}

/* footnote */
.vm-clarity-footnote {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: #7b756a;
  line-height: 1.6;
}

/* bubble animation */
.float-in {
  opacity: 0;
  transform: translateY(10px);
  animation: floatIn 0.35s ease forwards;
}

@keyframes floatIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   SEPARATE PRICING PAGE (pricing.html)
   Scoped so it does NOT break landing.
============================================================ */

.pricing-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 3rem 1.25rem 4rem;
  text-align: left;
}

.pricing-title {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.6rem;
}

.pricing-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid #e5e2dd;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 1.8rem 1.6rem;
  transition: 0.25s ease;
}

.pricing-card.premium {
  border: 2px solid #111;
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.pricing-card h2 {
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
  text-transform: lowercase;
}

.pricing-card .price {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #444;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.pricing-card ul li {
  margin-bottom: 0.4rem;
  color: #555;
}

.pricing-btn {
  width: 100%;
  border-radius: 999px;
  border: 1px solid #111;
  background: #111;
  color: #faf9f6;
  padding: 0.7rem 1.2rem;
  font-size: 0.95rem;
  cursor: pointer;
  transition: 0.2s ease;
}

.pricing-btn:hover {
  transform: translateY(-2px);
}

.pricing-btn.premium-btn {
  background: #111;
}

/* Mobile tweaks */
@media (max-width: 640px) {
  .vm-hero-large {
    font-size: 2.6rem;
  }

  .vm-main {
    padding: 1.5rem 1rem 2.5rem;
  }

  .pricing-container {
    padding: 2.5rem 1rem 3rem;
  }
  /* ============================================================
   ACCOUNT MODAL (SAFE, FULLY ISOLATED)
============================================================ */

.vm-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(3px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 5000;
}

.vm-modal-box {
  background: #fffdf7;
  border: 1px solid #e5dfd4;
  border-radius: 18px;
  padding: 2rem 2rem 2.4rem;
  max-width: 420px;
  width: 90%;
  box-shadow: 0 20px 48px rgba(0,0,0,0.15);
  text-align: center;
}

.vm-modal-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: lowercase;
}

.vm-modal-sub {
  font-size: 0.98rem;
  color: #555;
  margin-bottom: 1.8rem;
  line-height: 1.55;
}

.vm-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.vm-modal-btn {
  width: 100%;
}

.vm-modal-close {
  width: 100%;
  background: transparent;
  border: 1px solid #111;
}

/* ============================================================
   ACCOUNT MODAL (SAFE, FULLY ISOLATED)
============================================================ */

.vm-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(3px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 5000;
}

.vm-modal-box {
  background: #fffdf7;
  border: 1px solid #e5dfd4;
  border-radius: 18px;
  padding: 2rem 2rem 2.4rem;
  max-width: 420px;
  width: 90%;
  box-shadow: 0 20px 48px rgba(0,0,0,0.15);
  text-align: center;
}

.vm-modal-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: lowercase;
}

.vm-modal-sub {
  font-size: 0.98rem;
  color: #555;
  margin-bottom: 1.8rem;
  line-height: 1.55;
}

.vm-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.vm-modal-btn {
  width: 100%;
}

.vm-modal-close {
  width: 100%;
  background: transparent;
  border: 1px solid #111;
}
  
}