/* ==========================================================================
   American Prosperity Program - Static HTML build
   Converted from WordPress (Astra + Elementor). Design tokens taken from the
   original Elementor global kit (elementor-kit-277) and Astra theme settings.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
  --app-blue:        #0074E1;  /* Elementor global "accent"    */
  --app-black:       #000000;  /* Elementor global "primary"   */
  --app-white:       #FFFFFF;  /* Elementor global "text"      */
  --app-grey:        #8E8E8E;  /* Elementor global "secondary" */
  --app-footer-link: #B3B3B3;
  --app-counter-red: #BB1C1C;
  --app-input-text:  #475569;
  --app-label:       #111827;
  --app-nav:         #111111;

  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
               "Helvetica Neue", Arial, sans-serif;
  --font-mono: "Roboto Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --container:        1140px;  /* Elementor content width */
  --container-header: 1240px;  /* Astra header container  */
  --header-height:    97px;
}

/* --------------------------------------------------------------------------
   2. Reset / base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 14.592px;          /* Astra base body size */
  font-weight: 400;
  line-height: 1.65;
  color: var(--app-black);
  background: var(--app-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; border: 0; display: block; }

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

h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 600; line-height: 1.3; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

ul { margin: 0; padding: 0; list-style: none; }

button { font-family: inherit; }

/* Accessible skip link */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--app-blue); color: #fff; padding: 10px 18px;
  font-weight: 700; border-radius: 0 0 3px 0;
}
.skip-link:focus { left: 0; }

/* Visible focus for keyboard users */
a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--app-blue);
  outline-offset: 2px;
}

/* --------------------------------------------------------------------------
   3. Layout helpers
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
}

/* --------------------------------------------------------------------------
   4. Site header
   -------------------------------------------------------------------------- */
.site-header {
  background: var(--app-white);
  position: relative;
  z-index: 100;
}

.site-header__inner {
  max-width: var(--container-header);
  margin-inline: auto;
  padding: 0 20px;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-logo img { width: 175px; height: 65px; object-fit: contain; }

/* ---- Primary navigation ---- */
.main-nav > ul {
  display: flex;
  align-items: center;
}

.main-nav > ul > li { position: relative; }

.main-nav > ul > li > a,
.main-nav > ul > li > .nav-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 14.592px;
  height: var(--header-height);
  font-size: 14.592px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--app-nav);
  background: none;
  border: 0;
  cursor: pointer;
  white-space: nowrap;
}

.main-nav > ul > li > a:hover,
.main-nav > ul > li > .nav-toggle:hover,
.main-nav > ul > li.is-open > .nav-toggle { color: var(--app-blue); }

/* Dropdown caret */
.nav-caret {
  width: 9px; height: 9px; flex: none;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform .18s ease;
}
.main-nav > ul > li.is-open .nav-caret { transform: translateY(1px) rotate(-135deg); }

/* ---- Sub menu ---- */
.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--app-white);
  box-shadow: 0 4px 10px -2px rgba(0, 0, 0, .1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}

.main-nav > ul > li:hover > .sub-menu,
.main-nav > ul > li.is-open > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sub-menu a {
  display: block;
  padding: 14.4px 16px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--app-nav);
  line-height: 1.3;
}

.sub-menu a:hover { color: var(--app-blue); background: #f6f9fd; }

/* ---- Mobile toggle ---- */
.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: none; border: 1px solid rgba(0, 0, 0, .15);
  border-radius: 3px; cursor: pointer; padding: 0;
}
.menu-toggle span {
  display: block; position: relative;
  width: 22px; height: 2px; background: var(--app-nav);
}
.menu-toggle span::before,
.menu-toggle span::after {
  content: ""; position: absolute; left: 0;
  width: 22px; height: 2px; background: var(--app-nav);
  transition: transform .2s ease, top .2s ease;
}
.menu-toggle span::before { top: -7px; }
.menu-toggle span::after  { top:  7px; }
.menu-toggle[aria-expanded="true"] span { background: transparent; }
.menu-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  border: 0;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease;
}

.btn--blue {
  background: var(--app-blue);
  color: var(--app-white);
  padding: 12px 24px;
  border-radius: 3px;
  font-size: 20px;
}
.btn--blue:hover { background: #0063c2; color: var(--app-white); }

.btn--blue-lg {
  background: var(--app-blue);
  color: var(--app-white);
  padding: 12px 24px;
  border-radius: 5px;
  font-size: 24px;
}
.btn--blue-lg:hover { background: #0063c2; }

.btn--blue-sm {
  background: var(--app-blue);
  color: var(--app-white);
  padding: 15px 30px;
  border-radius: 3px;
  font-size: 16px;
}
.btn--blue-sm:hover { background: #0063c2; }

/* White buttons used on the Resources page */
.btn--white {
  background: var(--app-white);
  color: var(--app-black);
  padding: 15px 30px;
  border-radius: 3px;
  font-size: 16px;
  font-weight: 500;
}
.btn--white:hover { background: #eef4fb; }

.btn--block { display: block; width: 100%; }

/* --------------------------------------------------------------------------
   6. Page hero (blue bar used on all inner pages)
   -------------------------------------------------------------------------- */
.page-hero {
  background: var(--app-blue);
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 10px;
}

.page-hero h1 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--app-white);
  text-align: center;
}

/* --------------------------------------------------------------------------
   7. Home - hero with looping background video
   -------------------------------------------------------------------------- */
.home-hero {
  position: relative;
  min-height: 850px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 10px;
  overflow: hidden;
  isolation: isolate;
  background: #2b2b2b;
}

.home-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.home-hero__content {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  text-align: center;
  padding: 10px 0;
}

.home-hero h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--app-white);
  margin: 0;
  /* Lifts the copy off the moving video behind it. */
  text-shadow: 0 2px 6px rgba(0, 0, 0, .55), 0 6px 26px rgba(0, 0, 0, .38);
}

.home-hero__sub {
  font-size: 22.8px;
  font-weight: 300;
  line-height: 1.3;
  color: var(--app-white);
  margin: 0;
  /* Heavier than the h1's, since this line is light-weight and thin. */
  text-shadow: 0 1px 4px rgba(0, 0, 0, .8), 0 3px 16px rgba(0, 0, 0, .6);
}

.home-hero__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 30px;
}
.home-hero__actions .btn { margin: 10px; }

/* --------------------------------------------------------------------------
   8. Home - counter
   -------------------------------------------------------------------------- */
.counter-section {
  /* The original Elementor section carries 100px of vertical margin. */
  margin: 100px 0;
  padding: 0 10px;
  min-height: 139px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.counter {
  text-align: center;
  padding: 10px 0;
}

.counter__title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--app-black);
  margin: 0 0 6px;
}

.counter__value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 58px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--app-counter-red);
}

.counter__prefix { margin-right: 2px; }

/* --------------------------------------------------------------------------
   9. Home - "What is the APP" blue band
   -------------------------------------------------------------------------- */
.intro-band {
  background: var(--app-blue);
  padding: 50px 10px;
}

.intro-band__inner {
  max-width: var(--container);
  margin-inline: auto;
}

.intro-band__eyebrow {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.65;
  color: var(--app-white);
  text-align: center;
  margin: 0;
}

.intro-band h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--app-white);
  text-align: center;
  margin: 0 0 49.6px;   /* matches the original heading widget block height */
}

/* Icon + copy rows (Elementor image-box, icon on the left) */
.feature {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px 55px 25px 100px;
}

.feature__icon { flex: 0 0 90px; width: 90px; height: 90px; }
.feature__icon img { width: 90px; height: 90px; object-fit: contain; }

.feature__text {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--app-white);
  margin: 0;
}

.intro-band__cta { text-align: center; margin: 31px 0; }

/* --------------------------------------------------------------------------
   10. About page
   -------------------------------------------------------------------------- */
/* The original is a single Elementor container: a centred flex column with a
   20px gap between every widget, so each child carries no margin of its own. */
.about-section { padding: 0 30px; }

.about-section__inner {
  max-width: var(--container);
  margin-inline: auto;
  /* Extra room at the foot so the sign-up button clears the footer. */
  padding: 30px 0 80px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}

.about-section h2 {
  font-size: 35px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--app-black);
  margin: 0;
}

.about-lead {
  font-size: 20px;
  font-weight: 400;
  line-height: 33px;
  color: var(--app-black);
  margin: 0 0 32px;   /* Astra's 1.6em paragraph margin at 20px */
}

/* The original text widget is inset 25px each side, which is what makes the
   three paragraphs wrap to 2 / 3 / 2 lines. */
.about-body {
  margin: 0 25px;
  font-size: 16px;
  font-weight: 400;
  line-height: 26.4px;
  color: var(--app-black);
}
.about-body p { margin: 0 0 25.6px; }   /* Astra's 1.6em at 16px */

.about-section h2.about-cta__title {
  font-size: 40px;
  font-weight: 600;
  line-height: 52px;
  color: var(--app-black);
  margin: 0;
}
.about-cta__sub {
  font-size: 30px;
  font-weight: 400;
  line-height: 39px;
  color: var(--app-black);
  margin: 0;
}

/* --------------------------------------------------------------------------
   11. FAQ accordion
   -------------------------------------------------------------------------- */
.faq-section { padding: 50px; margin: 5px; }   /* the original section carries a 5px margin */

.faq-section__inner {
  max-width: var(--container);
  margin-inline: auto;
}

.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  background: var(--app-blue);
  color: var(--app-white);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  padding: 10px;
  border: 0;
  cursor: pointer;
}

.accordion__trigger:hover { background: #0068cc; }

.accordion__icon {
  flex: none;
  width: 15px;
  height: 15px;
  position: relative;
}
.accordion__icon::before,
.accordion__icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}
.accordion__icon::before { top: 6.5px; left: 0; width: 15px; height: 2px; }
.accordion__icon::after  { left: 6.5px; top: 0; width: 2px; height: 15px; }
.accordion__trigger[aria-expanded="true"] .accordion__icon::after { opacity: 0; transform: rotate(90deg); }

.accordion__panel {
  display: none;
  padding: 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 26.4px;
  color: var(--app-black);
}
.accordion__panel.is-open { display: block; }
/* The original separates paragraphs with an empty spacer paragraph, which
   works out to one blank line between them. */
.accordion__panel p { margin: 0 0 26.4px; }
.accordion__panel p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   12. Forms (markup only - no backend wired up yet)
   -------------------------------------------------------------------------- */
/* Newsletter: the intro sits in its own section above the form section. */
.form-intro-section { padding: 10px 15px; }

.form-section { padding: 30px 15px; }

/* Contact: a two-column section with its own tighter padding. */
.contact-section { padding: 0 10px; }
.contact-section .form-section__inner { padding: 10px 0; }
/* The original reserves space below the form for its response message. */
.contact-section .app-form { padding-bottom: 30px; }

.form-section__inner {
  max-width: var(--container);
  margin-inline: auto;
}

.form-intro {
  font-size: 25px;
  font-weight: 400;
  line-height: 41.25px;
  color: var(--app-black);
  text-align: center;
  margin: 0;
}

.app-form { width: 100%; }
.app-form--narrow { max-width: 550px; }
.app-form--wide   { max-width: 850px; margin-inline: auto; }

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}
.form-row > .form-field { flex: 1 1 220px; min-width: 0; }

.form-field { display: flex; flex-direction: column; }

.form-field label {
  font-size: 15px;
  font-weight: 700;
  color: var(--app-label);
  line-height: 25px;
  margin-bottom: 0;
}

.form-field .req { color: var(--app-counter-red); }

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--app-input-text);
  background: var(--app-white);
  border: 1px solid var(--app-black);
  border-radius: 2px;
  padding: 9px;
  line-height: 1.3;
}

.form-field input,
.form-field select { height: 41px; }

.form-field textarea { height: 140px; resize: vertical; }

.form-field input::placeholder,
.form-field textarea::placeholder { color: #94a3b8; }

.form-submit {
  background: var(--app-blue);
  color: var(--app-white);
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 700;
  padding: 10px 15px;
  border: 0;
  border-radius: 2px;
  cursor: pointer;
  line-height: 26px;
}
.form-submit:hover { background: #0063c2; }

/* Contact page details column */
/* Two equal 570px columns, each inset 10px — the original's proportions. */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  align-items: flex-start;
}
.contact-grid__col {
  flex: 1 1 50%;
  min-width: 0;
  padding: 10px;
}

.contact-grid h2 {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--app-black);
  margin: 0 0 10px;
}

.contact-email {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--app-black);
}
.contact-email a:hover { color: var(--app-blue); text-decoration: underline; }

/* Notice shown where a form backend has not been connected yet.
   Takes up no space until the script fills it in. */
.form-note {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.6;
  color: #64748b;
}
.form-note:empty { display: none; }

/* --------------------------------------------------------------------------
   13. Resources page
   -------------------------------------------------------------------------- */
.resources-top {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Direct child only, so the heading inside .resources-feature is untouched.
   Natural casing in the markup, uppercased by CSS, as the original does. */
.resources-top > h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 52px;
  text-transform: uppercase;
  color: var(--app-black);
  text-align: center;
  padding: 37px 50px;
  margin: 0;
}

.resources-feature {
  background: var(--app-blue);
  padding: 30px 50px 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.resources-feature h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 52px;
  color: var(--app-white);
  text-align: center;
  margin: 0;
  padding: 0;
}

/* These two sit centred at their natural width, not stretched edge to edge. */
.resources-feature .btn {
  align-self: center;
  width: auto;
}

.resources-group { padding: 0 10px; }

/* The first group sits 20px below the feature block, as in the original. */
.resources-top + .resources-group { margin-top: 20px; }

.resources-group__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.resources-group h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--app-black);
  text-align: center;
  margin: 0;
}

.resources-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 10px;
}

.resource-card {
  flex: 1 1 300px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 10px;
}

.resource-card__img {
  width: 100%;
  height: 281px;
  object-fit: contain;
}

.resource-card .btn { font-size: 20px; padding: 15px 30px; }

/* --------------------------------------------------------------------------
   14. Site footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--app-black); color: var(--app-white); }

.footer-tagline {
  padding: 20px 0;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.footer-tagline p {
  font-size: 26.67px;   /* 20pt in the original */
  font-weight: 700;
  color: var(--app-white);
  margin: 0;
  line-height: 44px;
}

.footer-main {
  padding: 25px 250px 38px 350px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-col { flex: 1 1 180px; min-width: 0; }

.footer-col__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--app-white);
  line-height: 26.4px;
  margin: 10px 0;
}

.footer-col ul li {
  font-size: 16px;
  line-height: 1.65;
}
.footer-col ul li a { color: var(--app-footer-link); }
.footer-col ul li a:hover { color: var(--app-white); text-decoration: underline; }

.footer-bottom {
  padding: 20px 0;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 16px;
  line-height: 26.4px;
  color: var(--app-grey);
}

/* Back-to-top */
.to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--app-blue);
  color: var(--app-white);
  border: 0;
  border-radius: 3px;
  cursor: pointer;
  z-index: 90;
}
.to-top.is-visible { display: flex; }
.to-top span {
  width: 10px; height: 10px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: translateY(2px) rotate(45deg);
}

/* --------------------------------------------------------------------------
   15. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1240px) {
  .footer-main { padding: 25px 40px 0; justify-content: center; }
}

@media (max-width: 921px) {
  .menu-toggle { display: flex; }

  .main-nav {
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--app-white);
    box-shadow: 0 10px 20px -6px rgba(0, 0, 0, .15);
    display: none;
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
  }
  .main-nav.is-open { display: block; }

  .main-nav > ul { flex-direction: column; align-items: stretch; }

  .main-nav > ul > li { border-top: 1px solid rgba(0, 0, 0, .08); }

  .main-nav > ul > li > a,
  .main-nav > ul > li > .nav-toggle {
    height: auto;
    padding: 16px 20px;
    width: 100%;
    justify-content: space-between;
  }

  .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: #f7f9fc;
    display: none;
    min-width: 0;
  }
  .main-nav > ul > li:hover > .sub-menu { display: none; }
  .main-nav > ul > li.is-open > .sub-menu { display: block; }

  .sub-menu a { padding: 14px 34px; }

  .home-hero { min-height: 600px; }
  .home-hero h1 { font-size: 34px; }
  .home-hero__sub { font-size: 19px; }

  .intro-band h2 { font-size: 34px; }
  .feature { padding: 20px 10px; gap: 16px; }
  .feature__text { font-size: 19px; }

  .counter__value { font-size: 42px; }
  .counter__title { font-size: 21px; }

  .page-hero h1 { font-size: 32px; }

  .about-cta__title { font-size: 30px; line-height: 1.3; }
  .about-cta__sub { font-size: 22px; line-height: 1.3; }

  .about-section h2 { font-size: 28px; }
  .about-lead { font-size: 18px; }

  .faq-section { padding: 40px 16px; }

  .resources-top > h1 { font-size: 30px; line-height: 1.3; padding: 24px 16px; }
  .resources-feature { padding: 24px 20px 30px; }
  .resources-feature h2 { font-size: 30px; line-height: 1.3; }
  .resources-group h2 { font-size: 26px; }

  .footer-main { padding: 25px 20px 0; }
}

@media (max-width: 600px) {
  .home-hero h1 { font-size: 28px; }
  .home-hero__actions .btn { font-size: 17px; width: 100%; max-width: 320px; }
  .counter__value { font-size: 27px; }
  .counter__title { font-size: 17px; }
  .intro-band h2 { font-size: 26px; }
  .intro-band__eyebrow { font-size: 17px; }
  .feature { flex-direction: column; text-align: center; }
  .feature__text { font-size: 17px; }
  .page-hero h1 { font-size: 26px; }
  .form-row { flex-direction: column; gap: 16px; }
  .resource-card__img { height: auto; }
  .footer-main { flex-direction: column; text-align: center; }
}

/* --------------------------------------------------------------------------
   16. Motion preferences
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

/* Print */
@media print {
  .site-header, .site-footer, .to-top { display: none; }
  body { color: #000; }
}


/* Honeypot for the Jetstream form Worker. Off-screen rather than display:none —
   some bots skip hidden inputs, and this one needs to look fillable. */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Newsletter placeholder, standing in for the form until the list is live. */
.coming-soon {
  max-width: 700px;
  margin: 0 auto 40px;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid #E2E8F0;
  border-radius: 6px;
  background: #F8FAFC;
}
.coming-soon__tag {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--app-blue);
  margin: 0 0 14px;
}
.coming-soon__body {
  font-size: 18px;
  line-height: 1.6;
  color: var(--app-input-text);
  margin: 0 0 26px;
}
