:root {
  --cream: #fbf6ef;
  --cream-deep: #eee3d7;
  --ivory: #fffaf5;
  --lavender: #a991d0;
  --lavender-dark: #9b84c4;
  --lavender-light: #eee8f7;
  --text: #3e312e;
  --muted: #746865;
  --line: #e8e2f0;
  --field-border: #d8d0e3;
  --input-border: #cbb8e6;
  --placeholder: #9a8f9f;
  --paper: var(--ivory);
  --paper-warm: #f8efe8;
  --ink: var(--text);
  --sage: #9a9587;
  --shadow: 0 26px 70px rgba(66, 55, 50, 0.13);
  --soft-shadow: 0 14px 34px rgba(66, 55, 50, 0.09);
  --radius: 16px;
  --max-width: 1120px;
  --hero-width: 1480px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  margin: 0;
  background:
    radial-gradient(circle at 10% 8%, rgba(255, 255, 255, 0.72), transparent 22rem),
    radial-gradient(circle at 88% 16%, rgba(169, 145, 208, 0.18), transparent 26rem),
    linear-gradient(180deg, var(--cream) 0%, var(--ivory) 48%, #f8efe7 100%);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(115deg, rgba(255, 255, 255, 0.52), transparent 36%),
    linear-gradient(rgba(169, 145, 208, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(169, 145, 208, 0.018) 1px, transparent 1px);
  background-size: auto, 56px 56px, 56px 56px;
  content: "";
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent 72%);
  pointer-events: none;
}

a {
  color: inherit;
}

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 32px), var(--hero-width));
  margin: 0 auto;
  padding: 18px 0 10px;
}

.site-header--nav-only {
  justify-content: flex-end;
}

.brand-mark,
.brand-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--lavender-dark);
  font-weight: 750;
  letter-spacing: 0;
  text-decoration: none;
}

.brand-mark {
  border: 1px solid rgba(169, 145, 208, 0.16);
  border-radius: 999px;
  background: rgba(255, 250, 245, 0.64);
  box-shadow: 0 8px 24px rgba(74, 46, 31, 0.06);
  padding: 7px 12px 7px 7px;
}

.brand-line {
  width: fit-content;
  margin: 0 0 20px;
  border: 1px solid rgba(169, 145, 208, 0.16);
  border-radius: 999px;
  background: rgba(255, 250, 245, 0.72);
  font-size: 0.95rem;
  padding: 7px 13px 7px 7px;
}

.heart-mark {
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 245, 0.86);
  color: #ffffff;
  font-size: 1.2rem;
  line-height: 1;
  -webkit-text-stroke: 1.5px var(--lavender);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.74),
    0 8px 18px rgba(155, 132, 196, 0.14);
}

.heart-mark--cream {
  background: rgba(255, 250, 245, 0.9);
  color: #ffffff;
}

.header-actions {
  display: flex;
  border: 1px solid rgba(169, 145, 208, 0.16);
  border-radius: 999px;
  background: rgba(255, 250, 245, 0.68);
  gap: 8px;
  padding: 4px;
  box-shadow: 0 8px 24px rgba(74, 46, 31, 0.06);
}

.nav-link {
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 8px 12px;
  text-decoration: none;
}

.nav-link:hover,
.nav-link:focus-visible {
  background: rgba(169, 145, 208, 0.1);
  color: var(--lavender-dark);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(370px, 0.65fr) minmax(600px, 1.35fr);
  align-items: center;
  gap: clamp(34px, 4.8vw, 78px);
  width: min(calc(100% - 32px), var(--hero-width));
  min-height: calc(100vh - 82px);
  margin: 0 auto;
  padding: clamp(36px, 5vw, 66px) 0 clamp(58px, 7vw, 92px);
}

.hero::before,
.hero::after,
.waitlist-section::after {
  position: absolute;
  color: rgba(255, 255, 255, 0.88);
  content: "\2661";
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1;
  pointer-events: none;
  -webkit-text-stroke: 1.5px var(--lavender);
  text-shadow: 0 12px 32px rgba(155, 132, 196, 0.14);
}

.hero::before {
  top: 10%;
  left: 33%;
  font-size: clamp(4rem, 8vw, 8.25rem);
  transform: rotate(-10deg);
}

.hero::after {
  right: 3%;
  bottom: 9%;
  font-size: clamp(2.4rem, 5vw, 5rem);
  opacity: 0.7;
  transform: rotate(12deg);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

h1,
h2,
h3,
legend {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.08;
}

h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3.05rem, 5.05vw, 4.85rem);
}

.tagline {
  margin: 20px 0 0;
  color: var(--lavender-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  font-style: italic;
  line-height: 1.25;
}

.hero-text {
  max-width: 31rem;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(1.07rem, 1.6vw, 1.2rem);
}

.hero-actions,
.survey-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  gap: 8px;
  padding: 13px 22px;
  text-align: center;
  text-decoration: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button--primary {
  border-color: var(--lavender);
  background: var(--lavender);
  box-shadow: 0 16px 30px rgba(155, 132, 196, 0.22);
  color: #ffffff;
}

.button--primary:hover,
.button--primary:focus-visible {
  border-color: var(--lavender-dark);
  background: var(--lavender-dark);
  box-shadow: 0 18px 30px rgba(155, 132, 196, 0.25);
}

.button--secondary {
  border-color: rgba(169, 145, 208, 0.34);
  background: rgba(255, 250, 245, 0.8);
  color: var(--lavender-dark);
}

.button--secondary:hover,
.button--secondary:focus-visible {
  border-color: rgba(169, 145, 208, 0.52);
  background: var(--paper);
}

.product-showcase {
  position: relative;
  margin: 0;
}

.product-showcase::before {
  position: absolute;
  inset: -28px -18px -18px;
  z-index: -1;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 52% 52%, rgba(169, 145, 208, 0.15), transparent 62%),
    radial-gradient(circle at 18% 10%, rgba(255, 255, 255, 0.72), transparent 38%);
  content: "";
  filter: blur(4px);
}

.product-frame {
  display: grid;
  aspect-ratio: 1714 / 1044;
  min-height: 0;
  place-items: center;
  border: 1px solid rgba(169, 145, 208, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(255, 244, 230, 0.78)),
    var(--paper);
  box-shadow:
    0 34px 84px rgba(74, 46, 31, 0.17),
    0 2px 0 rgba(255, 255, 255, 0.82) inset;
  overflow: hidden;
  padding: clamp(8px, 1.5vw, 18px);
}

.product-image {
  width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.product-showcase figcaption {
  max-width: 36rem;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 0.95rem;
  text-align: center;
}

.features,
.waitlist-section,
.survey-main {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
}

.features {
  position: relative;
  padding: clamp(78px, 10vw, 136px) 0;
}

.section-heading {
  max-width: 680px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--lavender-dark);
  font-size: 0.9rem;
  font-weight: 850;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.inline-heart {
  color: #ffffff;
  -webkit-text-stroke: 1.5px var(--lavender);
  text-shadow:
    0 1px 0 rgba(155, 132, 196, 0.24),
    0 10px 22px rgba(155, 132, 196, 0.12);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  position: relative;
  min-height: 270px;
  border: 1px solid rgba(169, 145, 208, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 250, 245, 0.96), rgba(238, 232, 247, 0.48)),
    rgba(255, 250, 245, 0.86);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
  padding: 28px;
}

.feature-card::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), transparent 44%);
  content: "";
  pointer-events: none;
}

.feature-card:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(255, 250, 245, 0.96), rgba(244, 236, 228, 0.74)),
    rgba(255, 250, 245, 0.9);
}

.feature-card:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(255, 250, 245, 0.96), rgba(238, 232, 247, 0.6)),
    rgba(248, 245, 252, 0.84);
}

.feature-card:nth-child(4) {
  background:
    linear-gradient(180deg, rgba(255, 250, 245, 0.96), rgba(240, 232, 224, 0.72)),
    rgba(255, 250, 245, 0.88);
}

.feature-icon {
  display: inline-grid;
  position: relative;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(169, 145, 208, 0.24);
  background: rgba(255, 255, 255, 0.5);
  color: var(--lavender-dark);
  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1;
}

.feature-card h3 {
  position: relative;
  margin: 24px 0 12px;
  font-size: 1.45rem;
}

.feature-card p {
  position: relative;
  margin: 0;
  color: var(--muted);
}

.waitlist-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 536px);
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
  border-top: 0;
  min-height: clamp(440px, 45vw, 540px);
  padding: clamp(38px, 5vw, 58px) 0;
}

.waitlist-section::before {
  position: absolute;
  top: clamp(16px, 3vw, 30px);
  bottom: clamp(16px, 3vw, 30px);
  left: 50%;
  z-index: -1;
  width: 100vw;
  border-top: 1px solid rgba(169, 145, 208, 0.12);
  border-bottom: 1px solid rgba(169, 145, 208, 0.12);
  background:
    radial-gradient(circle at 74% 26%, rgba(169, 145, 208, 0.16), transparent 24rem),
    radial-gradient(circle at 16% 72%, rgba(255, 255, 255, 0.76), transparent 24rem),
    linear-gradient(135deg, rgba(255, 250, 245, 0.9), rgba(238, 232, 247, 0.44));
  content: "";
  transform: translateX(-50%);
}

.waitlist-section::after {
  top: 20%;
  right: 5%;
  font-size: clamp(3.3rem, 7vw, 6.8rem);
  opacity: 0.82;
  transform: rotate(8deg);
}

.waitlist-copy p:last-child,
.survey-intro p {
  max-width: 36rem;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.embed-card {
  position: relative;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    radial-gradient(circle at 86% 14%, rgba(169, 145, 208, 0.16), transparent 16rem),
    linear-gradient(180deg, rgba(255, 250, 245, 0.98), rgba(238, 232, 247, 0.36)),
    var(--cream);
  box-shadow:
    0 20px 52px rgba(74, 46, 31, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.88) inset;
  overflow: hidden;
}

.embed-card::before {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(169, 145, 208, 0.18);
  border-radius: 16px;
  content: "";
  pointer-events: none;
}

.embed-card--waitlist {
  width: min(100%, 536px);
  justify-self: center;
  padding: clamp(24px, 3.4vw, 34px);
}

.embed-card--survey {
  width: min(100%, 780px);
  margin: 32px auto 0;
  border: 2px solid var(--field-border);
  border-radius: 20px;
  background:
    radial-gradient(circle at 92% 8%, rgba(238, 232, 247, 0.7), transparent 14rem),
    #ffffff;
  box-shadow:
    0 8px 20px rgba(62, 49, 46, 0.07),
    0 20px 52px rgba(74, 46, 31, 0.08);
  padding: clamp(20px, 3vw, 30px);
}

.embed-card [data-formspace],
.embed-card iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  border: 0;
  border-radius: 16px;
  background: #ffffff;
}

.embed-card--waitlist [data-formspace],
.embed-card--waitlist iframe {
  min-height: 372px;
}

.embed-card--survey [data-formspace],
.embed-card--survey iframe {
  min-height: 1040px;
}

.site-footer {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  border-top: 1px solid rgba(169, 145, 208, 0.14);
  color: var(--muted);
  padding: 34px 0 44px;
  text-align: center;
}

.site-footer p {
  margin: 0;
}

.site-footer p:first-child {
  color: var(--lavender-dark);
  font-weight: 850;
}

.survey-main {
  max-width: 780px;
  padding: clamp(48px, 7vw, 82px) 0 clamp(32px, 5vw, 58px);
}

.thank-you-page-main {
  display: grid;
  justify-items: center;
  width: min(calc(100% - 32px), 760px);
  min-height: min(680px, calc(100vh - 220px));
  margin: 0 auto;
  padding: clamp(64px, 10vw, 118px) 0;
  text-align: center;
}

.thank-you-page-main h1 {
  max-width: 12ch;
  font-size: clamp(2.6rem, 7vw, 5rem);
}

.thank-you-page-main p:not(.brand-line) {
  max-width: 32rem;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.thank-you-page-main .button {
  margin-top: 28px;
}

.survey-intro {
  margin-bottom: 42px;
}

.survey-intro h1 {
  max-width: 12ch;
  font-size: clamp(2.7rem, 7vw, 5.45rem);
}

body.thank-you-open {
  overflow: hidden;
}

.thank-you-screen[hidden] {
  display: none;
}

.thank-you-screen {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 48% 42%, rgba(255, 255, 255, 0.8), transparent 25rem),
    radial-gradient(circle at 12% 12%, rgba(238, 232, 247, 0.56), transparent 22rem),
    linear-gradient(180deg, rgba(251, 246, 239, 0.94), rgba(255, 250, 245, 0.9));
  backdrop-filter: blur(12px);
  isolation: isolate;
  overflow: hidden;
}

.thank-you-panel {
  position: relative;
  z-index: 3;
  width: min(100%, 610px);
  min-height: 360px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(169, 145, 208, 0.2);
  border-radius: 28px;
  background:
    radial-gradient(circle at 14% 12%, rgba(255, 255, 255, 0.9), transparent 14rem),
    radial-gradient(circle at 88% 10%, rgba(238, 232, 247, 0.78), transparent 13rem),
    linear-gradient(180deg, rgba(255, 250, 245, 0.88), rgba(251, 246, 239, 0.78));
  box-shadow:
    0 34px 92px rgba(62, 49, 46, 0.16),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  overflow: hidden;
  padding: clamp(34px, 6vw, 64px);
  text-align: center;
}

.thank-you-panel::before {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(169, 145, 208, 0.18);
  border-radius: 18px;
  content: "";
  pointer-events: none;
}

.thank-you-animation {
  position: fixed;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.thank-you-parade {
  position: fixed;
  right: 0;
  bottom: clamp(10px, 3vh, 26px);
  left: 0;
  z-index: 2;
  height: 120px;
  overflow: visible;
  pointer-events: none;
}

.thank-you-content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition:
    opacity 900ms ease,
    transform 900ms ease;
}

.thank-you-content--visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.thank-you-mark {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  font-size: 1.6rem;
}

.thank-you-content h2 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(2rem, 6vw, 3.35rem);
}

.thank-you-content p {
  max-width: 25rem;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.thank-you-close {
  margin-top: 28px;
}

.thank-you-confetti {
  position: absolute;
  top: -72px;
  left: var(--x);
  opacity: 0;
  transform: translate3d(0, -72px, 0) rotate(0deg) scale(var(--scale));
  transform-origin: center;
  animation: comfort-fall var(--duration) cubic-bezier(0.24, 0.72, 0.26, 1) var(--delay) forwards;
  will-change: transform, opacity;
}

.thank-you-confetti--heart {
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: var(--size);
  line-height: 1;
  -webkit-text-stroke: 1.3px var(--lavender);
  text-shadow: 0 8px 18px rgba(155, 132, 196, 0.16);
}

.thank-you-confetti--penguin {
  font-size: var(--size);
  line-height: 1;
  filter: drop-shadow(0 8px 12px rgba(62, 49, 46, 0.12));
}

.thank-you-confetti--piece {
  width: 6px;
  height: 15px;
  border-radius: 4px;
  background: var(--lavender);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.36) inset;
}

.thank-you-confetti--circle {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(251, 246, 239, 0.94);
  box-shadow:
    0 0 0 1px rgba(169, 145, 208, 0.22) inset,
    0 8px 18px rgba(62, 49, 46, 0.06);
}

.thank-you-confetti--piece:nth-child(4n) {
  background: var(--lavender-light);
}

.thank-you-confetti--piece:nth-child(4n + 1) {
  background: #cbb8e6;
}

.waddle-penguin {
  position: absolute;
  bottom: 0;
  left: -82px;
  width: 58px;
  height: 80px;
  animation:
    penguin-cross var(--walk-duration) linear var(--walk-delay) forwards,
    penguin-sway 920ms ease-in-out var(--walk-delay) infinite;
  will-change: transform, left;
}

.waddle-penguin--1 {
  --walk-delay: 180ms;
  --walk-duration: 5200ms;
  bottom: 14px;
}

.waddle-penguin--2 {
  --walk-delay: 440ms;
  --walk-duration: 5700ms;
  bottom: 2px;
  transform: scale(0.9);
}

.waddle-penguin--3 {
  --walk-delay: 820ms;
  --walk-duration: 5900ms;
  bottom: 18px;
  animation:
    penguin-cross-pause var(--walk-duration) linear var(--walk-delay) forwards,
    penguin-sway 1080ms ease-in-out var(--walk-delay) infinite;
}

.waddle-penguin__body {
  position: absolute;
  inset: 7px 7px 4px;
  border-radius: 48% 48% 42% 42%;
  background: #3e312e;
  box-shadow:
    0 10px 18px rgba(62, 49, 46, 0.16),
    inset 0 -5px 0 rgba(0, 0, 0, 0.08);
  animation: penguin-bounce 620ms ease-in-out infinite;
}

.waddle-penguin__face {
  position: absolute;
  top: 10px;
  right: 9px;
  left: 9px;
  height: 28px;
  border-radius: 48% 48% 50% 50%;
  background: #ffffff;
}

.waddle-penguin__face::before,
.waddle-penguin__face::after {
  position: absolute;
  top: 17px;
  width: 5px;
  height: 3px;
  border-radius: 999px;
  background: rgba(169, 145, 208, 0.34);
  content: "";
}

.waddle-penguin__face::before {
  left: 5px;
}

.waddle-penguin__face::after {
  right: 5px;
}

.waddle-penguin__belly {
  position: absolute;
  right: 11px;
  bottom: 8px;
  left: 11px;
  height: 34px;
  border-radius: 50% 50% 45% 45%;
  background: #fbf6ef;
}

.waddle-penguin__eye {
  position: absolute;
  top: 9px;
  width: 4px;
  height: 5px;
  border-radius: 999px;
  background: #3e312e;
  animation: penguin-blink 5200ms ease-in-out infinite;
}

.waddle-penguin__eye--left {
  left: 8px;
}

.waddle-penguin__eye--right {
  right: 8px;
}

.waddle-penguin--2 .waddle-penguin__eye {
  animation-delay: 700ms;
}

.waddle-penguin--3 .waddle-penguin__eye {
  animation-delay: 1280ms;
}

.waddle-penguin__beak {
  position: absolute;
  top: 15px;
  left: 50%;
  width: 9px;
  height: 7px;
  border-radius: 60% 60% 70% 70%;
  background: #d88b43;
  transform: translateX(-50%);
}

.waddle-penguin__scarf {
  position: absolute;
  top: 33px;
  left: 15px;
  width: 28px;
  height: 5px;
  border-radius: 999px;
  background: var(--lavender);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.34) inset;
  transform: rotate(-2deg);
  z-index: 1;
}

.waddle-penguin__scarf::after {
  position: absolute;
  top: 3px;
  right: 4px;
  width: 5px;
  height: 12px;
  border-radius: 999px;
  background: var(--lavender-dark);
  content: "";
  transform: rotate(-12deg);
}

.waddle-penguin__wing {
  position: absolute;
  top: 30px;
  width: 10px;
  height: 26px;
  border-radius: 999px;
  background: #342c2a;
  transform-origin: top center;
  animation: penguin-flap 1800ms ease-in-out infinite;
}

.waddle-penguin__wing--left {
  left: -5px;
  transform: rotate(18deg);
}

.waddle-penguin__wing--right {
  right: -5px;
  transform: rotate(-18deg);
  animation-delay: 260ms;
}

.waddle-penguin--1 .waddle-penguin__wing--right {
  animation-name: penguin-wave;
  animation-duration: 5600ms;
}

.waddle-penguin--2 .waddle-penguin__wing {
  animation-delay: 520ms;
}

.waddle-penguin--3 .waddle-penguin__wing {
  animation-delay: 900ms;
}

.waddle-penguin__foot {
  position: absolute;
  bottom: -3px;
  width: 14px;
  height: 7px;
  border-radius: 999px;
  background: #d88b43;
}

.waddle-penguin__foot--left {
  left: 11px;
  transform: rotate(-5deg);
}

.waddle-penguin__foot--right {
  right: 11px;
  transform: rotate(5deg);
}

@keyframes comfort-fall {
  0% {
    opacity: 0;
    transform: translate3d(0, -72px, 0) rotate(0deg) scale(var(--scale));
  }

  10% {
    opacity: 0.9;
  }

  72% {
    opacity: 0.82;
  }

  100% {
    opacity: 0;
    transform: translate3d(var(--drift), var(--fall), 0) rotate(var(--spin)) scale(var(--scale));
  }
}

@keyframes penguin-cross {
  0% {
    left: -82px;
  }

  78% {
    left: calc(100vw - 42px);
  }

  100% {
    left: calc(100vw + 88px);
  }
}

@keyframes penguin-cross-pause {
  0% {
    left: -90px;
  }

  32% {
    left: 23vw;
  }

  44% {
    left: 23vw;
  }

  82% {
    left: calc(100vw - 54px);
  }

  100% {
    left: calc(100vw + 92px);
  }
}

@keyframes penguin-sway {
  0%,
  100% {
    margin-left: 0;
    transform: rotate(-3deg);
  }

  50% {
    margin-left: 3px;
    transform: rotate(4deg);
  }
}

@keyframes penguin-bounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

@keyframes penguin-flap {
  0%,
  72%,
  100% {
    transform: rotate(18deg);
  }

  82% {
    transform: rotate(44deg);
  }
}

@keyframes penguin-wave {
  0%,
  72% {
    transform: rotate(-18deg);
  }

  80%,
  90% {
    transform: rotate(-62deg);
  }

  85%,
  95% {
    transform: rotate(-34deg);
  }

  100% {
    transform: rotate(-18deg);
  }
}

@keyframes penguin-blink {
  0%,
  36%,
  40%,
  82%,
  86%,
  100% {
    transform: scaleY(1);
  }

  38%,
  84% {
    transform: scaleY(0.16);
  }
}

@media (prefers-reduced-motion: reduce) {
  .thank-you-confetti {
    opacity: 0.72;
    animation: none;
    transform: translate3d(0, 18vh, 0) rotate(var(--spin)) scale(var(--scale));
  }

  .thank-you-content {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .waddle-penguin,
  .waddle-penguin__body,
  .waddle-penguin__wing,
  .waddle-penguin__eye {
    animation: none;
  }

  .waddle-penguin {
    left: 16px;
  }
}

@media (max-width: 900px) {
  .hero,
  .waitlist-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  h1 {
    max-width: 12ch;
  }

  .product-frame {
    min-height: auto;
  }

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

  .waitlist-section {
    min-height: 0;
  }

  .embed-card--waitlist {
    justify-self: stretch;
    width: 100%;
    max-width: 536px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    gap: 14px;
    padding-top: 16px;
  }

  .site-header--nav-only {
    align-items: center;
  }

  .brand-mark {
    max-width: 180px;
    line-height: 1.2;
  }

  .header-actions {
    flex: 0 0 auto;
  }

  .nav-link {
    padding: 7px 8px;
  }

  .hero {
    padding-top: 34px;
  }

  .hero::before {
    display: none;
  }

  .waitlist-section::after {
    display: none;
  }

  h1,
  .survey-intro h1 {
    font-size: clamp(2.65rem, 15vw, 4.6rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .product-frame {
    padding: 10px;
  }

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

  .feature-card {
    min-height: 0;
  }

  .embed-card {
    padding: 16px;
  }

  .embed-card--waitlist [data-formspace],
  .embed-card--waitlist iframe {
    min-height: 380px;
  }

  .embed-card--survey [data-formspace],
  .embed-card--survey iframe {
    min-height: 1100px;
  }
}

[data-formspace] button,
[data-formspace] button[type="submit"],
[data-formspace] input[type="submit"],
[data-formspace] .button,
[data-formspace] [role="button"] {
  background: #A991D0 !important;
  background-color: #A991D0 !important;
  border-color: #A991D0 !important;
  color: #FFFFFF !important;
  box-shadow: none !important;
}

[data-formspace] button:hover,
[data-formspace] button[type="submit"]:hover,
[data-formspace] input[type="submit"]:hover,
[data-formspace] .button:hover,
[data-formspace] [role="button"]:hover {
  background: #9B84C4 !important;
  background-color: #9B84C4 !important;
  border-color: #9B84C4 !important;
}

[data-formspace] input[type="radio"],
[data-formspace] input[type="checkbox"] {
  accent-color: #A991D0 !important;
}

[data-formspace] input[type="radio"]:checked,
[data-formspace] input[type="checkbox"]:checked {
  accent-color: #A991D0 !important;
  background-color: #A991D0 !important;
  border-color: #A991D0 !important;
}

[data-formspace] * {
  --primary: #A991D0 !important;
  --primary-color: #A991D0 !important;
  --accent: #A991D0 !important;
  --accent-color: #A991D0 !important;
  --blue: #A991D0 !important;
}
