:root {
  --white: #ffffff;
  --ink: #171717;
  --muted: #67616a;
  --line: rgba(23, 23, 23, 0.10);

  --lavender: rgba(239, 232, 255, 0.72);
  --lavender-strong: #b994f6;

  --blue: rgba(226, 239, 255, 0.72);
  --green: rgba(229, 246, 220, 0.72);
  --yellow: rgba(255, 244, 207, 0.76);
  --pink: rgba(255, 229, 235, 0.72);
  --peach: rgba(255, 236, 221, 0.76);

  --max: 1160px;
  --radius: 26px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  width: 100%;
  overflow-x: hidden;

  color: var(--ink);
  background: var(--white);

  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "SF Pro Display",
    "Helvetica Neue",
    Arial,
    sans-serif;

  line-height: 1.55;
}

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

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

.site-header,
.page-shell,
.site-footer {
  width: min(calc(100% - 32px), var(--max));
  margin-inline: auto;
}

/* HEADER */

.site-header {
  min-height: 78px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 24px;
}

.logo {
  font-size: 1.55rem;
  font-weight: 850;
  letter-spacing: -0.05em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;

  font-size: 0.95rem;
}

.nav a {
  color: #3f3b41;
}

.nav a:hover {
  color: var(--ink);
}

.lang {
  padding: 7px 11px;

  border: 1px solid var(--line);
  border-radius: 999px;
}

/* TYPOGRAPHY */

.eyebrow {
  margin: 0 0 16px;

  color: var(--lavender-strong);

  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 650px;
  margin-bottom: 24px;

  font-size: clamp(3.8rem, 7vw, 6.8rem);
  line-height: 0.96;
  letter-spacing: -0.07em;
}

h1 span {
  display: block;
  color: #8d8d93;
}

h2 {
  margin-bottom: 18px;

  font-size: clamp(2.1rem, 4.6vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

h3 {
  margin-bottom: 8px;

  font-size: 1.22rem;
  letter-spacing: -0.025em;
}

.hero-copy,
.section-copy,
.legal p {
  color: var(--muted);
  font-size: 1.06rem;
}

/* HERO */

.hero {
  min-height: 680px;
  padding: 62px 0 56px;

  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;

  gap: 58px;
}

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

.actions {
  margin-top: 30px;

  display: flex;
  flex-wrap: wrap;

  gap: 12px;
}

.button {
  min-height: 50px;
  padding: 13px 20px;

  border-radius: 14px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-weight: 760;
}

.button-primary {
  background: #000000;
  color: #ffffff;
}

.button-secondary {
  border: 1px solid var(--line);
}

.hero-art {
  min-height: 430px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
}

.hero-black {
  width: 340px !important;
  max-width: 52vw !important;

  height: 390px !important;
  max-height: 390px !important;

  object-fit: contain !important;

  filter:
    drop-shadow(
      0 20px 28px rgba(0, 0, 0, 0.11)
    );
}

/* GENERAL SECTIONS */

.section {
  padding: 88px 0;
}

/* PRIVACY BANNER */

.privacy-band {
  min-height: 230px;
  padding: 30px 40px;

  border-radius: 30px;

  background:
    linear-gradient(
      90deg,
      rgba(245, 240, 255, 0.88),
      rgba(239, 232, 255, 0.48)
    );

  display: grid;
  grid-template-columns: 1fr 0.55fr;
  align-items: center;

  gap: 28px;

  overflow: hidden;
}

.check-list {
  margin: 22px 0 0;
  padding: 0;

  list-style: none;

  display: grid;
  gap: 12px;
}

.check-list li {
  display: flex;
  align-items: center;

  gap: 10px;

  color: #3e3941;
}

.check-list li::before {
  content: "✓";

  width: 24px;
  height: 24px;

  border-radius: 50%;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: var(--lavender-strong);
  color: #ffffff;

  font-size: 0.8rem;
  font-weight: 900;

  flex: 0 0 auto;
}

.privacy-momo {
  width: 150px !important;
  max-width: 34vw !important;

  height: 170px !important;
  max-height: 170px !important;

  object-fit: contain !important;
  justify-self: center;
}

/* FEATURES */

.section-heading {
  max-width: 740px;
  margin: 0 auto 40px;

  text-align: center;
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 16px;
}

.feature {
  min-height: 245px;
  padding: 22px 20px 0;

  border: 1px solid var(--line);
  border-radius: var(--radius);

  text-align: center;
  overflow: hidden;

  background: #ffffff;
}

.feature:nth-child(1) {
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      var(--blue) 100%
    );
}

.feature:nth-child(2) {
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      var(--green) 100%
    );
}

.feature:nth-child(3) {
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      var(--yellow) 100%
    );
}

.feature:nth-child(4) {
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      var(--peach) 100%
    );
}

.feature p {
  color: var(--muted);
  font-size: 0.96rem;
}

.feature-momo {
  width: 70px !important;
  max-width: 70px !important;

  height: 82px !important;
  max-height: 82px !important;

  margin: 18px auto 0;

  object-fit: contain !important;
}

/* QUOTE BANNER */

.quote-band {
  min-height: 230px;
  padding: 32px 42px;

  border-radius: 30px;

  background:
    linear-gradient(
      90deg,
      rgba(255, 239, 226, 0.86),
      rgba(255, 246, 238, 0.62)
    );

  display: grid;
  grid-template-columns: 0.5fr 1.5fr;
  align-items: center;

  gap: 30px;

  overflow: hidden;
}

.quote-momo {
  width: 145px !important;
  max-width: 32vw !important;

  height: 165px !important;
  max-height: 165px !important;

  object-fit: contain !important;
  justify-self: center;
}

.quote-text {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.quote-text small {
  display: block;

  margin-top: 16px;

  color: #e57f3f;

  font-size: 1rem;
  letter-spacing: 0;
}

/* FINAL CTA */

.final-cta {
  position: relative;
  padding: 64px 52px;
  margin: 90px 0 46px;
  text-align: center;
  border-radius: 34px;

  background:
    linear-gradient(
      90deg,
      rgba(255, 233, 239, 0.88),
      rgba(255, 247, 249, 0.68)
    );

  overflow: hidden;
}

.final-cta h2,
.final-cta p,
.final-cta .button {
  position: relative;
  z-index: 2;
}

.final-cta p {
  color: var(--muted);
}

.final-cta .button {
  margin-top: 14px;
}

.cta-momo {
  position: relative;
  z-index: 2;
  display: block;

  width: 72px !important;
  max-width: 72px !important;

  height: 82px !important;
  max-height: 82px !important;

  margin: 0 auto 18px;
  object-fit: contain !important;
}

/* SMALL MOMOS ABOVE FOOTER */

.footer-momos {
  display: flex;
  justify-content: center;
  align-items: flex-end;

  gap: 7px;
  margin: 0 0 12px;
}

.footer-momo-left,
.footer-momo-right {
  display: block;

  width: 20px !important;
  max-width: 20px !important;

  height: 24px !important;
  max-height: 24px !important;

  object-fit: contain !important;
  flex: 0 0 auto;
}

.footer-momo-left {
  transform: rotate(-7deg);
}

.footer-momo-right {
  transform: rotate(7deg);
}

/* FOOTER */

.site-footer {
  min-height: 86px;
  padding: 28px 0;

  border-top: 1px solid var(--line);

  display: flex;
  justify-content: space-between;
  gap: 22px;

  color: var(--muted);
  font-size: 0.88rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

/* LEGAL PAGES */

.legal {
  max-width: 820px;
  padding: 70px 0 110px;
}

.legal h1 {
  font-size: clamp(3rem, 7vw, 5.3rem);
}

.legal h2 {
  margin-top: 42px;
  margin-bottom: 12px;

  font-size: 1.7rem;
  letter-spacing: -0.03em;
}

.legal h3 {
  margin-top: 28px;
}

.legal a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.notice {
  margin: 28px 0;
  padding: 18px 20px;

  border: 1px solid var(--line);
  border-radius: 18px;

  background: rgba(239, 232, 255, 0.46);
}

/* TABLETS */

@media (max-width: 900px) {
  .nav a:not(.lang) {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 34px 0 44px;

    grid-template-columns: 1fr;
    gap: 20px;

    text-align: center;
  }

  .hero-copy {
    margin-inline: auto;
  }

  .actions {
    justify-content: center;
  }

  .hero-art {
    min-height: 350px;
  }

  .hero-black {
    width: 240px !important;
    max-width: 58vw !important;

    height: 280px !important;
    max-height: 280px !important;
  }

  .privacy-band,
  .quote-band {
    padding: 30px 22px;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .check-list {
    width: fit-content;
    margin-inline: auto;
    text-align: left;
  }

  .privacy-momo,
  .quote-momo {
    width: 115px !important;
    max-width: 38vw !important;

    height: 130px !important;
    max-height: 130px !important;
  }

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

  .feature {
    min-height: 280px;
  }

  .feature-momo {
    width: 58px !important;
    max-width: 58px !important;

    height: 68px !important;
    max-height: 68px !important;
  }

  .final-cta {
    padding: 54px 42px;
    margin: 74px 0 42px;
  }

  .cta-momo {
    width: 62px !important;
    max-width: 62px !important;

    height: 70px !important;
    max-height: 70px !important;
  }

  .footer-momo-left,
  .footer-momo-right {
    width: 18px !important;
    max-width: 18px !important;

    height: 22px !important;
    max-height: 22px !important;
  }

  .site-footer {
    padding-bottom: 86px;
    flex-direction: column;
  }
}

/* PHONES */

@media (max-width: 560px) {
  .site-header,
  .page-shell,
  .site-footer {
    width: min(calc(100% - 22px), var(--max));
  }

  .site-header {
    min-height: 66px;
  }

  .hero {
    padding-top: 20px;
  }

  h1 {
    font-size: clamp(3rem, 13vw, 4.2rem);
    line-height: 0.97;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 66px 0;
  }

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

  .hero-art {
    min-height: 280px;
  }

  .hero-black {
    width: 200px !important;
    max-width: 62vw !important;

    height: 230px !important;
    max-height: 230px !important;
  }

  .privacy-momo,
  .quote-momo {
    width: 95px !important;
    max-width: 36vw !important;

    height: 108px !important;
    max-height: 108px !important;
  }

  .feature {
    min-height: 250px;
  }

  .feature-momo {
    width: 52px !important;
    max-width: 52px !important;

    height: 60px !important;
    max-height: 60px !important;
  }

  .quote-text {
    font-size: clamp(1.9rem, 9vw, 2.5rem);
  }

  .final-cta {
    padding: 44px 32px;
    margin: 62px 0 36px;
    border-radius: 26px;
}

.cta-momo {
    width: 54px !important;
    max-width: 54px !important;

    height: 62px !important;
    max-height: 62px !important;

    margin-bottom: 14px;
}

.footer-momos {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin: 0 0 8px;
}

.footer-momo {
    width: 8px !important;
    max-width: 8px !important;

    height: 10px !important;
    max-height: 10px !important;

    object-fit: contain !important;
}

.footer-links {
    flex-direction: column;
    gap: 10px;
}
}
