:root {
  --sky: #9edcff;
  --sky-deep: #1582d5;
  --blue: #0e68bd;
  --navy: #06122f;
  --ink: #081331;
  --cream: #fff8e8;
  --pink: #f22f7e;
  --pink-dark: #ba0b4d;
  --yellow: #ffc91f;
  --green: #6caf22;
  --white: #ffffff;
  --shadow: 0 20px 0 rgba(4, 13, 39, 0.16), 0 28px 50px rgba(4, 13, 39, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 12% 16%, rgba(255, 201, 31, 0.55) 0 2%, transparent 2.1%),
    radial-gradient(circle at 88% 20%, rgba(242, 47, 126, 0.5) 0 2.4%, transparent 2.5%),
    radial-gradient(circle at 75% 70%, rgba(108, 175, 34, 0.45) 0 2.2%, transparent 2.3%),
    linear-gradient(180deg, #bfe9ff 0%, var(--sky) 45%, #77c5f3 100%);
  overflow-x: hidden;
}

@media (pointer: fine) {
  body {
    cursor: none;
  }

  a,
  button,
  input,
  label {
    cursor: none;
  }
}

.cursor-dot {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  width: 18px;
  height: 18px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 4px 0 rgba(6, 18, 47, 0.3);
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: width 140ms ease, height 140ms ease, background 140ms ease, opacity 140ms ease;
}

.cursor-dot.is-active {
  opacity: 1;
}

.cursor-dot.is-hovering {
  width: 28px;
  height: 28px;
  background: var(--yellow);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22) 25%, transparent 25%),
    linear-gradient(225deg, rgba(255, 255, 255, 0.18) 25%, transparent 25%);
  background-size: 34px 34px;
  opacity: 0.45;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 8% 76%, rgba(242, 47, 126, 0.7) 0 10px, transparent 11px),
    radial-gradient(circle at 94% 58%, rgba(255, 201, 31, 0.8) 0 8px, transparent 9px),
    radial-gradient(circle at 38% 9%, rgba(108, 175, 34, 0.65) 0 7px, transparent 8px);
  pointer-events: none;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 18px auto 0;
  padding: 10px 12px;
  border: 4px solid var(--white);
  border-radius: 999px;
  background: rgba(6, 18, 47, 0.9);
  box-shadow: 0 12px 30px rgba(6, 18, 47, 0.22);
  backdrop-filter: blur(14px);
}

.brand {
  grid-column: 2;
  display: inline-flex;
  flex: 0 0 auto;
  width: clamp(170px, 20vw, 240px);
  height: clamp(134px, 15vw, 188px);
  overflow: visible;
  border: 4px solid var(--white);
  border-radius: 32px;
  background: var(--blue);
  box-shadow: 0 10px 0 rgba(6, 18, 47, 0.22);
  transform: rotate(-2deg);
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

nav {
  grid-column: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

nav a {
  padding: 12px 14px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
}

nav a[href*="tiktok"],
nav a[href*="instagram"],
.footer-links a[href*="tiktok"],
.footer-links a[href*="instagram"] {
  border: 3px solid var(--white);
  border-radius: 999px;
  background: var(--blue);
  box-shadow: inset 0 -4px 0 rgba(6, 18, 47, 0.25);
}

nav a[href*="instagram"],
.footer-links a[href*="instagram"] {
  background: var(--pink);
}

nav a[href*="absolutely"],
.footer-links a[href*="absolutely"] {
  background: var(--yellow);
  color: var(--navy);
}

.nav-button {
  border-radius: 999px;
  background: var(--pink);
  box-shadow: inset 0 -4px 0 var(--pink-dark);
}

main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 104px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  align-items: center;
  gap: 48px;
  padding: 56px 0 36px;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 16px;
  padding: 9px 15px;
  border: 3px solid var(--white);
  border-radius: 999px;
  color: var(--white);
  background: var(--navy);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 6px 0 rgba(6, 18, 47, 0.2);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-family: Impact, Arial Black, sans-serif;
  font-size: clamp(4.25rem, 11vw, 9.8rem);
  line-height: 0.82;
  text-transform: uppercase;
  text-shadow:
    0 5px 0 var(--white),
    0 11px 0 var(--pink),
    0 18px 0 rgba(6, 18, 47, 0.25);
}

h2 {
  font-family: Impact, Arial Black, sans-serif;
  font-size: clamp(2.1rem, 4.8vw, 4.8rem);
  line-height: 0.92;
  text-transform: uppercase;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1;
  text-transform: uppercase;
}

.tagline {
  margin: 34px 0 14px;
  color: var(--pink);
  font-family: Brush Script MT, Segoe Script, cursive;
  font-size: clamp(2rem, 4vw, 3.6rem);
  text-shadow: 0 3px 0 var(--white);
}

.hero-text,
.intro-card p,
.why p,
.audience p,
.waitlist p,
.lucy p {
  font-size: clamp(1.02rem, 1.4vw, 1.2rem);
  font-weight: 700;
  line-height: 1.58;
}

.hero-text {
  max-width: 650px;
  margin: 0 0 26px;
  color: var(--navy);
}

.hero-actions,
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.mobile-quick-signup {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 15px 22px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: inset 0 -5px 0 rgba(0, 0, 0, 0.2), 0 9px 0 rgba(6, 18, 47, 0.16);
}

.button.primary {
  background: var(--pink);
}

.button.secondary {
  background: var(--blue);
}

.hero-points {
  margin-top: 28px;
}

.hero-points span {
  padding: 10px 14px;
  border: 3px solid var(--white);
  border-radius: 999px;
  background: var(--yellow);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 620px;
}

.hero-art img {
  position: relative;
  z-index: 2;
  width: min(100%, 430px);
  border: 8px solid var(--white);
  border-radius: 28px;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}

.burst {
  position: absolute;
  border-radius: 36px;
  transform: rotate(-8deg);
}

.burst-one {
  inset: 84px 22px 76px 26px;
  background: var(--pink);
  box-shadow: 18px 18px 0 var(--navy);
}

.burst-two {
  inset: 52px 56px 110px 0;
  border: 8px solid var(--white);
  background: var(--yellow);
  transform: rotate(7deg);
}

.sticker {
  position: absolute;
  z-index: 3;
  right: -6px;
  top: 105px;
  display: grid;
  place-items: center;
  width: 142px;
  height: 142px;
  border: 6px solid var(--white);
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.08;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 14px 0 rgba(6, 18, 47, 0.24);
}

.ticker {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 0 0 80px;
  padding: 18px;
  border: 5px solid var(--white);
  border-radius: 18px;
  background: var(--navy);
  box-shadow: 0 14px 0 rgba(6, 18, 47, 0.18);
}

.ticker span {
  color: var(--white);
  font-size: clamp(0.78rem, 1.7vw, 1.08rem);
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.ticker span:nth-child(2) {
  color: var(--green);
}

.ticker span:nth-child(3) {
  color: #36a3ff;
}

.section-grid,
.why,
.audience,
.waitlist {
  display: grid;
  grid-template-columns: 0.88fr 1fr;
  gap: 34px;
  align-items: center;
  margin: 0 0 82px;
}

.intro-card,
.why,
.lucy,
.waitlist {
  border: 7px solid var(--white);
  border-radius: 28px;
  background: rgba(255, 248, 232, 0.95);
  box-shadow: var(--shadow);
}

.intro-card {
  padding: clamp(24px, 4vw, 42px);
}

.intro-card strong {
  display: inline-block;
  margin-top: 8px;
  color: var(--pink);
  font-family: Brush Script MT, Segoe Script, cursive;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.15;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 0 0 82px;
}

.pillars article,
.recipe-strip article {
  padding: 28px;
  border: 6px solid var(--white);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 12px 0 rgba(6, 18, 47, 0.16);
}

.pillars article:nth-child(1) {
  background: #efffca;
}

.pillars article:nth-child(2) {
  background: #d9efff;
}

.pillars article:nth-child(3) {
  background: #fff0b9;
}

.pillars p,
.recipe-strip p {
  margin: 13px 0 0;
  font-weight: 800;
  line-height: 1.5;
}

.research-note {
  margin: 0 0 82px;
  padding: clamp(24px, 4vw, 44px);
  border: 7px solid var(--white);
  border-radius: 28px;
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}

.research-note blockquote {
  max-width: 980px;
  color: var(--white);
  font-family: Impact, Arial Black, sans-serif;
  font-size: clamp(1.85rem, 4vw, 3.8rem);
  line-height: 1;
  text-transform: uppercase;
}

.research-note p:not(.eyebrow) {
  max-width: 980px;
  color: var(--white);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 800;
  line-height: 1.58;
}

.source-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.source-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  border: 3px solid var(--white);
  border-radius: 999px;
  background: var(--yellow);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin-bottom: 18px;
  border: 4px solid var(--navy);
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 6px 6px 0 var(--navy);
}

.icon::before {
  color: var(--white);
  font-size: 2rem;
  font-weight: 900;
}

.avocado::before {
  content: "A";
}

.brain::before {
  content: "B";
}

.clock::before {
  content: "F";
}

.why {
  padding: clamp(24px, 4vw, 48px);
  background:
    linear-gradient(90deg, rgba(255, 248, 232, 0.96), rgba(255, 255, 255, 0.94)),
    radial-gradient(circle at 88% 18%, var(--yellow), transparent 30%);
}

.proof-list {
  display: grid;
  gap: 14px;
}

.proof-list div {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 15px;
  align-items: center;
  padding: 18px;
  border: 4px solid var(--navy);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 7px 7px 0 var(--pink);
}

.proof-list strong {
  color: var(--blue);
  font-family: Impact, Arial Black, sans-serif;
  font-size: 2rem;
}

.proof-list span {
  font-weight: 900;
  line-height: 1.35;
}

.inside {
  margin: 0 0 82px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 24px;
}

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

.recipe-strip article:nth-child(1) {
  background: #fff0b9;
}

.recipe-strip article:nth-child(2) {
  background: #ffd6e6;
}

.recipe-strip article:nth-child(3) {
  background: #d9efff;
}

.recipe-strip article:nth-child(4) {
  background: #efffca;
}

.audience {
  padding: 34px 0;
}

.audience-badge {
  padding: clamp(28px, 5vw, 52px);
  border: 8px solid var(--white);
  border-radius: 50px;
  background: var(--pink);
  color: var(--white);
  font-family: Impact, Arial Black, sans-serif;
  font-size: clamp(2.1rem, 5vw, 4.5rem);
  line-height: 0.95;
  text-transform: uppercase;
  box-shadow: 16px 16px 0 var(--navy);
  transform: rotate(-2deg);
}

.lucy {
  position: relative;
  margin: 0 0 82px;
  padding: clamp(34px, 6vw, 64px);
}

blockquote {
  margin: 0;
  max-width: 960px;
  color: var(--navy);
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 1;
  text-transform: uppercase;
}

.lucy cite {
  display: inline-block;
  margin-top: 8px;
  color: var(--pink);
  font-family: Brush Script MT, Segoe Script, cursive;
  font-size: 2.4rem;
  font-style: normal;
}

.waitlist {
  padding: clamp(24px, 4vw, 48px);
  background: var(--navy);
}

.waitlist h2,
.waitlist p {
  color: var(--white);
}

.signup {
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 5px solid var(--white);
  border-radius: 22px;
  background: var(--cream);
}

label {
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 4px solid var(--navy);
  border-radius: 14px;
  color: var(--navy);
  background: var(--white);
  font: inherit;
  font-weight: 800;
}

input[type="hidden"] {
  display: none;
}

#form-message {
  min-height: 26px;
  margin: 4px 0 0;
  color: var(--pink);
  font-size: 0.95rem;
  font-weight: 900;
}

footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 28px;
  padding: 24px;
  border-radius: 24px;
  color: var(--white);
  background: var(--navy);
}

footer img {
  width: 120px;
  height: 76px;
  object-fit: cover;
  border-radius: 12px;
}

footer p,
footer a {
  margin: 0;
  font-weight: 900;
  text-decoration: none;
}

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

.footer-links a {
  padding: 10px 14px;
  border-radius: 999px;
}

.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 0;
}

.thanks-card {
  width: min(760px, 100%);
  text-align: center;
}

.thanks-card img {
  width: min(360px, 100%);
  border: 6px solid var(--white);
  border-radius: 24px;
  box-shadow: 0 12px 0 rgba(6, 18, 47, 0.18);
}

@media (max-width: 940px) {
  .site-header {
    align-items: flex-start;
    border-radius: 28px;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .brand,
  nav {
    grid-column: 1;
  }

  nav a {
    padding: 9px 8px;
  }

  .hero,
  .section-grid,
  .why,
  .audience,
  .waitlist {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    padding-top: 42px;
  }

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

  .ticker,
  .pillars,
  .recipe-strip {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  main,
  .site-header,
  footer {
    width: min(100% - 18px, 1180px);
  }

  .site-header {
    position: relative;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
    padding: 10px;
    border-radius: 26px;
  }

  .brand {
    width: min(100%, 250px);
    height: 158px;
    border-radius: 20px;
  }

  nav {
    justify-content: center;
    gap: 8px;
  }

  nav a {
    min-height: 44px;
    padding: 11px 12px;
    font-size: 0.72rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  nav a[href*="tiktok"],
  nav a[href*="instagram"] {
    display: none;
  }

  h1 {
    font-size: clamp(3.25rem, 18vw, 4.9rem);
    line-height: 0.86;
    text-shadow:
      0 4px 0 var(--white),
      0 8px 0 var(--pink),
      0 13px 0 rgba(6, 18, 47, 0.25);
  }

  h2 {
    font-size: clamp(2rem, 12vw, 3.2rem);
    line-height: 0.96;
  }

  .hero {
    gap: 20px;
    padding-top: 26px;
  }

  .tagline {
    margin: 24px 0 14px;
    font-size: clamp(1.9rem, 9vw, 2.8rem);
    line-height: 1.05;
  }

  .mobile-quick-signup {
    display: inline-flex;
    width: 100%;
    margin: 4px 0 16px;
  }

  .hero-actions .primary {
    display: none;
  }

  .hero-actions,
  .hero-points {
    width: 100%;
  }

  .button,
  .hero-actions .secondary,
  .signup .button {
    width: 100%;
    min-height: 58px;
  }

  .hero-points span {
    flex: 1 1 100%;
    text-align: center;
  }

  .hero-art {
    min-height: auto;
    padding: 18px 0 18px;
  }

  .hero-art img {
    width: min(88vw, 330px);
    border-radius: 22px;
    transform: rotate(1deg);
  }

  .burst-one,
  .burst-two {
    inset: 12px 14px 10px;
  }

  .sticker {
    right: 4px;
    top: 8px;
    width: 96px;
    height: 96px;
    font-size: 0.72rem;
    border-width: 5px;
  }

  .ticker,
  .pillars,
  .research-note,
  .recipe-strip {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: block;
  }

  .proof-list div {
    grid-template-columns: 1fr;
  }

  .audience-badge {
    border-radius: 28px;
  }

  .waitlist {
    padding: 22px;
  }

  .research-note {
    padding: 22px;
  }

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

  .signup {
    padding: 18px;
    gap: 12px;
  }

  input {
    min-height: 60px;
    font-size: 1rem;
  }

  footer {
    display: grid;
    text-align: center;
  }

  footer img {
    justify-self: center;
    width: min(100%, 210px);
    height: 132px;
    object-fit: contain;
    background: var(--blue);
  }

  .footer-links {
    width: 100%;
  }

  .footer-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 48px;
    flex: 1 1 150px;
  }
}

@media (max-width: 430px) {
  .hero-text,
  .intro-card p,
  .why p,
  .audience p,
  .waitlist p,
  .lucy p {
    font-size: 1rem;
  }

  .brand {
    width: 220px;
    height: 140px;
  }

  nav a {
    flex: 1 1 calc(50% - 8px);
  }

  .nav-button {
    flex-basis: 100%;
  }

  .hero-art img {
    width: min(84vw, 300px);
  }

  blockquote {
    font-size: clamp(1.7rem, 10vw, 2.6rem);
  }
}
