/* =========================================================
   GageLog — Landing page
   ========================================================= */

.lp-body {
  background: var(--bg);
  overflow-x: hidden;
}

/* ── Nav ─────────────────────────────────────────────────── */

.lp-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 56px;
  background: var(--brand);
  box-shadow: 0 1px 4px rgba(0,0,0,.2);
}

.lp-nav__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  text-decoration: none;
  letter-spacing: -.2px;
  line-height: 1;
}
.lp-nav__brand img {
  height: 36px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.35));
}

.lp-nav__actions {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.lp-nav .btn--outline {
  color: rgba(255,255,255,.85);
  border-color: rgba(255,255,255,.35);
  background: transparent;
}
.lp-nav .btn--outline:hover {
  color: #fff;
  border-color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.08);
  text-decoration: none;
}

/* ── Hero ────────────────────────────────────────────────── */

.lp-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 2rem;
  background: linear-gradient(160deg, var(--brand-dark) 0%, #2F88BC 40%, #3FA9D6 100%);
  text-align: center;
}

.lp-hero__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.lp-hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--teal);
  margin-bottom: 1rem;
}

.lp-hero__title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -.02em;
}

.lp-hero__title-accent {
  color: var(--teal);
}

.lp-hero__lead {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.75);
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.lp-hero__cta {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.lp-btn--hero {
  padding: 0.7rem 1.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 6px;
}

.lp-hero .btn--outline {
  color: rgba(255,255,255,.85);
  border-color: rgba(255,255,255,.35);
  background: transparent;
}
.lp-hero .btn--outline:hover {
  color: #fff;
  border-color: rgba(255,255,255,.65);
  background: rgba(255,255,255,.08);
  text-decoration: none;
}


/* ── Section tag ─────────────────────────────────────────── */

.lp-section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--teal-dark);
  background: var(--teal-wash);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 0.85rem;
}
.lp-section-tag--center {
  display: block;
  text-align: center;
}

/* ── Story ───────────────────────────────────────────────── */

.lp-story {
  background: var(--bg);
  padding: 4.5rem 2rem;
  border-bottom: 1.5px solid var(--border);
}

.lp-story__inner {
  max-width: 960px;
  margin: 0 auto;
}

.lp-story__inner--split {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: center;
}

.lp-story__inner--split .lp-content-block {
  max-width: none;
}

.lp-story__media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-geo-svg {
  width: 100%;
  max-width: 480px;
  height: auto;
}

.lp-junction-pulse {
  transform-box: fill-box;
  transform-origin: center;
  animation: lp-junction-pulse 2.4s ease-out infinite;
}

@keyframes lp-junction-pulse {
  0%   { transform: scale(1);   opacity: 0.3; }
  70%  { transform: scale(3);   opacity: 0; }
  100% { transform: scale(3);   opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .lp-junction-pulse { animation: none; }
}

.lp-story__heading {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--brand-dark);
  margin-bottom: 1.25rem;
}

/* ── Mission ─────────────────────────────────────────────── */

.lp-mission {
  background: var(--surface);
  padding: 4.5rem 2rem;
  border-bottom: 1.5px solid var(--border);
}

.lp-mission__layout {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.lp-mission__pond {
  position: relative;
  height: 340px;
}

#fish-pond {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.lp-mission__heading {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--brand-dark);
  margin-bottom: 1.25rem;
}

/* ── Alternating content blocks ──────────────────────────── */

.lp-content-block {
  max-width: 560px;
}

.lp-content-block--right {
  margin-left: auto;
}

.lp-content-block p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 1.25rem;
}

/* ── Features ────────────────────────────────────────────── */

.lp-features {
  background: var(--bg);
  padding: 4.5rem 2rem;
  border-bottom: 1.5px solid var(--border);
}

.lp-features__inner {
  max-width: 960px;
  margin: 0 auto;
}

.lp-features__heading {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--brand-dark);
  text-align: center;
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.lp-feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.lp-feat-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-top: 3px solid var(--teal);
  border-radius: 10px;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: box-shadow .2s;
}
.lp-feat-card:hover {
  box-shadow: 0 4px 20px rgba(94,195,232,.15);
}

.lp-feat-card h3 {
  font-size: 1rem;
  color: var(--brand-dark);
  margin: 0;
}

.lp-feat-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* ── CTA ─────────────────────────────────────────────────── */

.lp-cta {
  background: linear-gradient(135deg, var(--brand-dark) 0%, #2F88BC 60%, #3FA9D6 100%);
  padding: 5rem 2rem;
  text-align: center;
}

.lp-cta__content {
  max-width: 540px;
  margin: 0 auto;
}

.lp-cta__heading {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.lp-cta__sub {
  color: rgba(255,255,255,.7);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* ── Footer ──────────────────────────────────────────────── */

.lp-footer {
  background: var(--brand-dark);
  padding: 1.75rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.08);
}

.lp-footer__brand {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  font-size: 0.9375rem;
  color: rgba(255,255,255,.9);
}
.lp-footer__brand img {
  height: 26px;
}

.lp-footer__note {
  font-size: 0.8125rem;
  color: rgba(255,255,255,.45);
  flex: 1;
}

.lp-footer__links {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-left: auto;
}

.lp-footer__link {
  font-size: 0.8125rem;
  color: var(--teal);
  text-decoration: none;
}
.lp-footer__link:hover {
  color: #fff;
}

/* ── Reduced motion ──────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}

/* ── Responsive ──────────────────────────────────────────── */

@media (max-width: 800px) {
  .lp-feat-grid { grid-template-columns: 1fr; }
  .lp-story__inner--split { grid-template-columns: 1fr; gap: 1.25rem; }
  .lp-story__media { display: none; }
  .lp-mission__layout { grid-template-columns: 1fr; }
  .lp-mission__pond { display: none; }
}

@media (max-width: 500px) {
  .lp-hero__title { font-size: 2rem; }
  .lp-nav { padding: 0 1rem; }
  .lp-story, .lp-mission, .lp-features, .lp-cta { padding: 3rem 1.25rem; }
}
