﻿/* ══════════════════════════════════════════════════════════
   HomeSync Landing Page — landing.css
   Loads after styles.css and fully overrides all land-* rules
   ══════════════════════════════════════════════════════════ */

/* ── Base ── */
body.land-body {
  display: block;
  height: auto;
  overflow-y: auto;
  overflow-x: hidden;
  background: #fff;
  color: var(--text);
  font-family: 'Kumbh Sans', sans-serif;
}

/* ── Fixed Nav (transparent on hero, white when scrolled) ── */
.land-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: transparent;
  border-bottom: none;
  backdrop-filter: none;
  box-shadow: none;
  transition: background 0.35s, box-shadow 0.35s, backdrop-filter 0.35s;
}
.land-nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 36px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.land-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.land-nav-logo-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #6C5CE7, #a29bfe);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: #fff; flex-shrink: 0;
}
.land-nav-logo-text {
  font-family: 'Kumbh Sans', sans-serif;
  font-weight: 900; font-size: 20px;
  color: #fff;
  transition: color 0.3s;
}
.land-nav-actions { display: flex; align-items: center; gap: 10px; }
.land-nav-login {
  padding: 8px 20px; border-radius: 10px;
  font-size: 13.5px; font-weight: 700;
  color: rgba(255,255,255,0.78);
  text-decoration: none; transition: all 0.15s;
}
.land-nav-login:hover { color: #fff; background: rgba(255,255,255,0.1); }
.land-nav-signup {
  padding: 9px 22px; border-radius: 10px;
  font-size: 13.5px; font-weight: 700;
  background: rgba(255,255,255,0.15);
  color: #fff; text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.28);
  transition: all 0.2s; backdrop-filter: blur(8px);
}
.land-nav-signup:hover { background: rgba(255,255,255,0.25); border-color: rgba(255,255,255,0.5); }

/* Scrolled state — white bar */
.land-nav.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 #E8E8F5;
}
.land-nav.scrolled .land-nav-logo-text  { color: var(--text); }
.land-nav.scrolled .land-nav-login      { color: var(--text); }
.land-nav.scrolled .land-nav-login:hover { background: var(--bg); }
.land-nav.scrolled .land-nav-signup {
  background: linear-gradient(135deg, #6C5CE7, #a29bfe);
  border-color: transparent;
  box-shadow: 0 3px 10px rgba(108,92,231,0.3);
}

/* ══ HERO ══ */
.land-hero {
  background: #0D1128;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
}

/* Subtle dot-grid overlay */
.land-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none; z-index: 0;
}

/* Gradient orbs */
.land-orb {
  position: absolute; border-radius: 50%;
  filter: blur(100px); pointer-events: none; z-index: 0;
}
.land-orb-1 {
  width: 750px; height: 750px;
  background: radial-gradient(circle, rgba(108,92,231,0.42) 0%, transparent 62%);
  top: -300px; right: -200px;
  animation: orbDrift 16s ease-in-out infinite alternate;
}
.land-orb-2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(108,92,231,0.38) 0%, transparent 62%);
  bottom: -180px; left: -180px;
  animation: orbDrift 20s ease-in-out infinite alternate-reverse;
}
.land-orb-3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(0,184,148,0.28) 0%, transparent 62%);
  top: 40%; left: 30%;
  animation: orbDrift 13s ease-in-out infinite alternate;
}
@keyframes orbDrift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(40px, 28px) scale(1.1); }
}

/* Hero content row */
.land-hero-content {
  position: relative; z-index: 1;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 90px 36px 60px;
  display: flex;
  align-items: center;
  gap: 64px;
  box-sizing: border-box;
}

/* ── Hero Left Text ── */
.land-hero-text { flex: 1; max-width: 490px; }

.land-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.09);
  color: rgba(255,255,255,0.82);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 6px 16px; border-radius: 20px;
  font-size: 12.5px; font-weight: 700;
  margin-bottom: 28px; backdrop-filter: blur(8px);
}
.land-hero-badge i { font-size: 13px; }

.land-hero-headline {
  font-family: 'Kumbh Sans', sans-serif;
  font-size: 58px; font-weight: 900;
  line-height: 1.06; color: #fff;
  margin-bottom: 20px; letter-spacing: -2px;
}

.land-hero-accent {
  background: linear-gradient(135deg, #60c7ff 0%, #b4aaff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.land-hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.58);
  line-height: 1.7; margin-bottom: 36px; font-weight: 500;
}

.land-hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }

/* CTA Buttons */
.land-btn-primary {
  padding: 14px 28px; border-radius: 14px;
  background: linear-gradient(135deg, #6C5CE7, #a29bfe);
  color: #fff; font-size: 15px; font-weight: 700;
  font-family: 'Kumbh Sans', sans-serif;
  text-decoration: none; transition: all 0.22s;
  box-shadow: 0 4px 22px rgba(108,92,231,0.5);
  display: inline-flex; align-items: center; gap: 8px;
}
.land-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(108,92,231,0.6);
  filter: brightness(1.1);
}
.land-btn-secondary {
  padding: 14px 28px; border-radius: 14px;
  background: rgba(255,255,255,0.09);
  color: rgba(255,255,255,0.88); font-size: 15px; font-weight: 700;
  font-family: 'Kumbh Sans', sans-serif;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.2);
  transition: all 0.2s; backdrop-filter: blur(8px);
  display: inline-flex; align-items: center; gap: 8px;
}
.land-btn-secondary:hover { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.38); }
.land-btn-large { padding: 16px 40px; font-size: 16px; }

/* Proof strip */
.land-hero-proof { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.land-proof-item { display: flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 600; color: rgba(255,255,255,0.42); }
.land-proof-item i { font-size: 13px; }
.land-proof-sep { color: rgba(255,255,255,0.16); font-size: 18px; line-height: 1; }

/* ── Hero Right: Browser Mockup ── */
.land-hero-visual {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  position: relative;
  align-items: center;
}

/* Floating notification widget (bottom-left of browser) */
.land-notif {
  position: absolute;
  bottom: -16px; left: -24px;
  background: #fff; border-radius: 16px;
  padding: 12px 16px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.1);
  z-index: 4;
  animation: floatY 5s ease-in-out infinite;
}
.land-notif-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: #FFECEC;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: #FF5E5E; flex-shrink: 0;
}
.land-notif-title { font-size: 12px; font-weight: 800; color: var(--text); }
.land-notif-sub   { font-size: 10.5px; color: #7c7c9a; margin-top: 1px; }

/* Floating stats widget (top-right of browser) */
.land-widget {
  position: absolute;
  top: -16px; right: -24px;
  background: linear-gradient(135deg, #27245C, #6C5CE7);
  border-radius: 16px; padding: 14px 18px;
  z-index: 4;
  box-shadow: 0 12px 36px rgba(108,92,231,0.45);
  animation: floatY 6s ease-in-out 1.5s infinite;
}
.land-widget-label { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.7); margin-bottom: 4px; }
.land-widget-val {
  font-family: 'Kumbh Sans', sans-serif;
  font-size: 28px; font-weight: 900; color: #fff; line-height: 1;
}
.land-widget-sub { font-size: 10.5px; color: rgba(255,255,255,0.6); margin-top: 4px; }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* Browser frame */
.land-browser {
  width: 540px; flex-shrink: 0;
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 40px 120px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.07);
}

.land-browser-chrome {
  background: #1e293b;
  padding: 12px 16px;
  display: flex; align-items: center; gap: 12px;
}
.land-browser-dots { display: flex; gap: 6px; }
.land-browser-dot  { width: 11px; height: 11px; border-radius: 50%; }
.land-browser-dot.red    { background: #FF5F57; }
.land-browser-dot.yellow { background: #FFBD2E; }
.land-browser-dot.green  { background: #28CA41; }
.land-browser-url {
  flex: 1; background: rgba(255,255,255,0.07);
  border-radius: 6px; padding: 5px 12px;
  font-size: 11.5px; color: rgba(255,255,255,0.35);
  font-family: 'Kumbh Sans', monospace;
}

.land-browser-body { display: flex; height: 330px; }

/* Mini sidebar inside browser */
.land-bsb {
  width: 54px; background: #27245C; flex-shrink: 0;
  display: flex; flex-direction: column; align-items: center;
  padding: 14px 0; gap: 4px;
}
.land-bsb-logo {
  width: 32px; height: 32px; border-radius: 9px;
  background: rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; color: #fff; margin-bottom: 10px;
}
.land-bsb-item {
  width: 38px; height: 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: rgba(255,255,255,0.42);
}
.land-bsb-item.active { background: rgba(255,255,255,0.18); color: #fff; }

/* Mini main area inside browser */
.land-bmain { flex: 1; display: flex; flex-direction: column; overflow: hidden; }

.land-btopbar {
  background: #fff; border-bottom: 1px solid #E8E8F5;
  padding: 0 14px; height: 44px;
  display: flex; align-items: center; justify-content: space-between; flex-shrink: 0;
}
.land-btopbar-title { font-family: 'Kumbh Sans', sans-serif; font-size: 14px; font-weight: 900; color: #1a1a2e; }
.land-btopbar-right { display: flex; align-items: center; gap: 8px; }
.land-btopbar-conflict {
  display: flex; align-items: center; gap: 5px;
  background: #FFECEC; color: #FF5E5E;
  font-size: 10px; font-weight: 700;
  padding: 3px 8px; border-radius: 20px;
  border: 1px solid #ffd0d0;
}
.land-btopbar-cdot {
  width: 5px; height: 5px; border-radius: 50%; background: #FF5E5E;
  animation: pulse 1.5s infinite;
}
.land-btopbar-av {
  width: 26px; height: 26px; border-radius: 50%;
  background: linear-gradient(135deg, #6C5CE7, #a29bfe);
}

/* Mini calendar week view */
.land-bcal { flex: 1; padding: 8px 10px; overflow: hidden; background: #F4F6FF; }

.land-bcal-head {
  display: grid; grid-template-columns: 34px repeat(5,1fr);
  margin-bottom: 4px;
}
.land-bcal-hcell {
  text-align: center; font-size: 9px; font-weight: 700;
  color: #7c7c9a; text-transform: uppercase; letter-spacing: 0.04em;
}
.land-bcal-date {
  font-family: 'Kumbh Sans', sans-serif; font-size: 13px; font-weight: 900;
  color: #1a1a2e; display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%; margin-top: 2px;
}
.land-bcal-date.today { background: #6C5CE7; color: #fff; }

.land-bcal-grid { display: grid; grid-template-columns: 34px repeat(5,1fr); }
.land-bcal-time {
  font-size: 8.5px; color: #7c7c9a; font-weight: 600;
  text-align: right; padding-right: 6px; padding-top: 4px; height: 46px;
}
.land-bcal-cell {
  border-left: 1px solid #E8E8F5; border-bottom: 1px solid #E8E8F5;
  height: 46px; position: relative; padding: 2px;
}
.land-bcal-ev {
  position: absolute; left: 2px; right: 2px; top: 2px;
  border-radius: 4px; padding: 2px 5px;
  font-size: 8.5px; font-weight: 700;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  border-left-width: 2px; border-left-style: solid;
}

/* ── Wave Divider (hero → features) ── */
.land-hero-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 1; line-height: 0;
}
.land-hero-wave svg { display: block; width: 100%; height: 72px; }

/* ══ SHARED SECTION LAYOUT ══ */
.land-section-inner { max-width: 1140px; margin: 0 auto; padding: 0 36px; }
.land-section-label {
  font-size: 11.5px; font-weight: 700; color: #6C5CE7;
  text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 10px;
}
.land-section-title {
  font-family: 'Kumbh Sans', sans-serif; font-size: 40px; font-weight: 900;
  color: var(--text); margin-bottom: 12px; letter-spacing: -0.8px;
}
.land-section-sub {
  font-size: 16px; color: var(--text-muted); margin-bottom: 52px;
  max-width: 500px; line-height: 1.65; font-weight: 500;
}

/* ══ FEATURES ══ */
.land-features { background: var(--bg); padding: 100px 0 40px; }

/* Alternating feature rows */
.land-feature-row {
  display: flex; align-items: center; gap: 64px;
  max-width: 1140px; margin: 0 auto;
  padding: 56px 36px;
}
.land-feature-row-rev { flex-direction: row-reverse; }

.land-feature-text { flex: 1; max-width: 420px; }
.land-feature-tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11.5px; font-weight: 700; color: #6C5CE7;
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 14px;
}
.land-feature-tagline {
  font-family: 'Kumbh Sans', sans-serif; font-size: 30px; font-weight: 900;
  color: var(--text); line-height: 1.2; letter-spacing: -0.6px; margin-bottom: 14px;
}
.land-feature-desc {
  font-size: 15px; color: var(--text-muted); line-height: 1.75; font-weight: 500;
}

.land-feature-visual { flex: 1; display: flex; justify-content: center; }

/* Page preview frame (mini browser mockup) */
.land-fprev {
  width: 100%; max-width: 600px;
  border-radius: 16px; overflow: hidden;
  border: 1px solid #E8E8F5;
  box-shadow: 0 16px 50px rgba(108,92,231,0.14);
  transition: box-shadow 0.22s, transform 0.22s;
}
.land-fprev:hover { box-shadow: 0 22px 60px rgba(108,92,231,0.22); transform: translateY(-2px); }
.land-fprev-chrome {
  background: #1e293b;
  padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
}

/* App-shell replica inside the frame: mini sidebar + topbar + content */
.land-fprev-shell { display: flex; height: 380px; }

.land-fprev-sidebar {
  width: 56px; flex-shrink: 0; background: #27245C;
  display: flex; flex-direction: column; align-items: center;
  padding: 14px 0; gap: 6px;
}
.land-fprev-sb-logo {
  width: 32px; height: 32px; border-radius: 9px;
  background: rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; margin-bottom: 8px;
}
.land-fprev-sb-item {
  width: 38px; height: 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: rgba(255,255,255,0.42);
}
.land-fprev-sb-item.active { background: rgba(255,255,255,0.18); color: #fff; }
.land-fprev-sb-sep { width: 26px; height: 1px; background: rgba(255,255,255,0.16); margin: 6px 0; }

.land-fprev-main { flex: 1; display: flex; flex-direction: column; min-width: 0; }
.land-fprev-topbar {
  height: 42px; flex-shrink: 0; background: #fff;
  border-bottom: 1px solid #E8E8F5;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 16px;
}
.land-fprev-topbar-title { font-family: 'Kumbh Sans', sans-serif; font-size: 13.5px; font-weight: 900; color: var(--text); }
.land-fprev-topbar-av {
  width: 24px; height: 24px; border-radius: 50%;
  background: linear-gradient(135deg, #6C5CE7, #a29bfe);
}
.land-fprev-body { background: #F4F6FF; padding: 18px; flex: 1; display: flex; flex-direction: column; overflow: hidden; }

/* Calendar mockup — hour grid, closer to the real week view */
.land-bc-week {
  display: grid; grid-template-columns: 30px repeat(5,1fr);
  gap: 0; flex: 1;
}
.land-bc-head { grid-column: 1 / -1; display: grid; grid-template-columns: 30px repeat(5,1fr); margin-bottom: 6px; }
.land-bc-dn {
  font-size: 9.5px; font-weight: 700; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.05em; text-align: center;
}
.land-bc-time { font-size: 8.5px; color: var(--text-muted); font-weight: 600; text-align: right; padding-right: 5px; height: 38px; }
.land-bc-cell { border-left: 1px solid #E8E8F5; border-top: 1px solid #E8E8F5; height: 38px; position: relative; padding: 2px; }
.land-bc-ev {
  position: absolute; left: 2px; right: 2px; top: 2px;
  border-radius: 6px; padding: 4px 6px;
  font-size: 9px; font-weight: 700; color: var(--text);
  border-left: 3px solid; line-height: 1.25;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* Vault mockup — document rows with a header bar */
.land-bv-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.land-bv-heading { font-family: 'Kumbh Sans', sans-serif; font-size: 14px; font-weight: 900; color: var(--text); }
.land-bv-upload {
  font-size: 10.5px; font-weight: 700; color: #fff;
  background: #6C5CE7; padding: 6px 12px; border-radius: 8px;
}
.land-bv-list { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.land-bv-row {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; background: #fff; border-radius: 10px;
  font-size: 12px; font-weight: 600; color: var(--text);
  border: 1px solid #E8E8F5;
}
.land-bv-row i  { font-size: 16px; flex-shrink: 0; }
.land-bv-name   { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.land-bv-tag {
  display: inline-flex; align-items: center; gap: 3px;
  font-size: 9.5px; font-weight: 700;
  padding: 3px 8px; border-radius: 20px; white-space: nowrap; flex-shrink: 0;
}

/* Photos mockup — album grid */
.land-bp-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 8px; flex: 1;
}
.land-bp-photo { border-radius: 10px; }
.land-bp-more  {
  border-radius: 10px; background: #fff; border: 1px solid #E8E8F5;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; color: var(--text-muted); gap: 3px;
}

/* Finance mockup — summary + budget bars */
.land-bf-summary { display: flex; gap: 10px; margin-bottom: 14px; }
.land-bf-card { flex: 1; background: #fff; border: 1px solid #E8E8F5; border-radius: 10px; padding: 10px 12px; }
.land-bf-card-label { font-size: 9.5px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 4px; }
.land-bf-card-value { font-family: 'Kumbh Sans', sans-serif; font-size: 16px; font-weight: 900; color: var(--text); }
.land-bf-bars { display: flex; flex-direction: column; gap: 14px; flex: 1; background: #fff; border: 1px solid #E8E8F5; border-radius: 10px; padding: 14px; }
.land-bf-row  { display: flex; flex-direction: column; gap: 5px; }
.land-bf-hd   { display: flex; justify-content: space-between; font-size: 12px; font-weight: 700; color: var(--text); }
.land-bf-pct  { color: var(--text-muted); }
.land-bf-track { height: 8px; border-radius: 99px; background: #E8E8F5; overflow: hidden; }
.land-bf-fill  { height: 100%; border-radius: 99px; }

/* Family Config mockup — role cards */
.land-ba-roles { display: flex; gap: 12px; flex: 1; }
.land-ba-role {
  flex: 1; background: #fff; border-radius: 14px;
  padding: 18px 12px; text-align: center;
  border: 1.5px solid #E8E8F5; transition: border-color 0.2s;
}
.land-ba-role:hover { border-color: #6C5CE7; }
.land-ba-av {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin: 0 auto 12px;
}
.land-ba-av i { font-size: 22px; }
.land-ba-name { font-size: 13px; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.land-ba-desc { font-size: 11px; color: var(--text-muted); font-weight: 500; }

/* ══ HOW IT WORKS ══ */
.land-steps-section { padding: 100px 0; background: #fff; }

.land-steps-track {
  display: flex; align-items: flex-start; position: relative;
}
.land-steps-track::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg, var(--purple-light) 0, var(--purple-light) 6px,
    transparent 6px, transparent 16px
  );
  z-index: 0;
}
.land-step {
  flex: 1; text-align: center; padding: 0 28px; position: relative; z-index: 1; margin: 0px 10px;
}
.land-step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, #6C5CE7, #a29bfe);
  color: #fff; font-family: 'Kumbh Sans', sans-serif;
  font-size: 20px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 18px rgba(108,92,231,0.38);
}
.land-step-title { font-family: 'Kumbh Sans', sans-serif; font-size: 18px; font-weight: 900; color: var(--text); margin-bottom: 10px; }
.land-step-desc  { font-size: 13.5px; color: var(--text-muted); line-height: 1.65; font-weight: 500; }

/* ══ CTA BANNER ══ */
.land-cta-banner {
  background: #0D1128; padding: 110px 0;
  position: relative; overflow: hidden;
}
.land-cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}
.land-cta-orb-1 {
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(108,92,231,0.32) 0%, transparent 62%);
  top: -220px; right: -80px;
}
.land-cta-orb-2 {
  width: 440px; height: 440px;
  background: radial-gradient(circle, rgba(108,92,231,0.28) 0%, transparent 62%);
  bottom: -180px; left: 8%;
}
.land-cta-inner { text-align: center; position: relative; z-index: 1; }
.land-cta-title {
  font-family: 'Kumbh Sans', sans-serif; font-size: 46px; font-weight: 900;
  color: #fff; margin-bottom: 14px; letter-spacing: -1px;
}
.land-cta-sub {
  font-size: 16px; color: rgba(255,255,255,0.52); margin-bottom: 36px; font-weight: 500;
}
.land-cta-banner .land-btn-primary {
  font-size: 16px; padding: 16px 44px;
  box-shadow: 0 6px 28px rgba(108,92,231,0.55);
}
.land-cta-banner .land-btn-primary:hover {
  box-shadow: 0 10px 38px rgba(108,92,231,0.7);
}

/* ══ FOOTER ══ */
.land-footer { background: #0D1128; border-top: 1px solid rgba(255,255,255,0.06); padding: 30px 0; }
.land-footer-inner { display: flex; align-items: center; justify-content: space-between; }
.land-footer-logo  { display: flex; align-items: center; gap: 9px; }
.land-footer-logo i { font-size: 18px; color: #a29bfe; }
.land-footer-logo-text { font-family: 'Kumbh Sans', sans-serif; font-size: 16px; font-weight: 900; color: #fff; }
.land-footer-copy  { font-size: 12.5px; color: rgba(196,194,232,0.42); }
