@font-face {
  font-family: Nunito;
  src: url('/assets/nunito.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: Lora;
  src: url('/assets/lora.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
}
:root {
  --ink: #29483e;
  --muted: #62786c;
  --paper: #faf8ef;
  --green: #345e4c;
  --sage: #e9eddd;
  --peach: #f7e5d3;
  --orange: #d78c57;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Nunito, system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.65;
}
a {
  color: inherit;
  text-underline-offset: 5px;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 5px;
}
img {
  max-width: 100%;
  height: auto;
}
h1,
h2,
h3 {
  font-family: Lora, Georgia, serif;
  font-weight: 500;
  line-height: 1.16;
  margin: 0;
}
h1 {
  font-size: clamp(44px, 5.5vw, 76px);
  letter-spacing: -2.4px;
}
h2 {
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -1.2px;
}
h3 {
  font-size: 26px;
}
p {
  margin: 18px 0;
}
.wrap {
  max-width: 1160px;
  padding: 0 28px;
  margin: 0 auto;
}
.nav {
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  font:
    500 24px Lora,
    Georgia,
    serif;
  white-space: nowrap;
}
.brand img {
  width: 45px;
  height: 45px;
  border-radius: 14px;
}
.navlinks {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 15px;
}
.navlinks a {
  text-decoration: none;
}
.navlinks a:hover {
  text-decoration: underline;
}
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  border-radius: 99px;
  padding: 10px 23px;
  background: var(--green);
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
}
.pill:hover {
  background: #264a3a;
}
.pill.light {
  background: var(--sage);
  color: var(--ink);
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 2.4px;
  font-weight: bold;
  text-transform: uppercase;
}
.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 65px;
  align-items: center;
  padding: 64px 0 96px;
}
.hero .eyebrow {
  color: var(--muted);
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: normal;
  color: var(--orange);
}
.lede {
  font-size: 20px;
  color: var(--muted);
  max-width: 460px;
  margin: 25px 0 30px;
}
.heroactions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.availability {
  font-size: 13px;
  color: var(--muted);
  margin-top: 22px;
}
.art {
  position: relative;
  padding: 20px 5px;
}
.art > img {
  display: block;
  transform: rotate(2deg);
  border-radius: 45px;
}
.bubble {
  position: absolute;
  background: white;
  border: 1px solid #e6e9da;
  border-radius: 21px;
  box-shadow: 0 14px 28px #2846390a;
  padding: 14px 20px;
  font-size: 15px;
  line-height: 1.4;
  max-width: 255px;
}
.bubble span {
  display: block;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 5px;
}
.bubble.ask {
  top: 45px;
  left: -34px;
  transform: rotate(-4deg);
}
.bubble.answer {
  bottom: 3px;
  right: -20px;
  transform: rotate(2deg);
}
.strip {
  display: flex;
  justify-content: center;
  gap: 45px;
  flex-wrap: wrap;
  padding: 22px;
  border-top: 1px solid #e2e6d8;
  border-bottom: 1px solid #e2e6d8;
  font-size: 14px;
  color: var(--muted);
}
.strip span:before {
  content: '✧';
  color: var(--orange);
  margin-right: 10px;
}
.section {
  padding: 88px 0;
}
.intro {
  max-width: 660px;
  margin: 0 auto 43px;
  text-align: center;
}
.intro p {
  color: var(--muted);
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  padding: 32px;
  border-radius: 28px;
  background: var(--sage);
}
.card:nth-child(2) {
  background: var(--peach);
}
.card:nth-child(3) {
  background: #e3edeb;
}
.card .symbol {
  display: block;
  font-size: 36px;
  color: var(--green);
  margin-bottom: 22px;
}
.card p {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 0;
}
.together {
  background: var(--green);
  color: var(--paper);
  border-radius: 40px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  padding: 55px;
  margin: 0 auto;
}
.together .eyebrow {
  color: #eacd98;
}
.together p {
  color: #e1e9dc;
  font-size: 17px;
}
.steps {
  list-style: none;
  counter-reset: steps;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 25px;
}
.steps li {
  counter-increment: steps;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  font-size: 16px;
}
.steps li:before {
  content: counter(steps);
  background: #ffffff16;
  border: 1px solid #ffffff33;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  text-align: center;
  line-height: 36px;
}
.steps strong {
  display: block;
  font-size: 18px;
}
.steps p {
  margin: 3px 0;
  font-size: 15px;
}
.faq {
  max-width: 760px;
  margin: 0 auto;
}
details {
  border-bottom: 1px solid #dde3d6;
  padding: 21px 0;
}
summary {
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
summary:after {
  content: '+';
  color: var(--orange);
  font-size: 25px;
}
details[open] summary:after {
  content: '−';
}
details p {
  font-size: 16px;
  color: var(--muted);
}
.closing {
  text-align: center;
  padding: 0 20px 82px;
}
.closing img {
  width: 68px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.closing p {
  color: var(--muted);
}
footer {
  border-top: 1px solid #e2e6d8;
  padding: 32px 0 40px;
  font-size: 13px;
  color: var(--muted);
}
.footrow {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}
.footlinks {
  display: flex;
  gap: 24px;
}
.legal {
  max-width: 760px;
  margin: 45px auto 100px;
}
.legal h1 {
  font-size: 48px;
}
.legal h2 {
  font-size: 26px;
  letter-spacing: 0;
  margin-top: 38px;
}
.legal p {
  font-size: 17px;
  color: var(--muted);
}
.legal a {
  overflow-wrap: anywhere;
}
.skip {
  position: absolute;
  left: 12px;
  top: -90px;
  padding: 12px;
  background: white;
  z-index: 10;
}
.skip:focus {
  top: 8px;
}
@media (max-width: 760px) {
  .wrap {
    padding: 0 22px;
  }
  .nav {
    height: 84px;
  }
  .brand {
    font-size: 20px;
    gap: 8px;
  }
  .brand img {
    width: 38px;
    height: 38px;
  }
  .navlinks a:not(:last-child) {
    display: none;
  }
  .navlinks {
    gap: 0;
  }
  .navlinks .pill {
    font-size: 13px;
    min-height: 42px;
    padding: 8px 16px;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 35px 0 55px;
  }
  .hero h1 {
    max-width: 520px;
    letter-spacing: -1.5px;
  }
  .lede {
    font-size: 18px;
    margin: 20px 0 25px;
  }
  .art {
    max-width: 440px;
    width: 100%;
    margin: auto;
    padding: 30px 15px 20px;
  }
  .bubble.ask {
    left: 0;
    top: 40px;
  }
  .bubble.answer {
    right: 0;
    bottom: 5px;
  }
  .bubble {
    font-size: 13px;
    max-width: 220px;
    padding: 12px 16px;
  }
  .strip {
    gap: 12px 22px;
    padding: 20px 0;
    font-size: 12px;
  }
  .section {
    padding: 60px 0;
  }
  .cards {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .card {
    padding: 26px;
  }
  .card .symbol {
    margin-bottom: 14px;
  }
  .together {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 30px;
    border-radius: 28px;
  }
  .intro {
    text-align: left;
    margin-bottom: 28px;
  }
  .footrow {
    align-items: flex-start;
    flex-direction: column;
  }
  .footlinks {
    flex-wrap: wrap;
  }
  .legal {
    margin: 25px auto 60px;
  }
  .legal h1 {
    font-size: 38px;
  }
  .closing {
    padding-bottom: 60px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

@media(max-width:760px){.nav{gap:12px}.navlinks .pill{white-space:nowrap;font-size:12px;padding:8px 12px}}
