:root {
  --blue: #0073E6;
  --black: #383838;
  --cornflower: #1C4980;
  --white: #ffffff;
  --red: #d8524a;
  --violet: #6548EE;
  --green: #01a768;
  --yellow: #ffc700;
  --orange: #e67519;
  --pink: #e9407a;
  --cream: #fbf7f0;
  --display: 'Inter', sans-serif;
  --bubble: 'Baloo 2', cursive;
  --body: 'Inter', sans-serif;
  --mono: 'Inter', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body);
  color: var(--black);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--yellow);
  color: var(--black);
}

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

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 3;
}

.wrap-full {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 3;
  margin-bottom: 44px;
}

.eyebrow {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.04;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html {
    scroll-behavior: auto;
  }
}
.brick {
  background-color: var(--cream);
  background-image: linear-gradient(335deg, rgba(0, 0, 0, 0.035) 23px, transparent 23px), linear-gradient(155deg, rgba(0, 0, 0, 0.035) 23px, transparent 23px), linear-gradient(335deg, rgba(0, 0, 0, 0.035) 23px, transparent 23px), linear-gradient(155deg, rgba(0, 0, 0, 0.035) 23px, transparent 23px);
  background-size: 58px 58px;
  background-position: 0 2px, 4px 35px, 29px 31px, 34px 6px;
}

.section {
  position: relative;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 48% 52% 55% 45%/45% 55% 48% 52%;
  filter: blur(2px);
  animation: drift 10s ease-in-out infinite;
}

@keyframes drift {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-12px, 14px) rotate(4deg);
  }
}
@keyframes pulseDot {
  0%, 100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.5;
  }
}
@media (max-width: 640px) {
  .hero-banner {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    display: block !important;
  }
  .ranks .full-banner {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    display: block !important;
  }
  .perks .full-banner {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    display: block !important;
  }
  .wrap {
    padding: 0 20px;
  }
  .wrap-full {
    padding: 0 20px;
    margin-bottom: 28px;
  }
  .step {
    grid-template-columns: 42px 1fr;
    gap: 16px;
  }
  .step-num {
    width: 42px;
    height: 42px;
    font-size: 14px;
  }
  .steps::before {
    left: 20px;
  }
  .steps {
    text-align: left;
  }
  .note-card {
    width: 100%;
    max-width: 320px;
  }
  .testi-card {
    flex: 0 0 260px;
    padding: 18px;
  }
  .testi-card .quote {
    -webkit-line-clamp: 8;
    font-size: 13px;
  }
  .photo-card {
    flex: 0 0 160px;
    height: 160px;
  }
  .idea-callout {
    padding: 20px 22px;
  }
  .hero-content {
    padding: 28px 20px 0;
  }
  .hero-content .sub {
    font-size: 15px;
  }
  .champions {
    padding: 70px 0 16px;
  }
  .memories {
    padding: 16px 0 70px;
  }
  .todolist .idea-callout,
  .todolist .own-card {
    max-width: 100%;
  }
  .torn {
    padding: 26px 22px;
  }
}
@media (max-width: 400px) {
  .testi-card {
    flex: 0 0 220px;
  }
  .photo-card {
    flex: 0 0 140px;
    height: 140px;
  }
}