/*
Theme Name: The Plan Beyond
Theme URI: http://3.111.175.164/
Author: Echo Innovate IT
Description: Marketing landing theme for The Plan Beyond — converted from React/HTML template.
Version: 1.7.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tpb
*/

/* Smooth scroll with offset for fixed nav — no snap (it breaks hash links) */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

.elementor-page .elementor-top-section[id] {
  scroll-margin-top: 90px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* Hero typewriter caret */
.tpb-caret {
  display: inline-block;
  margin-left: 4px;
  font-weight: 200;
  color: currentColor;
  opacity: 1;
  animation: tpb-blink 0.8s steps(2, start) infinite;
}
.tpb-caret-stop { animation: none; opacity: 0; transition: opacity 0.4s ease; }
@keyframes tpb-blink {
  to { visibility: hidden; }
}
@media (prefers-reduced-motion: reduce) {
  .tpb-caret { animation: none; opacity: 0; }
}

