/* ─── Landing page (marketing) ─────────────────────────────────────────── */
.landing-page { background: #fff; }

.landing-header {
  background: #fff;
  border-bottom: 1px solid #eef0f4;
  position: sticky; top: 0; z-index: 200;
}
.landing-header .header-inner { height: 64px; }
.landing-header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.landing-nav-center {
  justify-content: center;
  margin-left: 0 !important;
}
.landing-nav-center a {
  color: #374151; font-weight: 500; font-size: 14px;
  padding: 6px 12px; border-radius: 8px; text-decoration: none;
}
.landing-nav-center a:hover { color: var(--purple); background: #ede9fe; text-decoration: none; }
.landing-header .nav { gap: 16px; }
.landing-header .nav a:not(.btn) { color: #374151; font-weight: 500; }
.landing-header .nav a:not(.btn):hover { color: var(--purple); background: transparent; }
.landing-header .btn-get-started {
  padding: 10px 22px; border-radius: 999px;
  background: var(--gradient); color: #fff; font-weight: 600;
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.35);
  text-decoration: none;
}
.landing-header .btn-get-started:hover { color: #fff; text-decoration: none; filter: brightness(1.06); }
@media (max-width: 900px) {
  .landing-header-inner { grid-template-columns: auto auto; }
  .landing-nav-center { display: none; }
}

/* Split hero */
.lp-hero-split {
  background: #eef0f6;
  padding: 32px 0 48px;
}
.lp-hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 0;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(30, 27, 75, 0.12);
  min-height: 560px;
}
@media (max-width: 960px) {
  .lp-hero-grid { grid-template-columns: 1fr; }
}
.lp-hero-left {
  background: #0f172a;
  background: radial-gradient(ellipse 70% 60% at 80% 20%, rgba(124, 58, 237, 0.2) 0%, transparent 60%),
              radial-gradient(ellipse 50% 40% at 20% 80%, rgba(37, 99, 235, 0.15) 0%, transparent 60%),
              #0f172a;
  padding: 48px 44px;
  color: #fff;
  position: relative;
  display: flex; flex-direction: column; justify-content: center;
}
.lp-hero-left::after {
  content: '';
  position: absolute; bottom: -40px; right: -40px;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(124, 58, 237, 0.12);
}
.lp-hero-tags { font-size: 13px; color: #64748b; margin-bottom: 16px; }
.lp-hero-kicker { font-size: 14px; color: #94a3b8; margin-bottom: 12px; }
.lp-engine-badge {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 0.06em;
  background: rgba(124, 58, 237, 0.2); color: #c4b5fd;
  padding: 6px 14px; border-radius: 999px; margin-bottom: 20px;
  border: 1px solid rgba(124, 58, 237, 0.3);
}
.lp-hero-left h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800; line-height: 1.15; letter-spacing: -0.02em;
  margin-bottom: 0; position: relative; z-index: 1;
}
.lp-hero-headline-stack {
  position: relative; z-index: 1;
  margin-bottom: 18px;
}
.lp-hero-headline-stack h1 + h1 { margin-top: 10px; }
.lp-hero-left h1 .accent {
  background: linear-gradient(135deg, #a78bfa, #818cf8);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lp-hero-left h1 .accent-pink {
  background: linear-gradient(135deg, #f9a8d4, #f472b6);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lp-hero-desc {
  font-size: 15px; color: #94a3b8; line-height: 1.65;
  max-width: 480px; margin-bottom: 28px; position: relative; z-index: 1;
}
.lp-trust-row { display: flex; flex-wrap: wrap; gap: 10px; position: relative; z-index: 1; }
.lp-trust-pill {
  font-size: 12px; color: #cbd5e1;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  padding: 8px 14px; border-radius: 999px;
}

/* Sign-in panel */
.lp-hero-right {
  background: #f4f3ff;
  padding: 40px 36px;
  display: flex; flex-direction: column; justify-content: center;
}
.lp-hero-right h2 { font-size: 22px; font-weight: 800; color: #0f172a; margin-bottom: 8px; }
.lp-signin-sub { font-size: 14px; color: #64748b; line-height: 1.55; margin-bottom: 16px; }
.lp-signin-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.lp-signin-pills span {
  font-size: 11px; font-weight: 600; color: #64748b;
  background: #fff; border: 1px solid #ddd6fe;
  padding: 4px 10px; border-radius: 999px;
}
.lp-field {
  position: relative; margin-bottom: 14px;
}
.lp-field-icon {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  width: 18px; height: 18px; opacity: 0.5; pointer-events: none;
  display: flex; align-items: center; justify-content: center;
}
.lp-field-icon img { width: 18px; height: 18px; }
.lp-field input {
  width: 100%; padding: 14px 14px 14px 42px;
  border: 1px solid #ddd6fe; border-radius: 12px;
  font-size: 15px; background: #fff; color: #0f172a;
}
.lp-field input:focus { outline: none; border-color: var(--purple); box-shadow: 0 0 0 3px rgba(124,58,237,0.12); }
.lp-show-pw {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: var(--purple);
  font-size: 13px; font-weight: 600; cursor: pointer;
}
.lp-form-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px; font-size: 13px;
}
.lp-remember { display: flex; align-items: center; gap: 6px; color: #64748b; cursor: pointer; }
.lp-forgot { color: var(--purple); font-weight: 500; text-decoration: none; }
.lp-forgot:hover { text-decoration: underline; }
.lp-signin-btn {
  display: block; width: 100%; padding: 14px;
  border: none; border-radius: 12px; font-size: 15px; font-weight: 700;
  background: var(--gradient); color: #fff; cursor: pointer;
  text-align: center; text-decoration: none;
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.3);
  margin-bottom: 10px;
}
.lp-signin-btn:hover { filter: brightness(1.06); color: #fff; text-decoration: none; }
.lp-join-btn {
  display: block; width: 100%; padding: 14px;
  border: 2px solid var(--purple); border-radius: 12px;
  font-size: 15px; font-weight: 700; background: #fff;
  color: var(--purple); cursor: pointer; text-align: center; text-decoration: none;
}
.lp-join-btn:hover { background: #ede9fe; color: var(--purple); text-decoration: none; }
.lp-signin-footer { font-size: 13px; color: #64748b; text-align: center; margin-top: 16px; }
.lp-signin-footer a { color: var(--purple); font-weight: 600; }
.lp-signin-note { font-size: 12px; color: #059669; text-align: center; margin-top: 12px; }
.lp-google-btn { margin-bottom: 0; }
.lp-auth-divider { margin: 14px 0; color: #94a3b8; }
.lp-auth-divider.hidden { display: none; }

/* Tag pill (section labels — What is Dublogs) */
.lp-tag-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--purple);
  background: #ede9fe; padding: 6px 14px; border-radius: 999px;
  margin-bottom: 16px;
}
.lp-tag-pill.center { display: flex; width: fit-content; margin: 0 auto 16px; }
.lp-tag-pill.left { display: inline-flex; }

/* About section */
.lp-about-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 24px; align-items: stretch;
}
@media (max-width: 900px) { .lp-about-grid { grid-template-columns: 1fr; } }
.lp-about-card {
  background: #fff; border: 1px solid #e2e8f0; border-radius: 24px;
  padding: 40px; box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.lp-about-title {
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  font-weight: 800; color: #0f172a; letter-spacing: -0.02em;
  margin-bottom: 16px; line-height: 1.3;
}
.lp-about-card p { font-size: 15px; color: #64748b; line-height: 1.65; margin-bottom: 14px; }
.lp-about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 24px; }
@media (max-width: 600px) { .lp-about-features { grid-template-columns: 1fr; } }
.lp-about-feat {
  display: flex; gap: 12px; align-items: flex-start;
  background: #f8fafc; border: 1px solid #e2e8f0;
  border-radius: 14px; padding: 16px;
}
.lp-about-feat-icon { font-size: 20px; flex-shrink: 0; }
.lp-about-feat strong { display: block; font-size: 13px; color: #0f172a; margin-bottom: 4px; }
.lp-about-feat span { font-size: 12px; color: #64748b; line-height: 1.45; }
.lp-capabilities-grid { margin-top: 36px; }

/* Growth showcase — hero-scale headlines on landing */
.lp-growth-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 44px;
}
@media (max-width: 768px) {
  .lp-growth-showcase { grid-template-columns: 1fr; }
}
.lp-growth-panel {
  border-radius: 20px;
  padding: 36px 32px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.lp-growth-panel--boost {
  background: radial-gradient(ellipse 80% 60% at 90% 10%, rgba(236, 72, 153, 0.35) 0%, transparent 55%),
              radial-gradient(ellipse 50% 40% at 10% 90%, rgba(124, 58, 237, 0.25) 0%, transparent 55%),
              #0f172a;
  border: 1px solid rgba(236, 72, 153, 0.35);
}
.lp-growth-panel--accounts {
  background: radial-gradient(ellipse 80% 60% at 90% 10%, rgba(99, 102, 241, 0.35) 0%, transparent 55%),
              radial-gradient(ellipse 50% 40% at 10% 90%, rgba(37, 99, 235, 0.25) 0%, transparent 55%),
              #0f172a;
  border: 1px solid rgba(99, 102, 241, 0.35);
}
.lp-growth-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: #e2e8f0; margin-bottom: 16px;
}
.lp-growth-label img { width: 16px; height: 16px; filter: brightness(0) invert(1); opacity: 0.9; }
.lp-growth-headline {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 800; line-height: 1.12; letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.lp-growth-headline .accent-pink {
  background: linear-gradient(135deg, #f9a8d4, #f472b6);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lp-growth-headline .accent-indigo {
  background: linear-gradient(135deg, #a5b4fc, #818cf8);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lp-growth-panel p {
  font-size: 15px; color: #94a3b8; line-height: 1.6; margin-bottom: 20px; max-width: 420px;
}
.lp-growth-cta {
  display: inline-block;
  font-size: 15px; font-weight: 700; color: #fff;
  padding: 12px 20px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.lp-growth-cta:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff; text-decoration: none;
}
.lp-about-stats { display: flex; flex-direction: column; gap: 16px; }
.lp-stat-card {
  flex: 1; background: #0f172a;
  background: radial-gradient(ellipse 60% 80% at 100% 0%, rgba(124,58,237,0.25) 0%, transparent 60%), #0f172a;
  border-radius: 20px; padding: 28px 24px; color: #fff;
  position: relative; overflow: hidden;
}
.lp-stat-card::after {
  content: ''; position: absolute; top: -20px; right: -20px;
  width: 100px; height: 100px; border-radius: 50%;
  background: rgba(99, 102, 241, 0.15);
}
.lp-stat-card-label {
  display: block; font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #a78bfa; margin-bottom: 8px; position: relative; z-index: 1;
}
.lp-stat-card strong {
  display: block; font-size: 28px; font-weight: 800;
  margin-bottom: 8px; position: relative; z-index: 1;
}
.lp-stat-card p { font-size: 13px; color: #94a3b8; line-height: 1.5; position: relative; z-index: 1; }

/* Ticker */
.lp-ticker-wrap {
  background: #fff; padding: 20px 0; overflow: hidden;
  border-bottom: 1px solid #eef0f4;
}
.lp-ticker {
  display: flex; gap: 32px; animation: ticker 40s linear infinite;
  white-space: nowrap; width: max-content;
}
.lp-ticker-item {
  font-size: 14px; color: #64748b; display: inline-flex; align-items: center; gap: 8px;
}
.lp-ticker-item .dot { width: 6px; height: 6px; border-radius: 50%; background: #22c55e; }
.lp-ticker-item strong { color: #1e293b; }
.lp-ticker-item .verified { color: #16a34a; font-weight: 500; }
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Section headers */
.lp-section { padding: 72px 0; }
.lp-section.alt { background: #f8fafc; }
.lp-label {
  display: block; text-align: center; font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--purple); margin-bottom: 12px;
}
.lp-heading {
  text-align: center; font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800; color: #0f172a; letter-spacing: -0.02em; margin-bottom: 12px;
}
.lp-heading .grad {
  background: var(--gradient);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lp-sub { text-align: center; color: #64748b; max-width: 520px; margin: 0 auto 40px; font-size: 16px; }

/* Service pills — layout; icon styles in icons.css */
.lp-services {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; max-width: 900px; margin: 0 auto;
}

/* Steps */
.lp-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  max-width: 1000px; margin: 0 auto; position: relative;
}
@media (max-width: 900px) { .lp-steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .lp-steps { grid-template-columns: 1fr; } }
.lp-step {
  background: #fff; border: 1px solid #e2e8f0; border-radius: 16px;
  padding: 24px; position: relative; box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.lp-step-num {
  position: absolute; top: 16px; right: 16px;
  font-size: 32px; font-weight: 800; color: #f1f5f9; line-height: 1;
}
.lp-step-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--gradient); display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 16px;
}
.lp-step h3 { font-size: 16px; font-weight: 700; color: #0f172a; margin-bottom: 6px; }
.lp-step p { font-size: 14px; color: #64748b; }

/* Feature grid */
.lp-features {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 768px) { .lp-features { grid-template-columns: 1fr; } }
.lp-feature {
  background: #fff; border: 1px solid #e2e8f0; border-radius: 16px;
  padding: 28px; box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.lp-feature-icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 16px; color: #fff;
}
.lp-feature-icon.purple { background: linear-gradient(135deg, #7c3aed, #6366f1); }
.lp-feature-icon.blue { background: linear-gradient(135deg, #2563eb, #3b82f6); }
.lp-feature-icon.teal { background: linear-gradient(135deg, #0d9488, #14b8a6); }
.lp-feature-icon.indigo { background: linear-gradient(135deg, #4f46e5, #6366f1); }
.lp-feature-icon.pink { background: linear-gradient(135deg, #db2777, #ec4899); }
.lp-feature h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: #0f172a; }
.lp-feature p { font-size: 14px; color: #64748b; line-height: 1.55; }

/* Split section */
.lp-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
@media (max-width: 768px) { .lp-split { grid-template-columns: 1fr; } }
.lp-checklist { list-style: none; margin-top: 28px; }
.lp-checklist li {
  display: flex; gap: 14px; margin-bottom: 22px; align-items: flex-start;
}
.lp-check-icon {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  background: #ede9fe; color: var(--purple); display: flex; align-items: center; justify-content: center;
}
.lp-check-icon img { width: 12px; height: 12px; }
.lp-checklist h4 { font-size: 15px; font-weight: 600; color: #0f172a; margin-bottom: 4px; }
.lp-checklist p { font-size: 14px; color: #64748b; line-height: 1.5; }

/* SMS mockup */
.lp-mockup {
  background: #131829; border-radius: 20px; padding: 24px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.2), 0 0 0 1px rgba(255,255,255,0.06);
  max-width: 380px; margin: 0 auto;
}
.lp-mockup-top { margin-bottom: 16px; }
.lp-mockup-top .row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.lp-mockup-top .service { color: #a78bfa; font-weight: 600; font-size: 14px; }
.lp-mockup-top .status { background: rgba(34,197,94,0.15); color: #4ade80; font-size: 11px; padding: 3px 10px; border-radius: 999px; }
.lp-mockup-number { font-size: 22px; font-weight: 700; color: #fff; letter-spacing: 0.02em; }
.lp-mockup-bar { height: 4px; background: rgba(255,255,255,0.1); border-radius: 2px; margin: 12px 0 6px; overflow: hidden; }
.lp-mockup-bar-fill { height: 100%; width: 65%; background: var(--gradient); border-radius: 2px; animation: pulse-bar 2s ease-in-out infinite; }
@keyframes pulse-bar { 0%,100%{opacity:1} 50%{opacity:0.6} }
.lp-mockup-wait { font-size: 12px; color: #64748b; text-align: right; }
.lp-mockup-sms {
  background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.2);
  border-radius: 12px; padding: 16px; margin-top: 16px;
}
.lp-mockup-sms .received { color: #4ade80; font-size: 13px; font-weight: 600; margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.lp-mockup-sms .code { color: #fff; font-size: 15px; }
.lp-mockup-sms .code strong { color: #4ade80; font-size: 18px; }
.lp-mockup-sms .time { font-size: 11px; color: #64748b; margin-top: 8px; }

/* Testimonials */
.lp-testimonials {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 900px) { .lp-testimonials { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .lp-testimonials { grid-template-columns: 1fr; } }
.lp-testimonial {
  background: #fff; border: 1px solid #e2e8f0; border-radius: 16px;
  padding: 24px; box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.lp-stars { display: flex; gap: 2px; margin-bottom: 12px; }
.lp-testimonial q { display: block; font-size: 14px; color: #475569; line-height: 1.6; margin-bottom: 16px; font-style: normal; }
.lp-testimonial-author { display: flex; align-items: center; gap: 10px; }
.lp-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gradient); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
}
.lp-testimonial-author .name { font-weight: 600; font-size: 14px; color: #0f172a; }
.lp-testimonial-author .loc { font-size: 12px; color: #94a3b8; }

/* CTA band */
.lp-cta {
  background: #0b0f1a;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(99,102,241,0.2) 0%, transparent 70%), #0b0f1a;
  padding: 80px 20px; text-align: center; color: #fff;
}
.lp-cta h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; margin-bottom: 14px; }
.lp-cta p { color: #94a3b8; max-width: 480px; margin: 0 auto 28px; font-size: 16px; line-height: 1.6; }
.lp-cta .lp-btn-white {
  padding: 14px 32px; border-radius: 999px; background: #fff; color: var(--purple);
  font-weight: 700; font-size: 15px; text-decoration: none; display: inline-block;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.lp-cta .lp-btn-white:hover { filter: brightness(0.98); color: var(--purple); text-decoration: none; }
.lp-cta-note { font-size: 13px; color: #64748b; margin-top: 16px; }

/* FAQ */
.lp-faq { max-width: 720px; margin: 0 auto; }
.lp-faq-item {
  background: #fff; border: 1px solid #e2e8f0; border-radius: 14px;
  padding: 22px 24px; margin-bottom: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}
.lp-faq-item h3 { font-size: 16px; font-weight: 700; color: #0f172a; margin-bottom: 8px; }
.lp-faq-item p { font-size: 14px; color: #64748b; line-height: 1.6; }

/* Landing footer */
.lp-footer {
  background: #fff; border-top: 1px solid #e2e8f0; padding: 56px 0 24px;
}
.lp-footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px;
}
@media (max-width: 768px) { .lp-footer-grid { grid-template-columns: 1fr 1fr; } }
.lp-footer-brand p { font-size: 14px; color: #64748b; margin-top: 12px; max-width: 260px; line-height: 1.55; }
.lp-footer-col h4 {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: #94a3b8; margin-bottom: 16px;
}
.lp-footer-col a {
  display: block; font-size: 14px; color: #475569; margin-bottom: 10px; text-decoration: none;
}
.lp-footer-col a:hover { color: var(--purple); text-decoration: underline; }
.lp-footer-bottom {
  border-top: 1px solid #e2e8f0; padding-top: 20px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: #94a3b8;
}

/* Stats connect to split hero */
.lp-hero-split + .lp-stats-wrap { margin-top: -24px; padding-top: 0; position: relative; z-index: 1; }
