:root {
  --font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --bg: #ffffff;
  --bg-alt: #f8f9fb;
  --bg-card: #ffffff;
  --accent: #6366f1;
  --accent-h: #4f46e5;
  --accent-glow: rgba(99, 102, 241, 0.10);
  --accent-soft: rgba(99, 102, 241, 0.06);
  --hd: #111827;
  --t1: #374151;
  --t2: #6b7280;
  --t3: #9ca3af;
  --border: rgba(0, 0, 0, 0.08);
  --border-h: rgba(0, 0, 0, 0.14);
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-h: 0 4px 12px rgba(0, 0, 0, 0.06);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --mw: 1100px;
  --r: 10px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--t1);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* Container */
.land-w { width: 100%; max-width: var(--mw); margin: 0 auto; padding: 0 1.25rem; }

/* Sections */
.land-s { padding: 3rem 0; }
.land-s--alt { background: var(--bg-alt); }
.land-s--border { border-top: 1px solid var(--border); }
.land-sh { margin-bottom: 2rem; }

/* Typography */
.land-h2 {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--hd);
  margin-bottom: 0.375rem;
}

.land-p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--t2);
  max-width: 460px;
}

.land-center { text-align: center; }
.land-mx { margin-left: auto; margin-right: auto; }

/* Scroll reveal */
.land-r {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.land-r.is-v { opacity: 1; transform: none; }
.land-d1 { transition-delay: 0.05s; }
.land-d2 { transition-delay: 0.10s; }
.land-d3 { transition-delay: 0.15s; }
.land-d4 { transition-delay: 0.20s; }
.land-d5 { transition-delay: 0.25s; }
.land-d6 { transition-delay: 0.30s; }
.land-d7 { transition-delay: 0.35s; }
.land-d8 { transition-delay: 0.40s; }

/* Buttons */
.land-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 42px;
  padding: 0 20px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.15s ease;
}

.land-btn--p { color: #fff; background: var(--accent); }
.land-btn--p:hover { background: var(--accent-h); box-shadow: 0 4px 14px rgba(99, 102, 241, 0.25); }

.land-btn--o { color: var(--t2); background: transparent; border: 1px solid var(--border); }
.land-btn--o:hover { color: var(--hd); border-color: var(--border-h); }

.land-btn--full { width: 100%; }

/* Nav */
.land-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 54px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid var(--border);
}

.land-nav__inner { display: flex; align-items: center; justify-content: space-between; height: 54px; }

.land-nav__brand {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 15px; font-weight: 700; letter-spacing: -0.02em; color: var(--hd);
}

.land-nav__links { display: none; list-style: none; gap: 1.75rem; align-items: center; }
.land-nav__links a { font-size: 13px; font-weight: 500; color: var(--t2); transition: color 0.15s; }
.land-nav__links a:hover { color: var(--hd); }

.land-nav__right { display: flex; align-items: center; gap: 0.5rem; }

.land-nav__cta {
  display: none; align-items: center; height: 32px; padding: 0 14px;
  font-family: var(--font); font-size: 13px; font-weight: 600;
  color: #fff; background: var(--accent); border: none; border-radius: 6px;
  cursor: pointer; transition: background 0.15s;
}
.land-nav__cta:hover { background: var(--accent-h); }

.land-nav__toggle {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; background: none; border: none;
  color: var(--hd); cursor: pointer; border-radius: 8px;
}
.land-nav__toggle:hover { background: rgba(0, 0, 0, 0.04); }

.land-nav__links-cta { display: list-item; }
.land-nav__links-cta a { color: var(--accent) !important; font-weight: 600 !important; }

.land-nav__links.open {
  display: flex; flex-direction: column; position: absolute;
  top: 54px; left: 0; right: 0;
  background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.5rem 1.25rem 1rem; border-bottom: 1px solid var(--border); gap: 0;
}
.land-nav__links.open li { border-bottom: 1px solid var(--border); }
.land-nav__links.open li:last-child { border-bottom: none; padding-top: 4px; }
.land-nav__links.open a { display: block; padding: 10px 0; font-size: 15px; color: var(--t1); }

/* Hero */
.land-hero { position: relative; padding: 6rem 0 2.5rem; overflow: hidden; }

.land-hero::before {
  content: ""; position: absolute; top: -200px; left: 40%;
  width: 800px; height: 600px;
  background: radial-gradient(ellipse, rgba(99, 102, 241, 0.04) 0%, transparent 65%);
  pointer-events: none;
}

.land-hero__inner { position: relative; display: flex; align-items: center; gap: 3rem; }
.land-hero__content { flex: 1; min-width: 0; }

.land-hero__badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; font-size: 11px; font-weight: 500;
  color: var(--accent); border: 1px solid rgba(99, 102, 241, 0.15);
  border-radius: 100px; margin-bottom: 1.5rem;
  opacity: 0; animation: land-up 0.5s var(--ease) 0.1s forwards;
}

.land-hero__badge-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent); animation: land-pulse 2s ease-in-out infinite;
}

@keyframes land-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
@keyframes land-up { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

.land-hero__title {
  font-size: 2rem; font-weight: 800; line-height: 1.1;
  letter-spacing: -0.04em; color: var(--hd); margin-bottom: 1rem;
  opacity: 0; animation: land-up 0.5s var(--ease) 0.15s forwards;
}

.land-hero__title em { font-style: normal; color: var(--accent); }

.land-hero__sub {
  font-size: 14px; line-height: 1.65; color: var(--t2);
  max-width: 440px; margin-bottom: 1.5rem;
  opacity: 0; animation: land-up 0.5s var(--ease) 0.25s forwards;
}

.land-hero__actions {
  display: flex; flex-wrap: wrap; gap: 10px;
  opacity: 0; animation: land-up 0.5s var(--ease) 0.35s forwards;
}

/* Terminal mockup */
.land-term-wrap { display: none; flex: 0 0 360px; }

.land-term {
  position: relative; background: #1e1e2e;
  border: 1px solid rgba(255,255,255,0.08); border-radius: 12px;
  overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  opacity: 0; animation: land-up 0.6s var(--ease) 0.4s forwards;
}

.land-term__head {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px; background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.35);
}

.land-term__dots { display: flex; gap: 5px; }
.land-term__dots span {
  width: 8px; height: 8px; border-radius: 50%;
}
.land-term__dots span:nth-child(1) { background: #ff5f57; }
.land-term__dots span:nth-child(2) { background: #febc2e; }
.land-term__dots span:nth-child(3) { background: #28c840; }

.land-term__body {
  padding: 14px 16px; font-family: "SF Mono", "Fira Code", "Cascadia Code", monospace;
  font-size: 11.5px; line-height: 1.7;
}

.land-term__line { color: #cdd6f4; }
.land-term__prompt { color: #a6e3a1; margin-right: 6px; font-weight: 600; }
.land-term__out { color: #6c7086; padding-left: 16px; }
.land-term__ok { color: #a6e3a1; }
.land-term__cursor {
  display: inline-block; animation: land-blink 1s step-end infinite; color: #cdd6f4;
}

@keyframes land-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

/* Stats */
.land-stats { padding: 2rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.land-stats__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; text-align: center; }

.land-stats__item { display: flex; flex-direction: column; align-items: center; }

.land-stats__val {
  font-size: 1.625rem; font-weight: 800; color: var(--hd);
  letter-spacing: -0.03em; line-height: 1;
}

.land-stats__label {
  font-size: 11px; font-weight: 500; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--t3); margin-top: 4px;
}

/* Service/Feature cards grid */
.land-fgrid { display: grid; grid-template-columns: 1fr; gap: 12px; }

.land-fcard {
  position: relative; padding: 1.5rem; border-radius: var(--r);
  background: var(--bg-card); border: 1px solid var(--border);
  box-shadow: var(--shadow); transition: border-color 0.15s, box-shadow 0.15s;
}
.land-fcard:hover { border-color: var(--border-h); box-shadow: var(--shadow-h); }

.land-fcard__icon {
  width: 32px; height: 32px; border-radius: 7px;
  display: grid; place-items: center; margin-bottom: 12px;
  background: var(--bg-alt); color: var(--t2);
}

.land-fcard--hl .land-fcard__icon { background: var(--accent-soft); color: var(--accent); }

.land-fcard__title {
  font-size: 15px; font-weight: 700; letter-spacing: -0.01em;
  color: var(--hd); margin-bottom: 4px;
}

.land-fcard__desc { font-size: 13px; line-height: 1.6; color: var(--t2); }

/* Value cards (jurisdiction-style) */
.land-jgrid { display: grid; grid-template-columns: 1fr; gap: 12px; }

.land-jcard {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 1.5rem; box-shadow: var(--shadow);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.land-jcard:hover { border-color: var(--border-h); box-shadow: var(--shadow-h); }

.land-jcard__icon {
  width: 32px; height: 32px; border-radius: 7px;
  display: grid; place-items: center; margin-bottom: 12px;
}
.land-jcard--blue .land-jcard__icon { background: rgba(99, 102, 241, 0.08); color: #6366f1; }
.land-jcard--red .land-jcard__icon { background: rgba(220, 38, 38, 0.08); color: #dc2626; }
.land-jcard--purple .land-jcard__icon { background: rgba(124, 58, 237, 0.08); color: #7c3aed; }
.land-jcard--cyan .land-jcard__icon { background: rgba(2, 132, 199, 0.08); color: #0284c7; }

.land-jcard__title {
  font-size: 15px; font-weight: 700; letter-spacing: -0.01em;
  color: var(--hd); margin-bottom: 4px;
}

.land-jcard__desc { font-size: 13px; line-height: 1.6; color: var(--t2); }

/* Pipeline / Process steps */
.land-pipe { display: grid; grid-template-columns: 1fr; gap: 1.75rem; }

.land-step {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; position: relative;
}

.land-step:not(:last-child)::after {
  content: ""; position: absolute; bottom: -1rem; left: 50%;
  transform: translateX(-50%); width: 1px; height: 10px;
  background: rgba(99, 102, 241, 0.2);
}

.land-step__num {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 14px; font-weight: 700; color: #fff;
  background: var(--accent); margin-bottom: 12px; flex-shrink: 0;
}

.land-step__title {
  font-size: 15px; font-weight: 700; letter-spacing: -0.01em;
  color: var(--hd); margin-bottom: 4px;
}

.land-step__desc { font-size: 13px; line-height: 1.6; color: var(--t2); max-width: 200px; }

/* Testimonial cards */
.land-tgrid { display: grid; grid-template-columns: 1fr; gap: 12px; }

.land-tcard {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 1.5rem; box-shadow: var(--shadow);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.land-tcard:hover { border-color: var(--border-h); box-shadow: var(--shadow-h); }

.land-tcard__quote { font-size: 13px; line-height: 1.7; color: var(--t2); margin-bottom: 16px; font-style: italic; }

.land-tcard__name { font-size: 14px; font-weight: 700; color: var(--hd); }
.land-tcard__title { font-size: 12px; color: var(--t3); }

/* Tech list with checkmarks */
.land-tech-list { list-style: none; }

.land-tech-list li {
  position: relative; padding-left: 20px;
  font-size: 13px; line-height: 1.6; color: var(--t2); margin-bottom: 5px;
}
.land-tech-list li:last-child { margin-bottom: 0; }

.land-tech-list li::before {
  content: ""; position: absolute; left: 0; top: 5px;
  width: 10px; height: 10px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%236366f1'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E") no-repeat center / contain;
}

/* Footer */
.land-ft { padding: 3rem 0 1.5rem; background: var(--bg-alt); border-top: 1px solid var(--border); }

.land-ft__inner { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }

.land-ft__brand-col { display: flex; flex-direction: column; gap: 0.5rem; }

.land-ft__brand {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 15px; font-weight: 700; letter-spacing: -0.02em; color: var(--hd);
}

.land-ft__tagline { font-size: 13px; color: var(--t2); line-height: 1.6; max-width: 280px; }

.land-ft__col-title {
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--t3); margin-bottom: 10px;
}

.land-ft__links { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.land-ft__links li { font-size: 13px; color: var(--t2); }
.land-ft__links a { color: var(--t2); transition: color 0.15s; }
.land-ft__links a:hover { color: var(--hd); }

.land-ft__bottom {
  margin-top: 2rem; padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 4px; align-items: center;
}

.land-ft__made, .land-ft__copy { font-size: 12px; color: var(--t3); }
.land-ft__copy { opacity: 0.6; }

/* Contact CTA */
.land-cta { padding: 4rem 0; text-align: center; }

.land-cta__title {
  font-size: 2rem; font-weight: 800; letter-spacing: -0.03em;
  line-height: 1.15; color: var(--hd); margin-bottom: 0.75rem;
}

.land-cta__desc { font-size: 15px; line-height: 1.7; color: var(--t2); max-width: 460px; margin: 0 auto 1.5rem; }

.land-cta__actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 2rem; }

.land-cta__info { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center; font-size: 14px; color: var(--t2); }

.land-cta__info a { color: var(--accent); transition: color 0.15s; }
.land-cta__info a:hover { color: var(--accent-h); }

/* ======================== Responsive ======================== */

@media (max-width: 479px) {
  .land-w { padding: 0 1rem; }
  .land-hero__badge { margin-bottom: 1rem; }
  .land-hero__actions { flex-direction: column; }
  .land-hero__actions .land-btn { width: 100%; }
  .land-jcard { padding: 1.25rem; }
  .land-fcard { padding: 1.25rem; }
  .land-tcard { padding: 1.25rem; }
  .land-stats { padding: 1.5rem 0; }
  .land-stats__val { font-size: 1.375rem; }
  .land-stats__label { font-size: 10px; }
  .land-pipe { gap: 1.25rem; }
  .land-step__desc { max-width: 260px; }
  .land-nav__links.open { padding: 0.5rem 1rem 1rem; }
  .land-cta__actions { flex-direction: column; align-items: center; }
  .land-cta__actions .land-btn { width: 100%; max-width: 300px; }
}

@media (min-width: 480px) {
  .land-hero__title { font-size: 2.25rem; }
  .land-h2 { font-size: 1.5rem; }
  .land-stats__grid { grid-template-columns: repeat(4, 1fr); gap: 0; }
  .land-stats__item { position: relative; }
  .land-stats__item:not(:last-child)::after {
    content: ""; position: absolute; right: 0; top: 15%;
    height: 70%; width: 1px; background: var(--border);
  }
  .land-jgrid { grid-template-columns: repeat(2, 1fr); }
  .land-tgrid { grid-template-columns: repeat(2, 1fr); }
  .land-ft__inner { grid-template-columns: 1.5fr 1fr 1fr; }
  .land-ft__bottom { flex-direction: row; justify-content: space-between; }
}

@media (min-width: 768px) {
  .land-nav__links { display: flex; }
  .land-nav__links-cta { display: none; }
  .land-nav__cta { display: inline-flex; }
  .land-nav__toggle { display: none; }
  .land-hero { padding: 9rem 0 4rem; }
  .land-hero__title { font-size: 3rem; }
  .land-hero__sub { font-size: 16px; }
  .land-h2 { font-size: 1.75rem; }
  .land-s { padding: 4.5rem 0; }
  .land-sh { margin-bottom: 3rem; }
  .land-fgrid { grid-template-columns: repeat(2, 1fr); }
  .land-tgrid { grid-template-columns: repeat(2, 1fr); }
  .land-pipe { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .land-step:not(:last-child)::after { display: none; }
  .land-cta__title { font-size: 2.25rem; }
}

@media (min-width: 1024px) {
  .land-w { padding: 0 2rem; }
  .land-hero { padding: 10rem 0 6rem; }
  .land-hero__title { font-size: 3.75rem; }
  .land-term-wrap { display: block; }
  .land-h2 { font-size: 2rem; }
  .land-s { padding: 5.5rem 0; }
  .land-sh { margin-bottom: 3.5rem; }
  .land-fgrid { grid-template-columns: repeat(3, 1fr); }
  .land-tgrid { grid-template-columns: repeat(4, 1fr); }
  .land-pipe { grid-template-columns: repeat(5, 1fr); gap: 0; }
  .land-step:not(:last-child)::after {
    display: block; top: 20px; bottom: auto;
    left: calc(50% + 24px); width: calc(100% - 48px);
    height: 1px; transform: none; background: rgba(99, 102, 241, 0.15);
  }
  .land-cta__title { font-size: 2rem; }
}

@media (min-width: 1280px) {
  .land-hero__title { font-size: 4.25rem; }
  .land-hero__inner { gap: 5rem; }
  .land-term-wrap { flex: 0 0 400px; }
  .land-stats__val { font-size: 2rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .land-hero__badge, .land-hero__title, .land-hero__sub,
  .land-hero__actions, .land-term { animation: none; opacity: 1; transform: none; }
  .land-hero__badge-dot { animation: none; }
  .land-r { opacity: 1; transform: none; transition: none; }
  .land-jcard, .land-fcard, .land-tcard, .land-btn { transition: none; }
}
