* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --ink: #0f172a;
  --muted: #6b7280;
  --forest: #1f4c3b;
  --forest-dark: #173b2e;
  --cream: #f6f6f1;
  --surface: #ffffff;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--ink);
  background: #eef2ed;
  min-height: 100vh;
  padding-bottom: 140px;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  min-height: calc(100vh - 120px);
}

.lp-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  color: #2f6b4f;
  font-weight: 700;
}

.section-subhead {
  color: var(--muted);
  font-size: 1.05rem;
}

.lp-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: #f5f7f2;
  overflow: hidden;
}

.lp-hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(19, 54, 44, 0.75), rgba(19, 54, 44, 0.8)),
    url('/Public%20resources/images/hero-nomad.jpg') center/cover no-repeat;
  filter: saturate(0.85);
}

.lp-hero__content {
  position: relative;
  z-index: 1;
  max-width: 620px;
  display: grid;
  gap: 18px;
}

.lp-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.85rem;
  width: fit-content;
}

.lp-hero h1 {
  font-family: 'Playfair Display', 'Inter', serif;
  font-size: clamp(2.8rem, 5vw, 4.3rem);
  line-height: 1.05;
}

.lp-hero h1 em {
  font-style: italic;
  color: #e6f2e7;
}

.lp-hero__subhead {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
}

.lp-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.lp-btn.primary {
  background: #ffffff;
  color: var(--forest-dark);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.18);
}

.lp-btn.ghost {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}

.lp-mode-card .lp-btn.ghost {
  background: #0f172a;
  color: #ffffff;
  border-color: transparent;
}

.lp-btn.light {
  background: #ffffff;
  color: var(--forest-dark);
}

.lp-btn:hover {
  transform: translateY(-1px);
}

.lp-hero__stats {
  display: flex;
  gap: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.lp-hero__stats strong {
  font-size: 1.3rem;
}

.lp-hero__stats span {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.lp-section {
  padding: 90px 0;
}

.lp-section--light {
  background: #f6f6f1;
}

.lp-section--dark {
  background: var(--forest-dark);
  color: #f5f7f2;
  text-align: center;
}

.lp-section--dark .lp-section__head p {
  color: rgba(245, 247, 242, 0.75);
}

.lp-section--dark .lp-steps p {
  color: rgba(245, 247, 242, 0.75);
}

.lp-section--app {
  background: #e7efe9;
}

.lp-section__head {
  text-align: center;
  margin-bottom: 36px;
}

.lp-section__head h2 {
  font-family: 'Playfair Display', 'Inter', serif;
  font-size: clamp(2rem, 3vw, 2.7rem);
  margin-bottom: 10px;
}

.lp-section__head h2 span {
  font-style: italic;
  color: #2f6b4f;
}

.lp-section__head p {
  color: var(--muted);
}

.lp-card-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.lp-media-card {
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.12);
  display: grid;
  grid-template-rows: 220px auto;
}

.lp-media {
  background-size: cover;
  background-position: center;
}

.lp-media__body {
  padding: 18px;
  display: grid;
  gap: 8px;
}

.lp-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #2f6b4f;
}

.lp-feature-row {
  margin-top: 28px;
  background: #edf2ed;
  border-radius: 16px;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.lp-chips {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.lp-chips span {
  background: #edf2ed;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  color: #3a5547;
}

.lp-link {
  border: none;
  background: none;
  color: #2f6b4f;
  font-weight: 600;
  cursor: pointer;
}

.lp-works {
  display: grid;
  gap: 30px;
  align-items: center;
}

.lp-steps {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.lp-steps article {
  display: grid;
  gap: 12px;
}

.lp-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  color: #f5f7f2;
  margin: 0 auto;
}

.lp-icon svg {
  width: 24px;
  height: 24px;
}

.lp-works h3 {
  font-family: 'Playfair Display', 'Inter', serif;
}

.lp-mode-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.lp-mode-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 26px;
  display: grid;
  gap: 14px;
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.12);
}

.lp-mode-card ul {
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.lp-mode-card ul li::before {
  content: '●';
  color: #3a7d5a;
  margin-right: 8px;
}

.lp-mode-card--dark {
  background: var(--forest-dark);
  color: #f5f7f2;
}

.lp-mode-card--dark ul {
  color: rgba(255, 255, 255, 0.75);
}

.lp-mode__eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(15, 23, 42, 0.6);
}

.lp-mode-card--dark .lp-mode__eyebrow {
  color: rgba(255, 255, 255, 0.6);
}

.lp-mode__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #eef2ed;
  display: grid;
  place-items: center;
  color: #1f4c3b;
}

.lp-mode__icon svg {
  width: 20px;
  height: 20px;
}

.lp-mode-card--dark .lp-mode__icon {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.lp-app-card {
  background: #1f4c3b;
  color: #f5f7f2;
  border-radius: 28px;
  padding: 40px;
  display: grid;
  gap: 30px;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  position: relative;
  overflow: hidden;
}

.lp-app-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08), transparent 50%);
  pointer-events: none;
}

.lp-app-copy {
  position: relative;
  z-index: 1;
}

.lp-app__actions {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.lp-store {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: #ffffff;
  color: #1f4c3b;
  font-weight: 700;
}

.lp-app__note {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.lp-phone {
  position: relative;
  display: grid;
  place-items: center;
  z-index: 1;
}

.lp-phone__screen {
  width: 230px;
  height: 440px;
  border-radius: 32px;
  background: #f3f6f2;
  padding: 18px;
  display: grid;
  gap: 16px;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.2),
    inset 0 0 0 6px rgba(0, 0, 0, 0.08);
  position: relative;
}

.lp-phone__logo {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
}

.lp-phone__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lp-phone__pill {
  width: 60px;
  height: 8px;
  border-radius: 999px;
  background: #cdd6cf;
  margin: 0 auto;
}

.lp-phone__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.lp-phone__row span {
  height: 24px;
  border-radius: 10px;
  background: #e3ebe4;
}

.lp-phone__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.lp-phone__grid span {
  height: 60px;
  border-radius: 14px;
  background: #e3ebe4;
}

.lp-phone__button {
  margin-top: auto;
  background: var(--forest-dark);
  color: #ffffff;
  text-align: center;
  padding: 10px 0;
  border-radius: 12px;
  font-weight: 600;
}

.lp-orb {
  position: absolute;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
}

.lp-orb--top {
  top: 10px;
  right: 10px;
}

.lp-orb--bottom {
  bottom: 30px;
  right: 40px;
}

.lp-section--impact {
  background: #f2f6f2;
}

.impact-grid {
  display: grid;
  gap: 32px;
  align-items: center;
}

.impact-metrics {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.metric-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.metric-card strong {
  color: #2f6b4f;
  font-size: 1.1rem;
}

.impact-visual {
  display: grid;
  gap: 16px;
}

.impact-panel {
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.1);
}

.impact-panel ul {
  margin-top: 12px;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 8px;
}

.impact-image {
  min-height: 220px;
  border-radius: 22px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 20px 36px rgba(15, 23, 42, 0.12);
}

.lp-footer {
  background: var(--forest-dark);
  color: #dfe9e2;
  padding: 60px 0 30px;
}

.lp-footer__grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.lp-footer__grid h3,
.lp-footer__grid h4 {
  color: #ffffff;
  margin-bottom: 10px;
}

.lp-footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.lp-footer__brand img {
  width: 96px;
  height: 96px;
  border-radius: 8px;
  object-fit: contain;
  background: transparent;
}

.lp-footer__grid a,
.lp-footer__grid span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.7);
}

.lp-footer__tag {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.lp-footer__form {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.lp-footer__form input {
  flex: 1;
  min-width: 180px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.lp-footer__subscribe {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.lp-footer__bottom {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.lp-footer__socials {
  display: flex;
  gap: 12px;
}

.lp-footer__socials a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.lp-footer__socials svg {
  width: 16px;
  height: 16px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition-delay: calc(var(--reveal-delay, 0ms));
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal[data-delay="60"] { --reveal-delay: 60ms; }
.reveal[data-delay="120"] { --reveal-delay: 120ms; }
.reveal[data-delay="180"] { --reveal-delay: 180ms; }

.dock {
  position: fixed;
  bottom: 18px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  padding: 0 16px;
  pointer-events: none;
  z-index: 25;
}

.dock-track {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  background: var(--surface);
  border: 1px solid #e8edf3;
  border-radius: 22px;
  box-shadow:
    0 30px 50px rgba(15, 23, 42, 0.12),
    0 6px 14px rgba(15, 23, 42, 0.06);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  min-width: min(100%, 1120px);
  max-width: 100%;
}

.dock-track::-webkit-scrollbar {
  display: none;
}

.dock-item {
  flex: 0 0 auto;
  min-width: 84px;
  padding: 10px 12px;
  border-radius: 16px;
  color: #7a8393;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  font-weight: 700;
  font-size: 12.5px;
  transition: color 0.18s ease, background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.dock-item svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.8;
}

.dock-item:hover {
  color: var(--ink);
  background: #eef5fb;
  transform: translateY(-1px);
}

.dock-item.active {
  color: var(--ink);
  background: #dcecf8;
  box-shadow:
    inset 0 0 0 1px rgba(12, 170, 220, 0.18),
    0 8px 18px rgba(12, 170, 220, 0.12);
}

.dock-item[data-disabled="true"] {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

@media (max-width: 900px) {
  .lp-hero__stats {
    flex-direction: column;
  }

  .lp-feature-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .lp-hero {
    padding: 90px 0 120px;
  }

  .lp-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .dock-track {
    min-width: 100%;
  }
}

@media (min-width: 960px) {
  .impact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

