/* ====== GLOBAL BASE (LIGHT THEME) ====== */

.lp-body {
  background: #f9fafc;
  color: #0f1a2e;
  font-family: system-ui,-apple-system,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* generic container */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Accent gradient (brand blue/violet) */
:root {
  --accent-grad: linear-gradient(135deg,#3d6bff 0%,#8f5bff 100%);
  --accent-solid: #4e6bff;
  --text-main: #0f1a2e;
  --text-dim: #4a556d;
  --text-soft: #7b86a6;
  --bg-page: #f9fafc;
  --bg-card: #ffffff;
  --bg-section-soft: #f0f3fa;
  --border-card: rgba(20,27,48,0.08);
  --border-light: rgba(20,27,48,0.06);
  --shadow-card: 0 24px 48px rgba(15,26,46,0.07),
                 0 2px 4px rgba(15,26,46,0.04);
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --green: #13c27a;
  --amber: #e0a100;
  --red: #ff5f5f;
  --blue-soft: #6b7dff;
  --pill-bg: rgba(78,107,255,0.08);
  --pill-border: rgba(78,107,255,0.3);
  --pill-text: #4e6bff;
}


/* ====== NAVBAR ====== */

.lp-nav-wrap {
  position: relative;
  z-index: 20;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 20px 40px rgba(15,26,46,0.06);
}

.lp-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.lp-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-main);
}

.lp-logo {
  font-size: 16px;
  line-height: 1;
  width: 36px;
  height: 36px;
  background: var(--accent-grad);
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 16px 32px rgba(78,107,255,0.4);
  font-weight: 600;
}

.lp-brand-text {
  line-height: 1.2;
}

.lp-brand-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-main);
}
.lp-brand-tag {
  font-size: 12px;
  color: var(--blue-soft);
  font-weight: 500;
}

.lp-nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.lp-link {
  font-size: 13px;
  color: var(--text-dim);
  text-decoration: none;
  line-height: 1.2;
}
.lp-link:hover {
  color: var(--text-main);
}

.lp-login-btn {
  background: transparent;
  border: 1px solid var(--border-card);
  color: var(--text-main);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  border-radius: var(--radius-md);
  padding: 8px 12px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(15,26,46,0.04);
}

.lp-cta-btn {
  background: var(--accent-grad);
  border: 0;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  border-radius: var(--radius-md);
  padding: 9px 14px;
  cursor: pointer;
  box-shadow: 0 16px 32px rgba(78,107,255,0.4);
}
.lp-cta-btn:hover {
  filter: brightness(1.05);
}

/* mobile nav is still from main.css; you can further style later */


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

.lp-hero {
  position: relative;
  background:
    radial-gradient(circle at 15% 20%, rgba(78,107,255,0.12) 0%, rgba(255,255,255,0) 60%),
    radial-gradient(circle at 80% 0%, rgba(255,117,189,0.08) 0%, rgba(255,255,255,0) 60%),
    #fff;
  color: var(--text-main);
  padding: 64px 0 80px;
  border-bottom: 1px solid var(--border-light);
}

.lp-hero-grid {
  display: grid;
  gap: 40px;
}
@media(min-width:1000px){
  .lp-hero-grid {
    grid-template-columns: 1fr 380px;
    align-items: flex-start;
  }
}

/* HERO LEFT TEXT */
.lp-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: var(--blue-soft);
  background: rgba(78,107,255,0.08);
  border: 1px solid rgba(78,107,255,0.25);
  padding: 6px 10px;
  border-radius: 999px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.lp-headline {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 600;
  color: var(--text-main);
  letter-spacing: -0.03em;
}
@media(min-width:768px){
  .lp-headline {
    font-size: 40px;
    line-height: 1.15;
  }
}

.lp-subtext {
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-dim);
  margin-top: 16px;
  max-width: 500px;
  font-weight: 400;
}

/* HERO CTAs */
.lp-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.lp-primary-btn {
  background: var(--accent-grad);
  border: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: 0 24px 44px rgba(78,107,255,0.4);
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  text-align: center;
}
.lp-primary-btn.small {
  font-size: 13px;
  padding: 10px 14px;
}
.lp-primary-btn.block {
  width: 100%;
  text-align: center;
}

.lp-secondary-btn {
  background: #fff;
  border: 1px solid var(--border-card);
  color: var(--text-main);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  border-radius: var(--radius-md);
  padding: 12px 16px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(15,26,46,0.06);
}
.lp-secondary-btn:hover {
  background: #f4f6fd;
}

/* TRUST pills under hero */
.lp-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.lp-trust-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 8px 12px;
  box-shadow: 0 8px 24px rgba(15,26,46,0.05);
  color: var(--text-main);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 500;
}
.lp-pill-icon {
  font-size: 14px;
  line-height: 1;
}
.lp-pill-text {
  font-size: 12px;
  line-height: 1.3;
  font-weight: 500;
  color: var(--text-main);
}

/* HERO RIGHT "GLASS" CARD (now frosted white) */
.glass-card {
  position: relative;
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(15,26,46,0.08);
  border-radius: var(--radius-lg);
  box-shadow: 0 32px 64px rgba(15,26,46,0.07),
              0 2px 3px rgba(15,26,46,0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--text-main);
  min-width: 0;
  padding: 20px 20px 16px;
}

.glass-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
.glass-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.3;
}
.glass-sub {
  font-size: 12px;
  line-height: 1.4;
  color: var(--text-dim);
}
.glass-badge {
  background: var(--pill-bg);
  border: 1px solid var(--pill-border);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.2;
  padding: 4px 8px;
  color: var(--pill-text);
  white-space: nowrap;
}

.glass-body {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
}
.glass-row {
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  font-size:13px;
  line-height:1.4;
}
.glass-label {
  color: var(--text-soft);
}
.glass-value {
  color: var(--text-main);
  font-weight:500;
}
.glass-value.good {
  color: var(--green);
  font-weight:600;
}

.glass-foot {
  font-size:12px;
  line-height:1.5;
  color: var(--text-dim);
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(15,26,46,0.07);
  border-radius: var(--radius-sm);
  padding: 12px;
}


/* ====== GENERIC SECTION WRAPPERS ====== */

.lp-section {
  background: var(--bg-page);
  color: var(--text-main);
  padding: 72px 0;
  position: relative;
  z-index: 10;
  border-bottom: 1px solid var(--border-light);
}

.lp-section-soft {
  background: var(--bg-section-soft);
  color: var(--text-main);
  padding: 72px 0;
  border-bottom: 1px solid var(--border-light);
  box-shadow: inset 0 40px 80px rgba(15,26,46,0.05);
}

.lp-section-eyebrow {
  font-size: 12px;
  font-weight: 500;
  color: var(--blue-soft);
  background: rgba(78,107,255,0.08);
  border: 1px solid rgba(78,107,255,0.25);
  padding: 6px 10px;
  border-radius: 999px;
  line-height: 1.2;
  display: inline-block;
  margin-bottom: 16px;
}

.lp-section-head {
  font-size: 26px;
  line-height: 1.3;
  font-weight: 600;
  color: var(--text-main);
  max-width: 620px;
  letter-spacing: -0.03em;
}
@media(min-width:768px){
  .lp-section-head {
    font-size: 30px;
    line-height: 1.3;
  }
}
.lp-section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.lp-section-text {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.5;
  max-width: 520px;
  margin-top: 16px;
  font-weight: 400;
}
.lp-section-text + .lp-section-text {
  margin-top: 12px;
}

/* 2-col layout */
.lp-two-col {
  display: grid;
  gap: 40px;
  align-items: flex-start;
}
@media(min-width:1000px){
  .lp-two-col {
    grid-template-columns: 1fr 360px;
  }
}

.lp-block { max-width: 600px; }

/* bullets */
.lp-bullets {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}
.lp-bullet {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.4;
  color: var(--text-main);
}
.lp-bullet-icon {
  width: 20px;
  height: 20px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  font-weight: 600;
}
.lp-bullet-icon.bad {
  background: rgba(255,95,95,0.08);
  border: 1px solid rgba(255,95,95,0.3);
  color: var(--red);
}
.lp-bullet-icon.good {
  background: rgba(19,194,122,0.08);
  border: 1px solid rgba(19,194,122,0.3);
  color: var(--green);
}

.lp-inline-cta {
  margin-top: 24px;
}

.lp-legal-note {
  margin-top: 20px;
  font-size: 12px;
  color: var(--text-soft);
  line-height: 1.5;
  max-width: 520px;
}
.lp-legal-note.small {
  font-size: 11px;
}

/* right "stack card" */
.lp-card-stack {
  display: flex;
  justify-content: center;
}

.stack-card {
  background: #fff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 20px;
  color: var(--text-main);
  min-width: 0;
  max-width: 360px;
}
.stack-head {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 16px;
}
.stack-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  font-size: 13px;
  line-height: 1.4;
  padding: 10px 0;
  border-top: 1px solid var(--border-light);
}
.stack-row:first-of-type {
  border-top: 0;
}
.stack-label {
  color: var(--text-soft);
}
.stack-value {
  font-weight: 500;
  color: var(--text-main);
}
.stack-value.good {
  color: var(--green);
  font-weight: 600;
}
.stack-value.soon {
  color: var(--amber);
  font-weight: 600;
}
.stack-foot {
  margin-top: 16px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-dim);
  background: #f9fafc;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 12px;
}


/* ====== FEATURE GRID ====== */

.lp-center-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px auto;
}

.lp-feature-grid {
  display: grid;
  gap: 20px;
}
@media(min-width:800px){
  .lp-feature-grid {
    grid-template-columns: repeat(4,1fr);
  }
}

.feat-card {
  background: #fff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 20px;
  min-height: 170px;
  color: var(--text-main);
}
.feat-icon {
  font-size: 20px;
  line-height: 1;
  margin-bottom: 12px;
}
.feat-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.3;
  margin-bottom: 8px;
}
.feat-desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-dim);
}


/* ====== PREVIEW GRID ====== */

.lp-preview-grid {
  display: grid;
  gap: 20px;
}
@media(min-width:800px){
  .lp-preview-grid {
    grid-template-columns: repeat(2,1fr);
  }
}

.pvx-card {
  background: #fff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 20px;
  min-height: 170px;
  color: var(--text-main);
}
.pvx-head-row {
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  margin-bottom:12px;
}
.pvx-head-title {
  font-size:15px;
  font-weight:600;
  color:var(--text-main);
  line-height:1.3;
}
.pvx-pill {
  background: var(--pill-bg);
  border:1px solid var(--pill-border);
  color: var(--pill-text);
  border-radius:999px;
  font-size:11px;
  line-height:1.2;
  font-weight:500;
  padding:4px 8px;
}
.pvx-pill-soon{
  background: rgba(224,161,0,0.08);
  border: 1px solid rgba(224,161,0,0.3);
  color: var(--amber);
}
.pvx-body-text {
  font-size:13px;
  line-height:1.5;
  color:var(--text-dim);
}

.lp-centered-cta {
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  justify-content:center;
  margin-top:32px;
}


/* ====== WAITLIST / LEAD FORM ====== */

.lp-wait-grid {
  display:grid;
  gap:40px;
}
@media(min-width:1000px){
  .lp-wait-grid {
    grid-template-columns:1fr 360px;
    align-items:flex-start;
  }
}

.lp-wait-copy .lp-section-head {
  max-width:520px;
}

.lp-checklist {
  margin-top:20px;
  font-size:13px;
  line-height:1.5;
  color:var(--text-main);
}
.lp-checklist li {
  margin-bottom:6px;
}

/* waitlist form card */
.lp-form-card {
  background: #fff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 20px;
  color: var(--text-main);
}
.lp-form-card label {
  color: var(--text-main);
  font-size: 13px;
  font-weight: 500;
}
.lp-form-card input,
.lp-form-card select {
  background:#fff;
  color:var(--text-main);
  border:1px solid var(--border-card);
  border-radius: var(--radius-md);
  font-size:13px;
  padding:10px 12px;
  width:100%;
  outline:none;
  box-shadow:0 2px 4px rgba(15,26,46,0.03);
}
.lp-form-card input:focus,
.lp-form-card select:focus {
  border-color: var(--accent-solid);
  box-shadow:0 0 0 3px rgba(78,107,255,0.2);
}

/* override the default submit buttons in modals/waitlist to use gradient look */
.wait-form .form-btn,
#loginSubmitBtn,
#signupSubmitBtn {
  background: var(--accent-grad) !important;
  border: 0 !important;
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  border-radius: var(--radius-md) !important;
  padding: 12px 16px !important;
  width: 100%;
  box-shadow: 0 24px 44px rgba(78,107,255,0.4) !important;
}


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

.lp-footer {
  background:#fff;
  color:var(--text-main);
  padding-top:60px;
  border-top:1px solid var(--border-light);
  box-shadow:0 -24px 64px rgba(15,26,46,0.05);
}

.lp-footer-grid {
  display:grid;
  gap:40px;
  padding-bottom:40px;
}
@media(min-width:900px){
  .lp-footer-grid {
    grid-template-columns:1fr auto auto;
  }
}

.lp-foot-brand .lp-brand-name {
  font-size:15px;
  font-weight:600;
  color:var(--text-main);
}
.lp-foot-text {
  font-size:13px;
  line-height:1.5;
  color:var(--text-dim);
  margin-top:16px;
  max-width:360px;
}
.lp-foot-legal {
  font-size:11px;
  line-height:1.5;
  color:var(--text-soft);
  margin-top:16px;
  max-width:360px;
}

.lp-foot-col {
  font-size:13px;
  line-height:1.5;
  color:var(--text-main);
}
.lp-foot-head {
  font-size:12px;
  font-weight:500;
  color:var(--blue-soft);
  margin-bottom:12px;
  text-transform:uppercase;
  letter-spacing:.04em;
}
.lp-foot-link {
  display:block;
  font-size:13px;
  line-height:1.5;
  color:var(--text-main);
  margin-bottom:8px;
  text-decoration:none;
}
.lp-foot-link:hover {
  color: var(--accent-solid);
}

.lp-foot-bottom {
  border-top:1px solid var(--border-light);
  padding:16px 0 24px;
  background:#f9fafc;
  font-size:12px;
  line-height:1.4;
  color:var(--text-soft);
  box-shadow:0 -12px 24px rgba(15,26,46,0.03) inset;
}
.lp-foot-bottom-row {
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  justify-content:space-between;
}
.lp-foot-left {
  color:var(--text-soft);
  font-size:12px;
}
.lp-foot-right {
  color:var(--text-soft);
  font-size:12px;
  text-align:right;
}


/* ====== MODALS (LOGIN / SIGNUP) ====== */
/* We reuse your .modal-* classes from main.css but restyle surface to match light theme */

.modal-card {
  background:#fff;
  color:var(--text-main);
  border:1px solid var(--border-card);
  border-radius: var(--radius-lg);
  box-shadow:
    0 32px 64px rgba(15,26,46,0.1),
    0 2px 4px rgba(15,26,46,0.06);
}

.modal-head{
  background:
    radial-gradient(circle at 20% 20%, rgba(78,107,255,0.08) 0%, rgba(255,255,255,0) 70%),
    #fff;
  border-bottom:1px solid var(--border-light);
  border-top-left-radius:var(--radius-lg);
  border-top-right-radius:var(--radius-lg);
  padding-top:20px;
}

.modal-title{
  color:var(--text-main);
  font-weight:600;
}
.modal-sub{
  color:var(--text-dim);
  font-size:13px;
}

.modal-form .form-field label{
  color:var(--text-main);
  font-size:13px;
  font-weight:500;
}
.modal-form .form-field input{
  background:#fff;
  color:var(--text-main);
  border:1px solid var(--border-card);
  border-radius: var(--radius-md);
  font-size:13px;
  padding:10px 12px;
  width:100%;
  box-shadow:0 2px 4px rgba(15,26,46,0.03);
}
.modal-form .form-field input:focus{
  border-color: var(--accent-solid);
  box-shadow:0 0 0 3px rgba(78,107,255,0.2);
  outline:none;
}

.form-note{
  color:var(--text-dim);
  font-size:12px;
  line-height:1.4;
}

.modal-close{
  background:#fff;
  border:1px solid var(--border-card);
  color:var(--text-main);
  border-radius: var(--radius-sm);
  font-weight:600;
  box-shadow:0 6px 16px rgba(15,26,46,0.06);
}

.modal-alt{
  color:var(--text-dim);
  font-size:12px;
}
.link-btn{
  color: var(--accent-solid);
  font-weight:600;
  font-size:12px;
  background:none;
  border:none;
  cursor:pointer;
  padding:0;
}
.link-btn:hover{
  text-decoration:underline;
}
