:root {
  --green: #92e3a9;
  --green-strong: #6fcf8d;
  --ink: #263238;
  --gray: #eaeaea;
  --paper: #fbfcfb;
  --white: #ffffff;
  --ink-soft: #607076;
  --line: rgba(38, 50, 56, 0.16);
  --section-y: clamp(72px, 9vw, 112px);
  --section-x: clamp(20px, 6vw, 84px);
  --radius-sm: 8px;
  --radius-md: 12px;
  --leading-title: 1.04;
  --leading-body: 1.56;
  --shadow: 0 22px 80px rgba(38, 50, 56, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Catamaran", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 300;
  line-height: var(--leading-body);
  overflow-x: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(146, 227, 169, 0.7);
  outline-offset: 3px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px clamp(16px, 4vw, 48px);
  color: var(--white);
  transition:
    background 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease,
    padding 220ms ease;
}

.site-header.scrolled {
  background: rgba(251, 252, 251, 0.9);
  color: var(--ink);
  box-shadow: 0 10px 32px rgba(38, 50, 56, 0.08);
  padding-block: 10px;
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-size: 1.25rem;
  font-weight: 900;
  flex-shrink: 0;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  object-fit: contain;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 24px;
  font-size: 0.98rem;
  font-weight: 500;
}

.header-cta {
  display: none;
  align-items: center;
  flex: 0 0 auto;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.82rem;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: start;
  overflow: hidden;
  background: var(--ink);
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(0.94) contrast(1.02);
  transform: scale(1.04);
  animation: heroZoom 1200ms ease-out both;
}

.hero-shade {
  background:
    linear-gradient(180deg, rgba(38, 50, 56, 0.72) 0%, rgba(38, 50, 56, 0.66) 42%, rgba(38, 50, 56, 0.9) 100%),
    radial-gradient(circle at 22% 22%, rgba(146, 227, 169, 0.22), transparent 36%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, 720px);
  padding: 112px clamp(20px, 5vw, 56px) 34px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-weight: 900;
  line-height: var(--leading-title);
  letter-spacing: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 10.4vw, 4.1rem);
  overflow-wrap: break-word;
  text-wrap: balance;
}

.hero h1 {
  max-width: min(100%, 8.8ch);
  font-size: clamp(2.18rem, 9.2vw, 2.7rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.15rem, 9vw, 5.2rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.55rem;
}

.hero-copy {
  max-width: min(100%, 30ch);
  margin-bottom: 24px;
  font-size: clamp(1.06rem, 4.2vw, 1.45rem);
  font-weight: 500;
}

.store-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: min(100%, 410px);
}

.store-button {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  width: 100%;
  min-width: 0;
  min-height: 62px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--radius-sm);
  padding: 11px 16px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1;
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.store-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.store-button.is-disabled {
  cursor: default;
  opacity: 0.68;
  box-shadow: none;
}

.store-button.is-disabled:hover {
  transform: none;
  box-shadow: none;
}

.store-button small {
  display: block;
  margin-bottom: 4px;
  font-size: 0.72rem;
  font-weight: 500;
}

@media (max-width: 559px) {
  .store-row {
    width: calc(100vw - 64px);
  }
}

.store-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
}

.store-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.section-band,
.audience-panel,
.steps,
.ngo-panel,
.trust-panel,
.contact-panel,
.newsletter-panel,
.faq-panel,
.final-cta {
  padding: var(--section-y) var(--section-x);
}

.intro {
  position: relative;
  display: grid;
  gap: 26px;
  background: var(--white);
  overflow: hidden;
}

.intro::before {
  content: "";
  position: absolute;
  right: -24vw;
  bottom: -18vw;
  width: 82vw;
  max-width: 780px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(146, 227, 169, 0.2);
}

.intro > * {
  position: relative;
}

.intro-mark img {
  width: clamp(86px, 23vw, 150px);
  height: clamp(86px, 23vw, 150px);
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.section-text {
  max-width: 920px;
}

.intro p:last-child,
.ngo-copy p {
  max-width: 760px;
  font-size: clamp(1.15rem, 3vw, 1.52rem);
}

.steps {
  background: var(--gray);
}

.audience-panel {
  display: grid;
  gap: 34px;
  background: var(--paper);
}

.audience-grid {
  display: grid;
  gap: 14px;
}

.audience-grid article,
.trust-list article {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 24px;
  background: var(--white);
}

.audience-grid span {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--green-strong);
  font-size: 0.9rem;
  font-weight: 900;
}

.audience-grid p,
.trust-list p,
.faq-list p,
.form-helper {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1.04rem;
  font-weight: 500;
}

.step-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: rgba(38, 50, 56, 0.12);
}

.step-list article {
  padding: 28px;
  background: var(--paper);
  transition:
    transform 220ms ease,
    background 220ms ease;
}

.step-list article:hover {
  transform: translateX(4px);
  background: var(--white);
}

.step-list span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--green-strong);
  font-size: 0.9rem;
  font-weight: 900;
}

.step-list p,
.request-card span {
  margin-bottom: 0;
  font-size: 1.04rem;
}

.ngo-panel {
  display: grid;
  gap: 46px;
  align-items: center;
  background: var(--ink);
  color: var(--white);
}

.trust-panel {
  display: grid;
  gap: 34px;
  background: var(--white);
}

.trust-copy {
  max-width: 920px;
}

.trust-copy p:last-child {
  max-width: 700px;
  font-size: clamp(1.12rem, 2.7vw, 1.38rem);
}

.trust-list {
  display: grid;
  gap: 14px;
}

.trust-list article {
  background: linear-gradient(180deg, var(--paper) 0%, var(--white) 100%);
}

.contact-panel {
  display: grid;
  gap: 34px;
  background: var(--white);
}

.contact-copy {
  max-width: 840px;
}

.contact-copy p:last-child {
  max-width: 660px;
  font-size: clamp(1.12rem, 2.7vw, 1.38rem);
}

.contact-form {
  display: grid;
  gap: 18px;
  max-width: 820px;
  width: 100%;
}

.field-grid {
  display: grid;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-size: 1.04rem;
  font-weight: 500;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--green-strong);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(146, 227, 169, 0.26);
}

.honeypot {
  display: none;
}

.form-submit {
  justify-self: start;
  min-height: 56px;
  border: 0;
  border-radius: var(--radius-sm);
  padding: 0 24px;
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-size: 1.05rem;
  font-weight: 900;
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.form-submit:hover {
  transform: translateY(-2px);
  background: #11191d;
  box-shadow: 0 16px 40px rgba(38, 50, 56, 0.18);
}

.form-helper {
  max-width: 520px;
}

.newsletter-panel {
  display: grid;
  gap: 28px;
  background:
    radial-gradient(circle at 92% 18%, rgba(146, 227, 169, 0.32), transparent 26%),
    var(--gray);
}

.faq-panel {
  display: grid;
  gap: 34px;
  background: var(--white);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0 20px;
  background: var(--paper);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 0;
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 900;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--green-strong);
  font-size: 1.35rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details[open] {
  background: var(--white);
}

.faq-list p {
  padding-bottom: 20px;
}

.newsletter-copy {
  max-width: 900px;
}

.newsletter-copy p:last-child {
  max-width: 680px;
  font-size: clamp(1.08rem, 2.5vw, 1.34rem);
}

.newsletter-form {
  display: grid;
  gap: 14px;
  width: min(100%, 860px);
  align-items: end;
}

.newsletter-form label {
  display: grid;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 800;
}

.newsletter-form input,
.newsletter-form select {
  min-height: 56px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0 16px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 1.04rem;
  font-weight: 500;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.newsletter-form input:focus,
.newsletter-form select:focus {
  border-color: var(--green-strong);
  box-shadow: 0 0 0 4px rgba(146, 227, 169, 0.26);
}

.phone-shell {
  justify-self: center;
  width: min(100%, 330px);
  min-height: 610px;
  border: 12px solid #11191d;
  border-radius: 42px;
  padding: 16px;
  background: linear-gradient(180deg, #fbfcfb 0%, #eaf8ef 100%);
  color: var(--ink);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.35);
  transform: rotate(-2deg);
}

.phone-status {
  width: 76px;
  height: 6px;
  margin: 0 auto 24px;
  border-radius: 99px;
  background: #11191d;
}

.app-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  font-size: 1.35rem;
  font-weight: 900;
}

.app-top img {
  width: 42px;
  height: 42px;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 12px;
}

.request-card {
  margin-bottom: 14px;
  border: 1px solid rgba(38, 50, 56, 0.08);
  border-radius: var(--radius-sm);
  padding: 18px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(38, 50, 56, 0.1);
}

.request-card strong,
.request-card span {
  display: block;
}

.request-card strong {
  margin-bottom: 6px;
  font-size: 1.05rem;
  font-weight: 900;
}

.request-card.urgent {
  background: var(--green);
}

.request-card.soft {
  background: #f4f5f4;
}

.final-cta {
  display: grid;
  justify-items: start;
  background: var(--green);
}

.final-cta .eyebrow {
  color: var(--ink);
}

.final-cta h2 {
  max-width: 980px;
}

.store-button.light {
  border-color: transparent;
  background: var(--ink);
  color: var(--white);
}

.site-footer {
  display: grid;
  gap: 28px;
  padding: 34px clamp(20px, 6vw, 84px);
  background: var(--ink);
  color: var(--white);
}

.footer-brand,
.footer-social,
.footer-legal {
  display: grid;
  gap: 12px;
}

.footer-brand p,
.footer-social p {
  margin: 0;
  max-width: 360px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
  font-weight: 500;
}

.site-footer .brand {
  width: fit-content;
  font-weight: 800;
}

.site-footer .brand img {
  background: var(--white);
}

.footer-legal {
  align-content: start;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 800;
}

.footer-legal a:hover {
  color: var(--green);
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  background: var(--green);
  color: var(--ink);
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-top {
  width: fit-content;
  color: var(--green);
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
}

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

.legal-main {
  min-height: 100svh;
  padding: 118px clamp(20px, 6vw, 84px) 84px;
  background:
    radial-gradient(circle at 92% 12%, rgba(146, 227, 169, 0.28), transparent 28%),
    var(--paper);
  overflow-x: hidden;
}

.legal-document {
  width: 100%;
  max-width: min(900px, calc(100vw - 40px));
  min-width: 0;
}

.legal-document h1 {
  color: var(--ink);
  font-size: clamp(2.6rem, 8vw, 5rem);
}

.legal-document h2 {
  margin: 44px 0 12px;
  font-size: clamp(1.55rem, 4.8vw, 2.35rem);
}

.legal-document h3 {
  margin: 26px 0 10px;
  font-size: 1.35rem;
}

.legal-document p,
.legal-document li {
  width: 100%;
  max-width: min(780px, 100%);
  font-size: 1.08rem;
  font-weight: 500;
  overflow-wrap: anywhere;
  word-break: normal;
}

.legal-document ul,
.legal-document ol {
  display: grid;
  gap: 10px;
  padding-left: 22px;
}

.legal-document a {
  color: #157a38;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-note {
  max-width: calc(100vw - 40px);
  margin: 28px 0;
  border-left: 6px solid var(--green);
  padding: 18px 22px;
  background: var(--white);
  box-shadow: 0 14px 44px rgba(38, 50, 56, 0.08);
}

.legal-language-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 10px;
}

.legal-language-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border: 1px solid rgba(38, 50, 56, 0.12);
  border-radius: 999px;
  padding: 0 16px;
  background: var(--white);
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.legal-language-nav a:hover {
  background: var(--green);
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
}

.legal-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 18px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none !important;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.legal-actions a:hover {
  transform: translateY(-2px);
}

.legal-button {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white) !important;
}

.legal-button:hover {
  background: #11191d;
  box-shadow: 0 14px 34px rgba(38, 50, 56, 0.16);
}

.legal-link-button {
  background: rgba(146, 227, 169, 0.2);
  border-color: rgba(38, 50, 56, 0.12);
}

.legal-link-button:hover {
  background: var(--green);
  border-color: var(--green);
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroZoom {
  from {
    transform: scale(1.1);
  }
  to {
    transform: scale(1.04);
  }
}

@media (min-width: 560px) {
  .header-cta {
    display: inline-flex;
  }

  .store-row {
    flex-direction: row;
    width: auto;
    flex-wrap: wrap;
  }

  .store-button {
    min-width: 190px;
    width: auto;
  }
}

@media (min-width: 760px) {
  .nav-links {
    display: flex;
  }

  .hero {
    align-items: center;
  }

  .hero-content {
    padding-bottom: 70px;
  }

  h1 {
    font-size: clamp(4rem, 6.3vw, 5.8rem);
  }

  .hero h1 {
    max-width: 680px;
    font-size: clamp(4rem, 6.3vw, 5.8rem);
  }

  .hero-copy {
    max-width: 560px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(38, 50, 56, 0.9) 0%, rgba(38, 50, 56, 0.66) 38%, rgba(38, 50, 56, 0.2) 72%),
      radial-gradient(circle at 22% 22%, rgba(146, 227, 169, 0.26), transparent 34%);
  }

  .intro {
    grid-template-columns: 180px minmax(0, 1.15fr) minmax(280px, 0.85fr);
    align-items: center;
  }

  .step-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .audience-grid,
  .trust-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .step-list article:hover {
    transform: translateY(-4px);
  }

  .ngo-panel {
    grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  }

  .contact-panel {
    grid-template-columns: minmax(0, 0.78fr) minmax(420px, 0.92fr);
    align-items: start;
  }

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

  .newsletter-form {
    grid-template-columns: minmax(260px, 1.1fr) minmax(220px, 0.72fr) auto;
  }

  .site-footer {
    grid-template-columns: minmax(260px, 1fr) minmax(150px, 0.45fr) minmax(280px, 0.8fr) auto;
    align-items: center;
  }

  .footer-top {
    justify-self: end;
  }
}

@media (min-width: 1100px) {
  .hero-media img {
    object-position: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
  }
}
