:root {
  --ink: #272a2f;
  --ink-soft: #61656b;
  --paper: #fffafa;
  --paper-strong: #ffffff;
  --rose: #db858a;
  --rose-deep: #c86f75;
  --rose-soft: #fdebec;
  --rose-wash: #fff3f3;
  --line: rgba(219, 133, 138, 0.24);
  --line-dark: rgba(39, 42, 47, 0.12);
  --shadow: 0 24px 80px rgba(201, 111, 117, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

button,
input,
select {
  font: inherit;
}

.content-wrap {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  width: 100%;
  padding: 16px 0;
}

.nav-shell {
  width: min(1120px, calc(100% - 32px));
  min-height: 64px;
  margin: 0 auto;
  padding: 10px 12px 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  box-shadow: 0 18px 58px rgba(209, 133, 138, 0.14);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  font-weight: 760;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(219, 133, 138, 0.22);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.72);
}

.brand-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 8px;
  color: rgba(39, 42, 47, 0.76);
  font-size: 0.93rem;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.nav-links a:hover {
  background: var(--rose-soft);
  color: var(--ink);
}

.nav-links .nav-cta {
  background: var(--ink);
  color: white;
  box-shadow: 0 12px 30px rgba(39, 42, 47, 0.12);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.section-band {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - 34px);
  padding: 132px 0 42px;
  background:
    radial-gradient(circle at 94% 3%, rgba(219, 133, 138, 0.2), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #fff8f8 64%, #fff0f0 100%);
}

.section-band::before {
  content: "";
  position: absolute;
  inset: auto -8% -26% -8%;
  height: 42%;
  background:
    repeating-linear-gradient(172deg, rgba(219, 133, 138, 0.14) 0 1px, transparent 1px 10px);
  border-radius: 50% 50% 0 0;
  opacity: 0.56;
  transform: rotate(-2deg);
  pointer-events: none;
}

.hero-banner-art {
  position: absolute;
  inset: 0 0 auto auto;
  width: min(1120px, 72vw);
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0.72;
  filter: saturate(1.04);
  pointer-events: none;
}

.section-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 250, 250, 0.98) 0%, rgba(255, 250, 250, 0.9) 38%, rgba(255, 250, 250, 0.42) 64%, rgba(255, 250, 250, 0.1) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 243, 243, 0.62));
  pointer-events: none;
}

#research-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(330px, 0.66fr);
  gap: 48px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--rose-deep);
  font-size: 0.78rem;
  font-weight: 780;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

h1 {
  max-width: 800px;
  margin-bottom: 20px;
  color: var(--ink);
  font-size: clamp(3.05rem, 6.8vw, 5.1rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h1 span {
  color: var(--rose);
}

.hero-lede {
  max-width: 690px;
  margin-bottom: 26px;
  color: var(--ink-soft);
  font-size: clamp(1.04rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 760;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: linear-gradient(135deg, #e79ba0, var(--rose-deep));
  color: white;
  box-shadow: 0 16px 36px rgba(200, 111, 117, 0.26);
}

.button.secondary {
  border-color: rgba(39, 42, 47, 0.14);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
}

.mission-console,
.connect-form {
  border: 1px solid rgba(219, 133, 138, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.mission-console {
  padding: 22px;
}

.console-topline {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  color: rgba(39, 42, 47, 0.62);
  font-size: 0.84rem;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--rose);
  box-shadow: 0 0 20px rgba(219, 133, 138, 0.9);
}

.mission-console h2 {
  margin-bottom: 20px;
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.08;
}

.intent-tabs,
.amount-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.intent-tab,
.amount-grid button {
  min-height: 42px;
  border: 1px solid rgba(219, 133, 138, 0.3);
  border-radius: 8px;
  background: rgba(255, 250, 250, 0.64);
  color: rgba(39, 42, 47, 0.74);
  cursor: pointer;
}

.intent-tab.active,
.amount-grid button.active {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}

.intent-panel {
  margin: 16px 0;
  padding: 16px;
  border: 1px solid rgba(219, 133, 138, 0.22);
  border-radius: 8px;
  background: rgba(255, 248, 248, 0.78);
}

.intent-kicker {
  margin-bottom: 7px;
  color: var(--rose-deep);
  font-weight: 760;
}

.intent-copy {
  color: var(--ink-soft);
}

.impact-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(219, 133, 138, 0.18);
  color: rgba(39, 42, 47, 0.62);
}

.impact-row strong {
  color: var(--ink);
  text-align: right;
}

.amount-grid {
  grid-template-columns: repeat(4, 1fr);
}

.feature-strip {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.metrics div {
  padding: 26px;
  background: #fff;
}

.metrics strong {
  display: block;
  margin-bottom: 8px;
  color: var(--rose-deep);
  font-size: 1.2rem;
}

.metrics span {
  color: var(--ink-soft);
}

.section-block {
  padding: 102px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-heading h2,
.connect-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-heading p,
.connect-copy p {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.feature-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feature-card,
.testimonial {
  min-height: 280px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 42px rgba(201, 111, 117, 0.08);
}

.feature-index {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 62px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--rose-deep);
  font-weight: 800;
  background: var(--rose-wash);
}

.feature-card h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.feature-card p,
.testimonial blockquote {
  color: var(--ink-soft);
}

.testimony-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 10%, rgba(219, 133, 138, 0.16), transparent 28%),
    linear-gradient(180deg, #fff 0%, #fff4f4 100%);
}

.testimony-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(219, 133, 138, 0.3) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.16;
  pointer-events: none;
}

.testimony-band .content-wrap {
  position: relative;
}

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

.testimonial {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.74);
}

.testimonial blockquote {
  margin: 0 0 32px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.testimonial figcaption {
  display: grid;
  gap: 2px;
}

.testimonial figcaption span {
  color: rgba(39, 42, 47, 0.55);
}

.connect-section {
  background:
    linear-gradient(90deg, rgba(219, 133, 138, 0.08), transparent 44%),
    var(--paper);
}

.connect-grid {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: 52px;
  align-items: start;
}

.connect-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  background: #fff;
  border-color: var(--line);
}

.connect-form label {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 720;
}

.connect-form input,
.connect-form select {
  width: 100%;
  min-height: 48px;
  padding: 0 12px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: white;
  color: var(--ink);
}

.connect-form input:focus,
.connect-form select:focus {
  outline: 3px solid rgba(219, 133, 138, 0.2);
  border-color: var(--rose);
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.site-footer {
  padding: 44px 0;
  background: #121315;
  color: #fff;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 32px;
}

.footer-brand .brand-mark {
  background: #000;
  border-color: rgba(255, 255, 255, 0.1);
}

.footer-grid p {
  max-width: 420px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.62);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: start;
  justify-content: flex-end;
}

.footer-links a {
  padding: 10px 12px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-links a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.legal-page {
  background:
    radial-gradient(circle at 90% 0%, rgba(219, 133, 138, 0.18), transparent 24%),
    var(--paper);
}

.legal-hero {
  padding: 150px 0 44px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 243, 243, 0.7)),
    var(--paper);
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  max-width: 780px;
  margin-bottom: 14px;
  font-size: clamp(2.8rem, 7vw, 5rem);
}

.legal-hero p:not(.eyebrow) {
  color: var(--ink-soft);
}

.legal-content {
  max-width: 820px;
  padding: 64px 0 96px;
}

.legal-content h2 {
  margin: 38px 0 10px;
  font-size: 1.25rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: var(--ink-soft);
}

.legal-content a {
  color: var(--rose-deep);
  font-weight: 760;
}

.legal-nav {
  display: flex;
}

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

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

@media (max-width: 920px) {
  .hero-grid,
  .connect-grid {
    grid-template-columns: 1fr;
  }

  .hero-banner-art {
    width: 100%;
    opacity: 0.4;
  }

  .section-band::after {
    background:
      linear-gradient(180deg, rgba(255, 250, 250, 0.94), rgba(255, 250, 250, 0.86)),
      linear-gradient(90deg, rgba(255, 250, 250, 0.98), rgba(255, 250, 250, 0.58));
  }

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

  .testimonial-grid,
  .metrics {
    grid-template-columns: 1fr;
  }

  .feature-index {
    margin-bottom: 36px;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 10px 0;
  }

  .nav-shell {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .brand {
    max-width: calc(100% - 54px);
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding-top: 12px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
  }

  .section-band {
    min-height: calc(100svh - 30px);
    padding: 112px 0 28px;
  }

  .hero-banner-art {
    object-position: 66% center;
    opacity: 0.28;
  }

  h1 {
    margin-bottom: 16px;
    font-size: clamp(2.45rem, 11vw, 3.22rem);
    line-height: 0.98;
  }

  .hero-grid {
    gap: 24px;
  }

  .hero-lede {
    margin-bottom: 18px;
    font-size: 1rem;
  }

  .hero-actions {
    flex-wrap: nowrap;
  }

  .hero-actions .button {
    flex: 1;
    min-width: 0;
    padding-inline: 12px;
    text-align: center;
  }

  .mission-console {
    display: none;
  }

  .feature-card,
  .testimonial,
  .connect-form {
    padding: 18px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

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

  .section-block {
    padding: 78px 0;
  }

  .footer-grid {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .legal-hero {
    padding-top: 122px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}
