/* Harold Health Organization Inc — standalone nonprofit page */
@font-face {
  font-family: 'lexend-deca';
  src: url('../fonts/lexend-deca-extralight.woff2') format('woff2');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'lexend-deca';
  src: url('../fonts/lexend-deca-light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'lexend-deca';
  src: url('../fonts/lexend-deca-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'lexend-deca';
  src: url('../fonts/lexend-deca-semibold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'lexend-deca';
  src: url('../fonts/lexend-deca-bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'lexend-deca';
  src: url('../fonts/lexend-deca-extrabold.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'lexend-deca';
  src: url('../fonts/lexend-deca-black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'icon-outlined';
  src: url('../fonts/icon-outlined.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: block;
}

:root {
  --text-regular: 18px;
  --button-font-size: 16px;
  --color1: #ff621d;
  --color1b: #ef4900;
  --color1c: #6b2b10;
  --color2: #000000;
  --color3: #ffffff;
  --font-family: 'lexend-deca', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

html.np-modal-open,
html.np-modal-open body {
  overflow: hidden;
}

body {
  min-width: 320px;
  background: #ffffff;
  color: #101010;
  font-family: var(--font-family);
  font-size: var(--text-regular);
  font-style: normal;
  font-weight: 300;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: var(--color1c);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

p {
  padding: 0 0 20px;
  font-size: var(--text-regular);
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  padding: 20px 0;
  font-weight: 200;
}

ul,
ol {
  margin-bottom: 20px;
  padding-left: 20px;
}

[hidden] {
  display: none !important;
}

.container {
  width: 95%;
  max-width: 1800px;
  margin: 0 auto;
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
}

.col-3 {
  grid-column: span 3;
}

.ptb-80 {
  padding: 80px 0;
}

.text-bold {
  font-weight: 600;
}

.icon-outlined {
  display: inline-block;
  overflow: hidden;
  direction: ltr;
  font-family: 'icon-outlined';
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  vertical-align: text-top;
  user-select: none;
  -webkit-font-feature-settings: 'liga';
  font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}

.header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: transparent;
  transition:
    background 0.35s ease,
    color 0.35s ease;
}

.header-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 70px;
}

.logo {
  width: fit-content;
}

.logo svg {
  width: auto;
  height: 40px;
  transition: fill 0.3s ease;
}

.logo svg:hover {
  fill: var(--color1) !important;
}

.menu-toggle {
  display: flex;
  justify-self: center;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 0;
  border-radius: 100px;
  background: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

.header-actions {
  display: flex;
  justify-self: end;
  gap: 15px;
}

.header-actions a:hover {
  text-decoration: none;
}

.header-actions .button i {
  display: none;
}

.button {
  display: inline-block;
  padding: 10px 20px;
  border: 0;
  border-radius: 100px;
  background: var(--color2);
  color: #ffffff;
  font-size: var(--button-font-size);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.button:hover {
  background: var(--color1);
  text-decoration: none;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.button-orange {
  background: var(--color1);
}

.button-orange:hover {
  background: var(--color1b);
}

.button-clear {
  background: transparent;
  text-transform: none;
}

.button-clear:hover {
  background: transparent;
  text-decoration: underline;
}

.menu-container {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
}

.mega-menu {
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  background: #f8f8f8;
  transition:
    max-height 0.45s ease,
    visibility 0s linear 0.45s;
}

.mega-menu.open {
  max-height: calc(100vh - 70px);
  overflow-y: auto;
  visibility: visible;
  transition-delay: 0s;
}

.mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 40px;
}

.menu-col h3 {
  font-size: 18px;
}

.menu-col a {
  display: block;
  padding: 5px 0;
  color: #333333;
  text-decoration: none;
}

.menu-col a:hover {
  color: #000000;
  font-weight: 600;
}

.social-media-disabled {
  list-style: none;
}

footer h4 {
  color: var(--color1);
  font-weight: 700;
  text-transform: uppercase;
}

footer ul,
footer li {
  padding: 5px 0;
  list-style: none;
}

footer li a {
  color: rgba(0, 0, 0, 0.55);
  font-weight: 400;
  text-decoration: none;
}

footer li a:hover {
  color: #000000;
  text-decoration: underline;
}

.footer-logo {
  width: 100%;
  max-width: 300px;
  height: auto;
}

.np-static-contact {
  text-align: center;
}

.np-static-contact p {
  max-width: 560px;
  margin: 0 auto 10px;
}

.np-legal-hero {
  padding: 88px 0 76px;
  background:
    linear-gradient(115deg, rgba(255, 98, 29, 0.1), transparent 48%),
    #f4f5f1;
  border-bottom: 1px solid rgba(16, 16, 16, 0.08);
}

.np-legal-hero-inner {
  max-width: 1120px;
}

.np-eyebrow,
.np-legal-nav-label {
  padding-bottom: 12px;
  color: var(--color1b);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.np-legal-hero h1 {
  max-width: 850px;
  padding: 0 0 18px;
  color: #101010;
  font-size: clamp(2.4rem, 5vw, 5.2rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.98;
}

.np-legal-hero p:last-child {
  max-width: 700px;
  padding-bottom: 0;
  color: #4c514d;
}

.np-legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  padding-bottom: 24px;
  color: #4c514d;
  font-size: 14px;
}

.np-legal-meta strong {
  color: #101010;
  font-weight: 700;
}

.np-legal-content {
  padding: 76px 0 100px;
}

.np-legal-layout {
  display: grid;
  grid-template-columns: minmax(180px, 230px) minmax(0, 760px);
  justify-content: center;
  gap: 72px;
}

.np-legal-nav {
  position: sticky;
  top: 100px;
  align-self: start;
  padding-left: 18px;
  border-left: 2px solid rgba(255, 98, 29, 0.3);
}

.np-legal-nav a {
  display: block;
  padding: 6px 0;
  color: #4c514d;
  font-size: 14px;
  line-height: 1.4;
}

.np-legal-nav a:hover {
  color: var(--color1b);
}

.np-legal-document {
  min-width: 0;
}

.np-legal-document p,
.np-legal-document li {
  color: #363b37;
  font-size: 16px;
  line-height: 1.75;
}

.np-legal-document p {
  padding-bottom: 20px;
}

.np-legal-document h2 {
  scroll-margin-top: 100px;
  padding: 44px 0 14px;
  color: #111811;
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.25;
}

.np-legal-document h2:first-of-type {
  padding-top: 12px;
}

.np-legal-document ul {
  margin: -2px 0 22px;
  padding-left: 28px;
}

.np-legal-document li {
  padding: 2px 0;
}

.np-legal-document strong {
  color: #111811;
  font-weight: 700;
}

.np-legal-document a {
  overflow-wrap: anywhere;
}

.np-legal-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 28px 0;
  border-top: 1px solid rgba(16, 16, 16, 0.12);
}

.np-legal-footer-row p {
  padding: 0;
  color: rgba(0, 0, 0, 0.55);
  font-size: 13px;
}

.np-legal-footer-row div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 20px;
}

.np-legal-footer-row a {
  color: #4c514d;
  font-size: 13px;
}

@media (max-width: 1280px) {
  footer .grid .col-3 {
    grid-column: span 6;
  }

  footer .grid .col-3:first-child {
    grid-column: span 12;
    text-align: center;
  }

  footer .grid .col-3:first-child .footer-logo {
    margin: 0 auto;
  }

  .copy {
    margin-top: 40px;
    text-align: center;
  }
}

@media (max-width: 899px) {
  footer .grid .col-3 {
    grid-column: span 12;
    text-align: center;
  }

  .footer-logo {
    width: 60%;
    max-width: none;
    margin: 0 auto;
  }

  footer .social-media-icons {
    justify-content: center;
  }

  .np-legal-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .np-legal-nav {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 20px;
    padding: 0 0 18px 18px;
  }

  .np-legal-nav-label {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  :root {
    --text-regular: 14px;
  }

  .container {
    width: 90%;
  }

  .np-legal-hero {
    padding: 56px 0 48px;
  }

  .np-legal-hero h1 {
    font-size: 2.55rem;
  }

  .np-legal-content {
    padding: 48px 0 64px;
  }

  .np-legal-document p,
  .np-legal-document li {
    font-size: 15px;
  }

  .np-legal-document h2 {
    font-size: 1.3rem;
  }

  .np-legal-footer-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .np-legal-footer-row div {
    justify-content: flex-start;
  }

  .header-grid {
    grid-template-columns: minmax(0, 1fr) auto auto;
    column-gap: 8px;
    min-height: 64px;
  }

  .header .np-foundation-logo {
    min-width: 0;
    gap: 6px;
  }

  .header .np-foundation-logo-text {
    font-size: 8px;
    line-height: 0.95;
    letter-spacing: 0.025em;
  }

  .header .np-foundation-logo-text span {
    white-space: nowrap;
  }

  .menu-toggle {
    justify-self: end;
    gap: 4px;
    padding: 7px 5px;
    font-size: 13px;
  }

  .menu-toggle .icon-outlined {
    font-size: 15px;
  }

  .header-actions {
    gap: 0;
  }

  .header-actions .button i {
    display: block;
  }

  .header-actions .button span {
    display: none;
  }

  .header-actions .button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    font-size: 18px;
  }

  .logo svg {
    height: 28px;
  }

  .mega-grid {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .menu-col {
    text-align: center;
  }

  .menu-col h3,
  .menu-col a {
    font-size: 20px;
  }

  .ptb-80 {
    padding: 40px 0;
  }

  footer h4,
  footer li a {
    font-size: 20px;
  }

  .footer-logo {
    width: 100%;
  }
}

body.np-page {
  background: #f5f5f2;
  color: #101010;
}

.np-page .header.header-inner,
.np-page .header.header-inner:not(.scrolled),
.np-page .header.header-inner:hover,
.np-page .header.header-inner.scrolled {
  background: rgba(7, 19, 13, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.np-page .header.header-inner svg,
.np-page .header.header-inner:not(.scrolled) svg,
.np-page .header.header-inner:hover svg,
.np-page .header.header-inner.scrolled svg {
  fill: #ffffff !important;
}

.np-page .header.header-inner .menu-toggle,
.np-page .header.header-inner .button-clear,
.np-page .header.header-inner:not(.scrolled) .menu-toggle,
.np-page .header.header-inner:not(.scrolled) .button-clear {
  color: #ffffff !important;
}

.np-page main {
  background: #f5f5f2;
}

.np-support-page {
  overflow: hidden;
}

.np-hero {
  position: relative;
  min-height: 660px;
  display: flex;
  align-items: center;
  padding: 140px 0 130px;
  background:
    linear-gradient(
      90deg,
      rgba(6, 14, 10, 0.92) 0%,
      rgba(6, 14, 10, 0.72) 34%,
      rgba(6, 14, 10, 0.32) 68%,
      rgba(6, 14, 10, 0.12) 100%
    ),
    url('../img/meditation.png') center center / cover no-repeat;
  border-radius: 0 0 28px 28px;
  color: #ffffff;
}

.np-hero-copy {
  width: min(680px, 100%);
}

.np-hero h1 {
  font-size: clamp(3.25rem, 6.5vw, 6rem);
  line-height: 0.94;
  letter-spacing: 0;
  font-weight: 900;
  margin-bottom: 20px;
}

.np-hero h1 span {
  color: var(--color1);
  display: block;
}

.np-hero p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.55;
  margin-bottom: 30px;
}

.np-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.np-actions .button,
.np-cta-band .button {
  min-height: 54px;
  border-radius: 10px;
  padding: 15px 22px;
  font-weight: 800;
}

.np-actions .button-clear {
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

.np-mission {
  position: relative;
  z-index: 2;
  margin-top: -66px;
}

.np-mission-card {
  width: min(980px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 26px 30px;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(12, 20, 15, 0.08);
  box-shadow: 0 18px 42px rgba(17, 24, 18, 0.14);
}

.np-mission-icon,
.np-card-icon,
.np-help-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.np-mission-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #06391e;
  color: #ffffff;
  font-size: 36px;
}

.np-mission-card p {
  color: #1d1d1d;
  font-size: 16px;
  line-height: 1.5;
}

.np-mission-card p + p {
  margin-top: 8px;
  color: #5e625e;
  font-size: 14px;
}

.np-section {
  padding: 72px 0 0;
}

.np-section-heading {
  text-align: center;
  margin-bottom: 34px;
}

.np-section-heading h2 {
  display: inline-block;
  color: #111111;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 12px;
  border-bottom: 4px solid var(--color1);
  padding-bottom: 6px;
}

.np-section-heading p {
  color: #626861;
  font-size: 16px;
}

.np-donation-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.np-donation-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 22px 20px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(14, 26, 17, 0.08);
  box-shadow: 0 14px 34px rgba(16, 25, 18, 0.08);
}

.np-card-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  margin-bottom: 18px;
  background: #edf0e9;
  color: #202520;
  font-size: 32px;
}

.np-donation-card .amount {
  font-size: clamp(2.2rem, 3vw, 3.25rem);
  line-height: 1;
  font-weight: 900;
  margin-bottom: 15px;
}

.np-donation-card .rule {
  width: 36px;
  height: 2px;
  background: #c4cbc2;
  margin-bottom: 16px;
}

.np-donation-card h3 {
  font-size: 17px;
  line-height: 1.2;
  font-weight: 900;
  margin-bottom: 10px;
}

.np-donation-card p {
  color: #606660;
  font-size: 14px;
  line-height: 1.5;
}

.np-donation-card .np-credit-note {
  color: var(--color1b);
  font-weight: 800;
  margin-top: 12px;
}

.np-donation-card .button {
  width: 100%;
  justify-content: center;
  border-radius: 8px;
  margin-top: auto;
}

.np-custom-donation-field {
  width: 100%;
  margin: 14px 0 10px;
  text-align: left;
}

.np-custom-donation-field label {
  display: block;
  margin-bottom: 8px;
  color: #1a1f1a;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.np-custom-donation-input-wrap {
  position: relative;
}

.np-custom-donation-input-wrap span {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #364036;
  font-size: 18px;
  font-weight: 900;
}

.np-custom-donation-field input {
  width: 100%;
  min-height: 52px;
  padding: 12px 16px 12px 34px;
  border: 1px solid rgba(14, 26, 17, 0.16);
  border-radius: 10px;
  background: #f8f9f6;
  color: #111111;
  font: inherit;
  font-size: 18px;
  font-weight: 800;
}

.np-custom-donation-field input:focus {
  outline: 2px solid rgba(232, 109, 23, 0.2);
  border-color: var(--color1);
}

.np-custom-donation-field p {
  margin-top: 8px;
  color: #606660;
  font-size: 12px;
  line-height: 1.45;
}

.np-secure-row {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  color: #626861;
  font-size: 14px;
}

.np-donation-status {
  margin-top: 18px;
  text-align: center;
  color: #4d554d;
  font-size: 14px;
  font-weight: 800;
}

.np-donation-status[hidden] {
  display: none;
}

.np-allowance-summary[hidden] {
  display: none;
}

.np-allowance-summary {
  width: min(780px, 100%);
  margin: 20px auto 0;
  padding: 18px 20px;
  border: 1px solid rgba(14, 26, 17, 0.1);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(16, 25, 18, 0.06);
}

.np-allowance-summary > p {
  margin-bottom: 12px;
  color: #1d251f;
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

.np-allowance-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.np-allowance-grid div {
  min-width: 0;
  padding: 10px;
  border-radius: 10px;
  background: #f5f7f3;
  text-align: center;
}

.np-allowance-grid dt {
  color: #667067;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.np-allowance-grid dd {
  margin: 4px 0 0;
  color: #111111;
  font-size: 15px;
  font-weight: 900;
}

.np-donation-flow-overlay[hidden] {
  display: none;
}

.np-donation-flow-overlay {
  position: fixed;
  inset: 0;
  z-index: 1320;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.62);
}

.np-donation-flow-dialog {
  position: relative;
  width: min(560px, 100%);
  max-height: min(760px, calc(100vh - 48px));
  overflow-y: auto;
  padding: 32px 28px 26px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  outline: none;
  background: #ffffff;
  color: #1c1c1c;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
}

.np-donation-flow-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #1c1c1c;
  cursor: pointer;
}

.np-donation-flow-close:hover,
.np-donation-flow-close:focus-visible {
  background: #f1f1f1;
}

.np-donation-flow-icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 999px;
  background: #fff0ed;
  color: #c85c1c;
}

.np-donation-flow-icon .icon-outlined {
  font-size: 28px;
}

.np-donation-flow-dialog h2 {
  margin: 0 42px 8px 0;
  color: #111111;
  font-size: 1.5rem;
  line-height: 1.2;
}

.np-donation-flow-intro {
  margin: 0 0 22px;
  color: #525852;
  font-size: 14px;
  line-height: 1.55;
}

.np-donation-flow-step[hidden],
.np-flow-status[hidden] {
  display: none;
}

.np-flow-status {
  margin: 0 0 18px;
  padding: 11px 13px;
  border: 1px solid rgba(177, 75, 18, 0.18);
  border-radius: 9px;
  background: #fff8f2;
  color: #773c19;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.np-donation-flow-form {
  display: grid;
  gap: 16px;
}

.np-flow-field label {
  display: block;
  margin-bottom: 7px;
  color: #1a1f1a;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.np-flow-field input,
.np-flow-field select {
  width: 100%;
  min-height: 50px;
  padding: 11px 13px;
  border: 1px solid rgba(14, 26, 17, 0.18);
  border-radius: 9px;
  background: #ffffff;
  color: #111111;
  font: inherit;
}

.np-flow-field input:focus,
.np-flow-field select:focus {
  outline: 2px solid rgba(232, 109, 23, 0.2);
  border-color: var(--color1);
}

.np-flow-field-hint {
  margin-top: 7px;
  color: #697069;
  font-size: 12px;
  line-height: 1.45;
}

.np-flow-primary {
  width: 100%;
  min-height: 50px;
  justify-content: center;
}

.np-flow-link-button {
  padding: 3px;
  border: 0;
  background: transparent;
  color: var(--color1b);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  text-decoration: underline;
  cursor: pointer;
}

.np-flow-link-button:disabled {
  color: #747b75;
  cursor: not-allowed;
}

.np-flow-otp-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.np-flow-code-destination {
  margin-bottom: 16px;
  color: #394139;
  font-size: 14px;
  line-height: 1.5;
}

.np-flow-allowance {
  margin-bottom: 18px;
}

.np-flow-allowance .np-allowance-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.np-provider-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.np-provider-button {
  min-height: 102px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 16px;
  border: 1px solid rgba(14, 26, 17, 0.16);
  border-radius: 12px;
  background: #f8f9f6;
  color: #171b18;
  text-align: left;
  cursor: pointer;
}

.np-provider-button:hover,
.np-provider-button:focus-visible {
  border-color: var(--color1);
  outline: 2px solid rgba(232, 109, 23, 0.16);
  background: #ffffff;
}

.np-provider-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.np-provider-button[hidden],
.np-flow-spinner[hidden] {
  display: none;
}

.np-provider-button strong {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 16px;
}

.np-provider-button span {
  margin-top: 6px;
  color: #646b65;
  font-size: 12px;
  line-height: 1.4;
}

.np-flow-change-amount {
  margin-top: 18px;
  text-align: center;
}

.np-flow-pending {
  padding: 8px 0 2px;
  text-align: center;
}

.np-flow-spinner {
  width: 42px;
  height: 42px;
  margin: 0 auto 16px;
  border: 4px solid #e5e9e3;
  border-top-color: var(--color1);
  border-radius: 50%;
  animation: np-flow-spin 0.9s linear infinite;
}

.np-flow-pending p {
  color: #505750;
  font-size: 14px;
  line-height: 1.55;
}

.np-flow-pending .button {
  width: 100%;
  justify-content: center;
  margin-top: 18px;
}

@keyframes np-flow-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .np-flow-spinner {
    animation: none;
    border-top-color: #e5e9e3;
    border-right-color: var(--color1);
  }
}

.np-donation-confirmation-overlay[hidden] {
  display: none;
}

.np-donation-confirmation-overlay {
  position: fixed;
  inset: 0;
  z-index: 1310;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.62);
}

.np-donation-confirmation-dialog {
  position: relative;
  width: min(460px, 100%);
  background: #ffffff;
  color: #1c1c1c;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 32px 28px 26px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
  outline: none;
  text-align: left;
}

.np-donation-confirmation-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #1c1c1c;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.np-donation-confirmation-close:hover,
.np-donation-confirmation-close:focus-visible {
  background: #f1f1f1;
}

.np-donation-confirmation-icon {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: #eaf7ef;
  color: #1a7a3e;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.np-donation-confirmation-icon .icon-outlined {
  font-size: 28px;
}

.np-donation-confirmation-dialog h2 {
  color: #111111;
  font-size: 1.5rem;
  line-height: 1.2;
  margin: 0 42px 12px 0;
}

.np-donation-confirmation-dialog p {
  color: #444444;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.np-donation-confirmation-action {
  width: 100%;
  margin-top: 24px;
}

.np-payment-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.np-payment-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 4px 9px;
  border-radius: 6px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: #19231b;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.np-help {
  margin-top: 64px;
  padding: 48px 0;
  background: #062414;
  color: #ffffff;
}

.np-help h2 {
  color: #ffffff;
  font-size: clamp(1.75rem, 2.7vw, 2.6rem);
  line-height: 1.1;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.np-help-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(300px, 0.86fr);
  gap: 34px;
  align-items: stretch;
}

.np-help-items {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.np-help-item {
  text-align: center;
  padding: 0 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.np-help-item:last-child {
  border-right: 0;
}

.np-help-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: #a0f0a5;
  font-size: 30px;
}

.np-help-item h3 {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 900;
  margin-bottom: 10px;
}

.np-help-item p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  line-height: 1.55;
}

.np-help-image {
  min-height: 320px;
  border-radius: 20px;
  overflow: hidden;
  background: #101610;
}

.np-help-image img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: block;
  object-fit: cover;
}

.np-notice {
  padding: 46px 0 0;
}

.np-notice-card {
  display: grid;
  grid-template-columns: 0.34fr 1fr;
  align-items: stretch;
  overflow: hidden;
  background: #eef1f0;
  border-radius: 18px;
  border: 1px solid rgba(15, 25, 18, 0.08);
}

.np-notice-aside {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 34px 24px;
  border-right: 1px solid rgba(15, 25, 18, 0.16);
}

.np-notice-aside i {
  display: block;
  margin-bottom: 16px;
  color: #232923;
  font-size: 56px;
}

.np-notice-aside h2 {
  color: #111111;
  font-size: 22px;
  line-height: 1.12;
  font-weight: 900;
  text-transform: uppercase;
}

.np-notice-list {
  padding: 30px 34px;
  list-style: none;
}

.np-notice-list li {
  position: relative;
  margin-bottom: 14px;
  padding-left: 32px;
  color: #303630;
  font-size: 14px;
  line-height: 1.55;
}

.np-notice-list li:last-child {
  margin-bottom: 0;
}

.np-notice-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border: 1.5px solid #445049;
  border-radius: 50%;
}

.np-notice-list li::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 8px;
  width: 6px;
  height: 3px;
  border-left: 2px solid #445049;
  border-bottom: 2px solid #445049;
  transform: rotate(-45deg);
}

.np-cta-band {
  margin-top: 34px;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #07130d;
  color: #ffffff;
}

.np-cta-band .np-cta-copy {
  display: flex;
  align-items: center;
  gap: 18px;
}

.np-cta-band .np-cta-icon {
  font-size: 48px;
  color: #ffffff;
}

.np-cta-band h2 {
  color: #ffffff;
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  line-height: 1.15;
  font-weight: 900;
  margin-bottom: 4px;
}

.np-cta-band p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}
.np-foundation-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #ffffff;
}

.np-foundation-logo svg {
  flex: 0 0 auto;
}

.np-foundation-logo-text {
  display: flex;
  flex-direction: column;
  color: #ffffff;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.social-media-disabled {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.social-media-disabled li {
  opacity: 0.7;
  font-size: 14px;
  font-weight: 800;
}
.social-media-icons {
  align-items: center;
}

.social-media-icons li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  opacity: 0.75;
  pointer-events: none;
}

.social-media-icons img {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* Mega menu and footer use light backgrounds, so white SVG icons must render dark */
.mega-menu .social-media-icons img,
.np-site-footer .social-media-icons img {
  filter: brightness(0);
  opacity: 0.7;
}

/* Footer has a white background, so white SVG icons need to render dark */
.np-site-footer .social-media-icons img {
  filter: brightness(0);
}
.np-support-info,
.np-contact {
  padding: 72px 0 0;
}

.np-support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.np-support-card {
  padding: 28px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(14, 26, 17, 0.08);
  box-shadow: 0 14px 34px rgba(16, 25, 18, 0.08);
}

.np-support-card h3 {
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 10px;
}

.np-support-card p {
  color: #606660;
  font-size: 14px;
  line-height: 1.55;
}

.np-support-card a {
  color: var(--color1b);
  font-weight: 800;
}

.np-contact-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(14, 26, 17, 0.08);
  box-shadow: 0 14px 34px rgba(16, 25, 18, 0.08);
}

@media (max-width: 860px) {
  .np-support-grid {
    grid-template-columns: 1fr;
  }
}
.np-site-footer {
  margin-top: 64px;
  background: #ffffff;
}

@media (max-width: 1280px) {
  .np-donation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .np-help-layout {
    grid-template-columns: 1fr;
  }

  .np-help-items {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .np-help-item:nth-child(3) {
    border-right: 0;
  }
}

@media (max-width: 860px) {
  .np-hero {
    min-height: 620px;
    padding: 130px 0 110px;
    background-position: center center;
  }

  .np-mission-card,
  .np-cta-band,
  .np-cta-band .np-cta-copy {
    align-items: flex-start;
    flex-direction: column;
  }

  .np-notice-card {
    grid-template-columns: 1fr;
  }

  .np-notice-aside {
    border-right: 0;
    border-bottom: 1px solid rgba(15, 25, 18, 0.16);
  }

  .np-cta-band .button {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .np-hero {
    min-height: 590px;
    padding: 124px 0 92px;
  }

  .np-actions,
  .np-actions .button {
    width: 100%;
  }

  .np-actions .button {
    justify-content: center;
  }

  .np-mission {
    margin-top: -46px;
  }

  .np-mission-card {
    padding: 22px;
  }

  .np-donation-grid,
  .np-help-items {
    grid-template-columns: 1fr;
  }

  .np-help-item,
  .np-help-item:nth-child(3) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    padding-bottom: 22px;
  }

  .np-help-item:last-child {
    border-bottom: 0;
  }

  .np-notice-list {
    padding: 24px;
  }

  .np-allowance-grid,
  .np-flow-allowance .np-allowance-grid,
  .np-provider-options {
    grid-template-columns: 1fr;
  }

  .np-donation-flow-overlay {
    padding: 18px;
  }

  .np-donation-flow-dialog {
    max-height: calc(100vh - 36px);
    padding: 28px 22px 22px;
  }

  .np-donation-flow-dialog h2 {
    font-size: 1.3rem;
  }

  .np-flow-otp-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .np-donation-confirmation-overlay {
    padding: 18px;
  }

  .np-donation-confirmation-dialog {
    padding: 28px 22px 22px;
  }

  .np-donation-confirmation-dialog h2 {
    font-size: 1.3rem;
  }
}
