/* SafeLedger landing page — sample preview */
:root {
  --bg: #0a0c0f;
  --bg-2: #121418;
  --card: #1c1f25;
  --card-2: #22262e;
  --lime: #9ed648;
  --lime-2: #8bc93f;
  --lime-dim: rgba(158, 214, 72, 0.12);
  --text: #ffffff;
  --muted: #8a8d91;
  --line: rgba(255, 255, 255, 0.06);
  --glow: rgba(158, 214, 72, 0.3);
}

.landing * { box-sizing: border-box; margin: 0; padding: 0; }
.landing {
  font-family: Manrope, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
}
.landing a { color: inherit; text-decoration: none; }

.landing-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  background: rgba(10, 12, 15, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.landing-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.landing-brand img { width: 40px; height: 40px; border-radius: 11px; }
.landing-brand span { color: var(--lime); }
.landing-nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.landing-nav-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s;
}
.landing-nav-links a:hover { color: #fff; }
.landing-nav-actions { display: flex; gap: 10px; align-items: center; }
.landing-btn-ghost {
  padding: 11px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid var(--line);
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: 0.2s;
}
.landing-btn-ghost:hover { background: var(--card); }
.landing-btn-lime {
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  border: 0;
  background: var(--lime);
  color: #111;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(158, 214, 72, 0.22);
  transition: 0.2s;
}
.landing-btn-lime:hover { filter: brightness(1.06); transform: translateY(-1px); }

.landing-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 48px 80px;
  overflow: hidden;
}
.landing-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(158, 214, 72, 0.07), transparent 50%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(61, 220, 132, 0.06), transparent 45%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
.landing-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
}
.landing-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.landing-hero-copy h1 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.landing-hero-copy h1 em {
  font-style: normal;
  color: var(--lime);
}
.landing-hero-copy p.lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.65;
}
.landing-hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.landing-hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.landing-stat strong {
  display: block;
  font-size: 26px;
  font-weight: 800;
  color: var(--lime);
}
.landing-stat span { font-size: 13px; color: var(--muted); }

.landing-hero-visual {
  position: relative;
  min-height: 480px;
}
.landing-dashboard-mock {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(158, 214, 72, 0.06);
  transform: perspective(1200px) rotateY(-8deg) rotateX(4deg);
}
.landing-mock-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.landing-mock-balance {
  font-size: 32px;
  font-weight: 800;
  margin: 8px 0 4px;
}
.landing-mock-chart {
  height: 120px;
  background: linear-gradient(180deg, var(--lime-dim), transparent);
  border-radius: 12px;
  margin: 16px 0;
  position: relative;
  overflow: hidden;
}
.landing-mock-chart svg { position: absolute; bottom: 0; left: 0; width: 100%; height: 100%; }
.landing-mock-coins { display: flex; flex-direction: column; gap: 10px; }
.landing-mock-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: var(--bg-2);
  border-radius: 12px;
}
.landing-mock-row img { width: 28px; height: 28px; border-radius: 50%; }
.landing-mock-row .sym { font-weight: 700; font-size: 13px; flex: 1; }
.landing-mock-row .val { font-size: 13px; color: var(--muted); }
.landing-mock-row .pct { font-size: 12px; font-weight: 700; color: var(--lime); }

.landing-float-coin {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  animation: floatCoin 6s ease-in-out infinite;
}
.landing-float-coin img { width: 32px; height: 32px; border-radius: 50%; }
.landing-float-coin.c1 { top: 8%; right: -4%; animation-delay: 0s; }
.landing-float-coin.c2 { top: 42%; right: 8%; animation-delay: -1.5s; width: 44px; height: 44px; }
.landing-float-coin.c3 { bottom: 18%; right: -2%; animation-delay: -3s; }
.landing-float-coin.c4 { top: 22%; left: -6%; animation-delay: -2s; }
.landing-float-coin.c5 { bottom: 8%; left: 4%; animation-delay: -4s; width: 40px; height: 40px; }

@keyframes floatCoin {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(3deg); }
}

.landing-ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  overflow: hidden;
  padding: 14px 0;
}
.landing-ticker-track {
  display: flex;
  gap: 48px;
  animation: ticker 40s linear infinite;
  width: max-content;
}
.landing-ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 600;
}
.landing-ticker-item img { width: 24px; height: 24px; border-radius: 50%; }
.landing-ticker-item .up { color: var(--lime); }
.landing-ticker-item .down { color: #ff5c7a; }

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.landing-section {
  padding: 100px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.landing-section-wide { max-width: none; padding-left: 48px; padding-right: 48px; }
.landing-section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.landing-section-head .tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--lime-dim);
  color: var(--lime);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.landing-section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.landing-section-head p { color: var(--muted); font-size: 16px; }

.landing-crypto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 14px;
  max-width: 1200px;
  margin: 0 auto;
}
.landing-crypto-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px 16px;
  text-align: center;
  transition: 0.25s;
}
.landing-crypto-card:hover {
  border-color: rgba(158, 214, 72, 0.28);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}
.landing-crypto-card img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-bottom: 10px;
}
.landing-crypto-card .name { font-weight: 700; font-size: 14px; }
.landing-crypto-card .sym { font-size: 12px; color: var(--muted); }

.landing-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.landing-feature {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  transition: 0.25s;
}
.landing-feature:hover { border-color: rgba(158, 214, 72, 0.2); }
.landing-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--lime-dim);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.landing-feature-icon svg,
.landing-badge svg {
  width: 22px;
  height: 22px;
  stroke: var(--lime);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.landing-badge svg { width: 18px; height: 18px; }
.landing-feature h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.landing-feature p { color: var(--muted); font-size: 14px; line-height: 1.6; }

.landing-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.landing-step {
  position: relative;
  padding-top: 48px;
}
.landing-step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--lime);
  color: #111;
  font-weight: 800;
  font-size: 16px;
  display: grid;
  place-items: center;
}
.landing-step h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.landing-step p { color: var(--muted); font-size: 14px; }

.landing-security {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.landing-security-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.landing-badge {
  padding: 10px 16px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.landing-shield-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.landing-shield-stat {
  background: var(--bg-2);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  border: 1px solid var(--line);
}
.landing-shield-stat strong {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--lime);
  margin-bottom: 4px;
}

.landing-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.landing-testimonial {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
}
.landing-testimonial p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
}
.landing-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.landing-testimonial-author .av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(145deg, #3a4250, #1c222c);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 13px;
}
.landing-testimonial-author strong { display: block; font-size: 14px; }
.landing-testimonial-author span { font-size: 12px; color: var(--muted); }

.landing-faq { max-width: 720px; margin: 0 auto; }
.landing-faq-item {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.landing-faq-item h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.landing-faq-item p { color: var(--muted); font-size: 14px; line-height: 1.6; }

.landing-cta {
  margin: 0 48px 80px;
  padding: 64px;
  background: linear-gradient(135deg, rgba(158, 214, 72, 0.12), rgba(158, 214, 72, 0.03));
  border: 1px solid rgba(158, 214, 72, 0.18);
  border-radius: 28px;
  text-align: center;
}
.landing-cta h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 12px;
}
.landing-cta p { color: var(--muted); margin-bottom: 28px; max-width: 480px; margin-left: auto; margin-right: auto; }
.landing-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.landing-footer {
  border-top: 1px solid var(--line);
  padding: 48px;
  background: var(--bg-2);
}
.landing-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.landing-footer-brand p { color: var(--muted); font-size: 14px; margin-top: 12px; max-width: 280px; }
.landing-footer-col h5 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.landing-footer-col a {
  display: block;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 10px;
  transition: 0.2s;
}
.landing-footer-col a:hover { color: var(--lime); }
.landing-footer-bottom {
  max-width: 1200px;
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--muted);
}

@media (max-width: 960px) {
  .landing-nav { padding: 16px 20px; }
  .landing-nav-links { display: none; }
  .landing-hero { padding: 100px 20px 60px; }
  .landing-hero-inner { grid-template-columns: 1fr; text-align: center; }
  .landing-hero-copy p.lead { margin-left: auto; margin-right: auto; }
  .landing-hero-cta, .landing-hero-stats { justify-content: center; }
  .landing-hero-visual { min-height: 360px; margin-top: 20px; }
  .landing-dashboard-mock { transform: none; }
  .landing-section { padding: 72px 20px; }
  .landing-features, .landing-steps, .landing-testimonials { grid-template-columns: 1fr; }
  .landing-security { grid-template-columns: 1fr; padding: 32px 24px; }
  .landing-footer-inner { grid-template-columns: 1fr 1fr; }
  .landing-cta { margin: 0 20px 60px; padding: 40px 24px; }
}

/* Hide injected third-party support widget on landing */
.landing #slw_btn,
.landing #slw_box {
  display: none !important;
}
