@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/5664085/f9c5199e-a996-4c08-9042-1eb845bb7495.woff2') format('woff2'),
    url('../fonts/5664085/2a34f1f8-d701-4949-b12d-133c1c2636eb.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/5664093/08b57253-2e0d-4c12-9c57-107f6c67bc49.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeue-Medium.woff2') format('woff2'),
    url('../fonts/HelveticaNeue-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/helveticaneueltstd-bd-webfont.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ---------- Vars ---------- */
:root {
  --white: #ffffff;
  --black: #1e1e1e;
  --grey: #646464;
  --purple: #6e298d;
  --purple-10: #f0eaf4;
  --purple-20: #e2d4e8;
  --grey-mid: #757575;
  --grey-light: #cccccc;
  --scrim: rgba(0, 0, 0, .4);
  --scrim-soft: rgba(0, 0, 0, .3);
  --blue: #a5d1f4;
  --purple-dark: #57206f;
  --error: #FF0000;
  --error-bg: #FFF6F6;

  --font-body: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-hand: 'Reenie Beanie', cursive;

  --fs-header-lg: 88px;
  --lh-header-lg: 92px;
  --fs-header-md: 48px;
  --lh-header-md: 52px;
  --ls-header-md: -0.96px;
  --fs-header-ms: 32px;
  --lh-header-ms: 36px;
  --ls-header-ms: -0.64px;
  --fs-header-sm: 24px;
  --lh-header-sm: 32px;
  --ls-header-sm: -0.24px;
  --fs-body-lg: 18px;
  --lh-body-lg: 26px;
  --fs-body: 16px;
  --lh-body: 24px;
  --fs-hand: 50px;
  --lh-hand: 40px;
  --ls-hand: -1px;
  --fs-caption: 12px;
  --lh-caption: 12px;

  --hero-bg:
    url('../assets/img/gradient.webp') center top / cover no-repeat,
    radial-gradient(55% 65% at 100% 62%, rgba(206, 92, 235, .55) 0%, rgba(206, 92, 235, 0) 62%),
    radial-gradient(70% 90% at 8% 0%, #ffffff 0%, #f8f3fa 42%, #ede1f3 100%);

  --grid-2-gap: 120px;
  --copy-measure: 42%;
  --container: 1440px;
  --gutter: clamp(24px, 17.8vw - 136px, 120px);
  --section-y: clamp(40px, 5.33vw, 64px);
  --radius: 2px;
  --duration: 300ms;
}

/* ---------- Reset ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

html {
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--black);
  background: var(--white);
}

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

h1, h2, h3, h4, p, ul, ol, figure, blockquote {
  margin: 0;
}

p {
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  font-weight: 400;
}

button {
  font: inherit;
  color: inherit;
}

a {
  color: inherit;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 200;
  background: var(--purple);
  color: var(--white);
  padding: 10px 16px;
  font-size: 14px;
  transition: top var(--duration);
}

.skip-link:focus {
  top: 16px;
}

:where(a, button, input, textarea, [tabindex]):focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 2px;
}

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

.section {
  padding: var(--section-y) 0;
}

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

.h2 {
  font-size: var(--fs-header-md);
  line-height: var(--lh-header-md);
  letter-spacing: var(--ls-header-md);
  font-weight: 300;
  color: var(--purple);
  margin-bottom: 24px;
}

.h3 {
  font-size: var(--fs-header-sm);
  line-height: var(--lh-header-sm);
  font-weight: 500;
  color: var(--purple);
}

.color-purple {
  color: var(--purple);
}

.color-white {
  color: var(--white);
}

.prose p {
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}

.prose p+p {
  margin-top: 16px;
}

.prose--lg p {
  font-size: var(--fs-body-lg);
  line-height: var(--lh-body-lg);
}

.hand {
  font-family: var(--font-hand);
  font-weight: 500;
  -webkit-text-stroke: 0.75px currentColor;
}

.show-mobile {
  display: none;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: var(--fs-body);
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color var(--duration), color var(--duration), border-color var(--duration);
}

.btn--primary {
  background: var(--purple);
  color: var(--white);
}

.btn:hover {
  background: var(--blue);
  color: var(--black);
}

.btn--white {
  padding: 16px 20px;
  gap: 10px;
  background: var(--white);
  color: var(--black);
  text-align: center;
  font-size: 16px;
  line-height: 16px;
  font-weight: 700;
}

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

.link {
  color: var(--purple);
  text-decoration: underline;
}

.link:hover {
  text-decoration: none;
}

/* =========================================================================
   HEADER
   ========================================================================= */
.site-header {
  background: var(--white);
  padding: 20px 0;
}

.site-header__inner {
  display: flex;
  align-items: center;
}

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
  position: relative;
  background: var(--hero-bg);
}

.hero__inner {
  position: relative;
  padding-top: 64px;
  padding-bottom: 64px;
}

.hero__copy {
  max-width: var(--copy-measure);
}

.hero__title {
  font-size: var(--fs-header-ms);
  line-height: var(--lh-header-ms);
  letter-spacing: var(--ls-header-ms);
  font-weight: 500;
  color: var(--purple);
}

.hero__title .hand {
  font-size: var(--fs-hand);
  line-height: var(--lh-hand);
  letter-spacing: var(--ls-hand);
  display: inline-block;
}

.sticky-zone {
  position: relative;
}

.form-rail {
  position: absolute;
  top: 64px;
  bottom: 0;
  right: calc(max(0px, 100% - var(--container)) / 2 + var(--gutter));
  width: min(590px, 45%);
  z-index: 3;
  pointer-events: none;
}

.form-card {
  background: var(--purple-10);
  padding: 24px 24px 40px 24px;
  box-shadow: 0 4px 9.3px 0 rgba(110, 41, 141, .19);
  position: sticky;
  top: 24px;
  pointer-events: auto;
}

.form-card__title {
  font-size: var(--fs-header-sm);
  line-height: var(--lh-header-sm);
  letter-spacing: var(--ls-header-sm);
  font-weight: 700;
  text-align: center;
  color: var(--purple);
  margin-bottom: 40px;
}

.form-card.has-thanks {
  padding: 0;
}

.form-card__thanks {
  position: relative;
  background: var(--purple);
  color: var(--white);
  padding: 48px 75px;
  text-align: center;
}

.form-card__thanks:focus {
  outline: none;
}

.form-card__thanks-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: var(--white);
}

.form-card__thanks-close svg {
  width: 100%;
  height: 100%;
}

.form-card__thanks-title {
  color: var(--purple-10);
  font-weight: 500;
  font-size: 96px;
  line-height: 72px;
  letter-spacing: -1.92px;
  margin-bottom: 40px;
}

.form-card__thanks-body p {
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}

.form-card__thanks-body p+p {
  margin-top: 16px;
}

.form-card__thanks .btn {
  margin-top: 28px;
}

.form-card__legal {
  font-size: var(--fs-caption);
  line-height: 16px;
  font-weight: 400;
  color: var(--grey);
  margin-top: 16px;
}

/* ---------- Note cards ---------- */
.note-card {
  position: relative;
  padding: 28px 32px;
}

.note-card__text {
  font-family: var(--font-hand);
  font-weight: 400;
  font-size: var(--fs-header-sm);
  line-height: var(--lh-header-sm);
  color: var(--purple);
}

.note-card__author {
  font-family: var(--font-hand);
  font-weight: 400;
  font-size: var(--fs-header-sm);
  line-height: var(--lh-header-sm);
  color: var(--purple);
  margin-top: 12px;
}

.note-card--tilted {
  margin-top: 21px;
  margin-left: 24px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 320px;
  min-height: 172.804px;
  padding: 29.852px;
  background: var(--white);
  transform: rotate(-5.77deg);
  box-shadow: 0 2.985px 2.985px 0 rgba(0, 0, 0, .19);
  text-align: center;
}

.note-card--tilted .note-card__text,
.note-card--tilted .note-card__author {
  font-size: var(--fs-header-sm);
  line-height: 24px;
  font-weight: 500;
  -webkit-text-stroke: 0.37px var(--purple);
}

.note-card--tilted .note-card__author {
  margin-top: 4px;
}

.note-card--flat {
  background: var(--purple-10);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.19);
}

.note-card--flat .note-card__text,
.note-card--flat .note-card__author,
.note-card--photo .note-card__text,
.note-card--photo .note-card__author {
  font-size: 32px;
  line-height: 34px;
  font-weight: 500;
  color: var(--purple);
  text-align: center;
  -webkit-text-stroke: 0.5px var(--purple);
}

.note-card--photo {
  overflow: hidden;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.19);
}

.note-card--photo .note-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.note-card--photo .note-card__text,
.note-card--photo .note-card__author {
  position: relative;
  z-index: 2;
  color: var(--white);
  -webkit-text-stroke-color: var(--white);
}

/* =========================================================================
   SECTIONS
   ========================================================================= */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--grid-2-gap);
}

.section--bigger {
  padding-top: var(--section-y);
}

.section--bigger .grid-2 {
  grid-template-columns: minmax(0, var(--copy-measure)) minmax(0, 1fr);
}

.tips {
  list-style: none;
  padding: 0;
  margin-top: 24px;
  display: grid;
  gap: 14px;
}

.tips li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  align-items: center;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}

.tips__num {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  aspect-ratio: 1 / 1;
  padding: 0 8px 2px;
  border-radius: 24px;
  background: var(--purple-20);
  color: var(--black);
  text-align: center;
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
}

/* ---------- Hope is powerful ---------- */
.section--powerful .section__head {
  max-width: 590px;
  margin: 0 auto 40px;
}

.notes__track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 387px));
  justify-content: center;
  gap: 20px;
  align-items: stretch;
}

.notes__track .note-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 359px;
  text-align: center;
}

.notes__dots {
  display: none;
}

/* ---------- After you share ---------- */
.grid-2--media {
  align-items: center;
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Where hope leads ---------- */
.section-cta {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background: var(--black);
  margin-top: var(--section-y);
}

.section-cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.section-cta__inner {
  position: relative;
  z-index: 2;
}

.section-cta__inner .h2 {
  max-width: 20em;
}

.section-cta__copy {
  color: var(--white);
  font-size: var(--fs-body-lg);
  line-height: var(--lh-body-lg);
  margin: 20px 0 28px;
  max-width: 34em;
}

/* =========================================================================
   FORM
   ========================================================================= */
.field {
  margin-bottom: 24px;
}

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

.field__label {
  display: block;
  font-size: var(--fs-body);
  line-height: 16px;
  font-weight: 400;
  color: var(--purple);
  margin-bottom: 12px;
}

.field__note {
  font-size: var(--fs-caption);
  line-height: 16px;
  font-weight: 400;
  color: var(--grey);
  margin: 0 0 12px;
}

.field__input {
  width: 100%;
  padding: 16px 20px;
  font-family: inherit;
  font-size: var(--fs-body);
  line-height: 16px;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius);
  transition: border-color var(--duration), background-color var(--duration);
  height: 48px;
}

.field__input:focus,
.field__input:focus-visible {
  outline: none;
  border-color: var(--purple);
}

.field__input::placeholder {
  color: var(--grey-mid);
}

.field__input--textarea {
  resize: none;
  min-height: 128px;
  line-height: var(--lh-body);
}

.field__input.is-invalid {
  border-color: var(--error);
  background: var(--error-bg);
}

.field__input.is-invalid::placeholder {
  color: var(--error);
}

.char-count {
  font-family: var(--font-body);
  font-size: var(--fs-caption);
  line-height: var(--lh-caption);
  font-weight: 400;
  color: var(--grey);
  margin-top: 6px;
}

.field__help {
  font-size: 11px;
  color: var(--grey);
  margin-top: 6px;
}

.form-error {
  font-size: 13px;
  color: var(--error);
  margin-top: 14px;
}

/* ---------- Tooltip ---------- */
.tooltip {
  position: relative;
  margin-top: 8px;
  padding-bottom: 8px;
}

.tooltip__trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: var(--grey);
}

.tooltip__icon {
  flex: none;
  width: 12px;
  height: 12px;
}

.tooltip__label {
  font-family: var(--font-body);
  font-size: var(--fs-caption);
  line-height: var(--lh-caption);
  font-weight: 400;
  color: var(--grey);
}

.tooltip__bubble {
  position: absolute;
  z-index: 5;
  top: calc(100% - 4px);
  left: 0;
  width: 70%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 13px;
  padding: 12px 16px 16px;
  background: var(--purple-20);
  color: var(--purple);
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
}

.tooltip__bubble[hidden] {
  display: none;
}

/* ---------- Checkbox ---------- */
.field--check {
  margin-bottom: 24px;
}

.checkbox {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.checkbox input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.checkbox__box {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  background: var(--white);
  border: 2px solid var(--grey-light);
  position: relative;
}

.checkbox input:checked+.checkbox__box {
  background: var(--purple);
  border-color: var(--purple);
}

.checkbox input:checked+.checkbox__box::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='11' viewBox='0 0 13 11' fill='none'%3E%3Cpath d='M4.27372 10.0704L0 5.79669L1.84412 3.95257L4.27372 6.38216L10.6559 0L12.5 1.84412L4.27372 10.0704Z' fill='white'/%3E%3C/svg%3E") no-repeat center;
}

.checkbox input:focus-visible+.checkbox__box {
  outline: 2px solid var(--purple);
  outline-offset: 2px;
}

.checkbox__label {
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  font-weight: 400;
  color: var(--grey);
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer {
  background: var(--purple-20);
  padding: 40px 0;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.site-footer p {
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}

.site-footer .link {
  text-underline-offset: 4px;
  transition: color var(--duration);
}

.site-footer .link:hover {
  color: var(--black);
}

.site-footer__grid .link {
  color: var(--purple);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  font-weight: 400;
}

.site-footer__brand .logo {
  margin-bottom: 24px;
  display: block;
  width: 127px;
}

.site-footer__support .btn {
  margin-top: 14px;
}

.socials {
  list-style: none;
  display: flex;
  gap: 10px;
  padding: 0;
  margin-bottom: 16px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--purple);
  transition: background-color var(--duration), color var(--duration);
}

.socials a:hover {
  background: var(--purple);
  color: var(--white);
}

.socials svg {
  width: 34px;
  height: 34px;
}

.socials svg circle {
  stroke: var(--purple);
}

.site-footer__legal {
  margin-top: 40px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: var(--purple);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.site-footer__legal a {
  text-decoration: none;
}

.site-footer__sep {
  color: var(--purple);
}

/* =========================================================================
   FLOATING CTA
   ========================================================================= */

.float-btn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  display: inline-flex;
  flex-direction: row-reverse;
  align-items: center;
  padding: 0;
  background: none;
  color: var(--white);
  border: 0;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--duration), visibility var(--duration);
}

.float-btn.is-visible {
  opacity: 1;
  visibility: visible;
}

.float-btn__icon {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  color: var(--black);
  transition: color var(--duration);
}

.float-btn__label {
  white-space: nowrap;
  border-radius: 18px;
  background: var(--purple-10);
  box-shadow: 0 1px 5px 0 rgba(110, 41, 141, .19);
  color: #000;
  text-align: center;
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  margin-right: 0;
  padding: 2px 0;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-width var(--duration), opacity var(--duration), padding var(--duration), margin var(--duration);
}

.float-btn:hover .float-btn__icon,
.float-btn:focus-visible .float-btn__icon {
  color: var(--purple);
}

.float-btn:hover .float-btn__label,
.float-btn:focus-visible .float-btn__label {
  max-width: 220px;
  margin-right: 10px;
  padding: 2px 10px;
  opacity: 1;
}

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1164px) {
  :root {
    --grid-2-gap: 40px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  :root {
    --fs-header-lg: 56px;
    --lh-header-lg: 56px;

    --fs-header-md: 40px;
    --lh-header-md: 44px;
    --ls-header-md: -0.8px;

    --fs-header-ms: 28px;
    --lh-header-ms: 32px;
    --ls-header-ms: -0.28px;

    --fs-hand: 52px;
    --lh-hand: 43px;
    --ls-hand: -1.04px;

    --gutter: 16px;
    --copy-measure: 100%;

    --peek: 60px;
    --note-gap: 8px;
    --note-card-w: calc((100vw - var(--gutter) - var(--peek) - var(--note-gap)) / 2);
    --hero-overlap: 284px;
  }

  .site-header .logo img {
    width: 77px;
  }

  .note-card--flat .note-card__text,
  .note-card--flat .note-card__author,
  .note-card--photo .note-card__text,
  .note-card--photo .note-card__author {
    font-family: var(--font-hand);
    font-size: 24px;
    line-height: 24px;
    font-weight: 500;
    color: var(--purple);
    text-align: center;
    -webkit-text-stroke: 0.35px var(--purple);
  }

  .note-card--photo .note-card__text,
  .note-card--photo .note-card__author {
    color: var(--white);
    -webkit-text-stroke-color: var(--white);
  }

  .tips__num {
    padding: 0 0 1px;
  }

  .form-card__title {
    font-size: 20px;
    line-height: 28px;
    letter-spacing: normal;
    margin-bottom: 24px;
  }

  .note-card--tilted {
    display: none;
  }

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

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .show-desktop {
    display: none;
  }

  .show-mobile {
    display: inline;
  }

  .hero {
    padding-bottom: 0;
  }

  .hero__inner {
    padding-top: 40px;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: calc(var(--hero-overlap));
  }

  .hero__copy {
    max-width: none;
    padding: 0 var(--gutter);
  }

  .form-rail {
    position: relative;
    z-index: 2;
    width: auto;
    top: auto;
    right: auto;
    bottom: auto;
    margin-top: calc(( var(--hero-overlap) - 32px ) * -1);
    padding: 0 var(--gutter) 40px;
    pointer-events: auto;
  }

  .form-card {
    position: static;
    width: auto;
    max-width: 100%;
    padding: 24px 20px;
  }

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

  .section--powerful .section__head {
    max-width: none;
    text-align: left;
  }

  .section--powerful .h2,
  .section--powerful .prose {
    text-align: left;
  }

  .notes {
    position: relative;
    margin-left: calc(var(--gutter) * -1);
    margin-right: calc(var(--gutter) * -1);
  }

  .notes__track {
    display: flex;
    justify-content: flex-start;
    gap: var(--note-gap);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-left: var(--gutter);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 var(--gutter) 4px;
  }

  .notes__track::-webkit-scrollbar {
    display: none;
  }

  .notes__track .note-card {
    flex: 0 0 var(--note-card-w);
    height: auto;
    aspect-ratio: 237 / 215;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .notes__dots {
    display: flex;
    justify-content: center;
    margin-top: 16px;
  }

  .notes__dots button {
    box-sizing: content-box;
    width: 12px;
    height: 12px;
    padding: 8px;
    border: 0;
    border-radius: 50%;
    background: var(--grey-light);
    background-clip: content-box;
    cursor: pointer;
    transition: background-color var(--duration);
  }

  .notes__dots button.is-active {
    background: var(--black);
    background-clip: content-box;
  }

  .site-footer__legal {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .site-footer__sep {
    display: none;
  }

  .section-cta {
    padding: 60px 0;
  }

  .float-btn {
    right: 16px;
    bottom: 20px;
  }

  .form-card__thanks {
    padding: 40px 24px;
  }

  .form-card__thanks-title {
    font-size: 66px;
    line-height: 52px;
    letter-spacing: -1.32px;
  }
  .tooltip__bubble {
    width: 87%;
  }
  .tooltip {
    margin-bottom: 0;
  }
  .field__input--textarea {
    min-height: 152px;
  }
  .field__note {
    margin-bottom: 8px;
  }
  .form-card__legal {
    margin-top: 24px;
  }
  .site-footer .logo img {
    width: 114px;
  }
}

@media (max-width: 600px) {
  :root {
    --note-card-w: calc(100vw - var(--gutter) - var(--peek));
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
