:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #fffaf2;
  color: #332d28;
}

* { box-sizing: border-box; }

[hidden] { display: none !important; }

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 12%, rgba(255,214,216,.68), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(216,239,241,.72), transparent 28%),
    linear-gradient(180deg, #fffaf2 0%, #fff0ec 52%, #edf5dd 100%);
  background-size: 120% 120%;
  animation: pageGlow 12s ease-in-out infinite alternate;
}

main {
  width: min(1120px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 28px 0 30px;
}

.hero {
  min-height: 54vh;
  display: grid;
  align-content: center;
  gap: 20px;
}

.hero.launch {
  position: relative;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .72fr);
  align-items: center;
  gap: 42px;
  min-height: 72vh;
}

.launch-sprinkles {
  position: absolute;
  inset: -16px 0 auto 0;
  height: min(72vh, 620px);
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.hero.launch > :not(.launch-sprinkles) {
  position: relative;
  z-index: 1;
}

.sprinkle,
.sparkle {
  position: absolute;
  display: block;
  opacity: .74;
  filter: drop-shadow(0 12px 20px rgba(122,87,65,.12));
}

.sprinkle {
  width: 34px;
  height: 34px;
  border-radius: 14px;
  background: #ffd6d8;
}

.sprinkle::before,
.sprinkle::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.sprinkle::before {
  inset: 9px;
  background: #fffdf8;
}

.sprinkle::after {
  width: 9px;
  height: 9px;
  right: 4px;
  bottom: 4px;
  background: #e87979;
}

.sprinkle-a {
  left: 2%;
  top: 12%;
  background: #eaf4d8;
  animation: driftA 7.2s ease-in-out infinite;
}

.sprinkle-b {
  left: 48%;
  top: 7%;
  background: #fff0b8;
  animation: driftB 8s ease-in-out infinite;
}

.sprinkle-c {
  right: 3%;
  top: 22%;
  background: #d8eff1;
  animation: driftC 7.6s ease-in-out infinite;
}

.sprinkle-d {
  right: 27%;
  bottom: 8%;
  width: 24px;
  height: 24px;
  background: #ffd6d8;
  animation: driftA 6.6s ease-in-out infinite reverse;
}

.sparkle {
  color: #f4b95d;
  font-size: 34px;
  font-weight: 950;
  line-height: 1;
  animation: twinkleSpin 2.2s ease-in-out infinite;
}

.sparkle-a {
  left: 40%;
  top: 32%;
}

.sparkle-b {
  right: 10%;
  bottom: 22%;
  color: #e87979;
  animation-delay: .5s;
}

.hero.compact {
  min-height: 30vh;
}

.admin-page {
  width: min(1240px, calc(100vw - 32px));
  padding-top: 22px;
}

.admin-hero {
  min-height: auto;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 14px 0 18px;
}

.admin-hero .mark {
  width: 68px;
  height: 68px;
  border-radius: 20px;
}

.admin-hero h1 {
  font-size: clamp(42px, 7vw, 74px);
  line-height: .9;
  margin: 0;
}

.admin-hero p {
  max-width: 720px;
  margin: 0;
}

.admin-actions {
  display: grid;
  justify-items: end;
  gap: 8px;
}

.admin-refresh-time {
  color: #8f7466;
  font-size: 13px;
  font-weight: 850;
}

.hero-copy {
  display: grid;
  gap: 16px;
  animation: riseIn .72s ease both;
}

.mark {
  width: 82px;
  height: 82px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  background: #dcecc7;
  box-shadow: inset -10px -10px 0 rgba(255,255,255,.48), 0 18px 38px rgba(95,118,86,.16);
  font-size: 42px;
  font-weight: 950;
  color: #2b075f;
  animation: bob 2.8s ease-in-out infinite;
}

.logo-mark {
  position: relative;
  overflow: hidden;
  background: #ffd6d8;
}

.logo-mark::before {
  content: "";
  position: absolute;
  inset: 14px 18px 12px;
  border-radius: 10px 10px 14px 14px;
  background: linear-gradient(#fffdf8 0 26%, #6f9a63 26% 42%, #9fcf8f 42%);
  box-shadow: inset 0 -5px 0 rgba(63,95,53,.12);
}

.logo-mark::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  right: 9px;
  bottom: 9px;
  border-radius: 999px;
  background: radial-gradient(circle at center, #fff 0 34%, #e87979 36% 100%);
  animation: stickerPop 1.8s ease-in-out infinite alternate;
}

.cup-face {
  position: absolute;
  z-index: 1;
  left: 31px;
  top: 45px;
  width: 20px;
  height: 8px;
  border: 3px solid #3f5f35;
  border-top: 0;
  border-radius: 0 0 999px 999px;
}

.cup-face::before,
.cup-face::after {
  content: "";
  position: absolute;
  top: -11px;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #3f5f35;
}

.cup-face::before { left: -2px; }
.cup-face::after { right: -2px; }

.logo-mark:hover .cup-face,
.mark:hover .cup-face {
  animation: smileWiggle .5s ease;
}

h1, h2, p {
  margin: 0;
}

.eyebrow {
  width: fit-content;
  max-width: 100%;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fffdf8;
  color: #e87979;
  font-size: 14px;
  font-weight: 950;
  box-shadow: inset 0 0 0 2px rgba(232,121,121,.18);
}

h1 {
  font-size: clamp(58px, 11vw, 118px);
  line-height: .88;
  letter-spacing: 0;
  color: #2b075f;
}

h2 {
  color: #2b075f;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.05;
}

p {
  max-width: 740px;
  font-size: clamp(17px, 2.1vw, 23px);
  line-height: 1.48;
  color: #5f6554;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

a.button, button {
  position: relative;
  overflow: hidden;
  width: fit-content;
  border: 0;
  border-radius: 999px;
  padding: 14px 20px;
  background: #2b075f;
  color: #fff;
  font: inherit;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

a.button::after,
button::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%) skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.34), transparent);
  animation: buttonShine 3.8s ease-in-out infinite;
}

a.button.secondary::after,
button.secondary::after {
  background: linear-gradient(90deg, transparent, rgba(232,121,121,.18), transparent);
}

a.button:hover, button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 28px rgba(43,7,95,.18);
}

a.button:active, button:active {
  transform: translateY(0) scale(.98);
}

a.button.secondary, button.secondary {
  background: #fffdf8;
  color: #2b075f;
  box-shadow: inset 0 0 0 2px #eaded6;
}

.waitlist-form {
  width: min(640px, 100%);
  display: grid;
  gap: 8px;
}

.waitlist-form label {
  color: #2b075f;
  font-size: 15px;
  font-weight: 950;
}

.waitlist-form > div {
  display: flex;
  gap: 10px;
}

.waitlist-form input {
  min-width: 0;
  flex: 1 1 260px;
  border: 2px solid #eaded6;
  border-radius: 999px;
  padding: 14px 16px;
  background: rgba(255,253,248,.92);
  color: #332d28;
  font: inherit;
  font-weight: 760;
  outline: 0;
  box-shadow: 0 12px 28px rgba(122,87,65,.09);
  transition: border-color .16s ease, box-shadow .16s ease;
}

.waitlist-form input:focus {
  border-color: #e87979;
  box-shadow: 0 0 0 4px rgba(232,121,121,.15), 0 12px 28px rgba(122,87,65,.09);
}

.waitlist-form p {
  min-height: 22px;
  font-size: 14px;
  font-weight: 820;
  color: #4f7144;
}

.waitlist-form.is-complete input {
  border-color: #9fcf8f;
}

.waitlist-form.compact {
  width: min(520px, 100%);
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.waitlist-form.compact p {
  grid-column: 1 / -1;
}

.invite-card {
  width: min(640px, 100%);
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,253,248,.92);
  box-shadow: 0 18px 48px rgba(122,87,65,.14);
  animation: popIn .42s ease both;
}

.invite-card span {
  width: fit-content;
  color: #e87979;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.invite-card strong {
  color: #2b075f;
  font-size: 24px;
  line-height: 1.05;
}

.invite-card p {
  font-size: 16px;
}

.invite-card button {
  margin-top: 4px;
  background: #eaf4d8;
  color: #35562c;
}

.install-strip {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  border-radius: 24px;
  background: #eaf4d8;
  box-shadow: 0 18px 40px rgba(95,118,86,.12);
  animation: riseIn .72s ease both;
}

.install-strip p {
  font-size: 17px;
}

.waitlist-strip {
  background: #d8eff1;
}

.phone-card {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border-radius: 36px;
  background: rgba(255,253,248,.94);
  box-shadow: 0 30px 80px rgba(122,87,65,.18);
  padding: 26px;
  display: grid;
  align-content: start;
  gap: 18px;
  border: 8px solid rgba(255,255,255,.7);
  animation: phoneFloat 4.8s ease-in-out infinite, riseIn .78s ease both;
}

.phone-card::before {
  content: "";
  position: absolute;
  inset: 72px 24px auto;
  height: 138px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,.62), rgba(255,255,255,0));
  transform: translateY(-120%);
  animation: scannerSweep 4.8s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}

.phone-card::after {
  content: "";
  position: absolute;
  right: 28px;
  top: 82px;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: #e87979;
  box-shadow: 0 0 0 8px rgba(232,121,121,.13);
  animation: statusPing 1.7s ease-in-out infinite;
}

.phone-top {
  width: 92px;
  height: 8px;
  border-radius: 999px;
  background: #eaded6;
  justify-self: center;
}

.phone-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #5f6554;
  font-weight: 850;
}

.phone-title strong {
  color: #e87979;
}

.photo-stack {
  position: relative;
  min-height: 150px;
}

.photo-item {
  position: absolute;
  display: block;
  width: 122px;
  height: 122px;
  border-radius: 30px;
  background: #eaf4d8;
  box-shadow: 0 18px 34px rgba(122,87,65,.13);
  transition: transform .2s ease;
}

.photo-item::before,
.photo-item::after {
  content: "";
  position: absolute;
}

.photo-item.matcha {
  left: 5%;
  top: 16px;
  background: #dcecc7;
  transform: rotate(-8deg);
  animation: snackFloatA 3.1s ease-in-out infinite;
}

.photo-item.matcha::before {
  inset: 25px 31px 18px;
  border-radius: 14px 14px 22px 22px;
  background: linear-gradient(#fffdf8 0 32%, #6f9a63 32% 46%, #9fcf8f 46%);
}

.photo-item.berry {
  left: 34%;
  top: 0;
  background: #ffd6d8;
  transform: rotate(5deg);
  animation: snackFloatB 2.8s ease-in-out infinite;
}

.photo-item.berry::before {
  width: 54px;
  height: 54px;
  left: 34px;
  top: 34px;
  border-radius: 999px;
  background: radial-gradient(circle at 38% 38%, #fff 0 14%, #e87979 15% 100%);
}

.photo-item.toast {
  right: 4%;
  top: 24px;
  background: #fff0b8;
  transform: rotate(8deg);
  animation: snackFloatC 3.4s ease-in-out infinite;
}

.photo-item.toast::before {
  width: 70px;
  height: 58px;
  left: 26px;
  top: 34px;
  border-radius: 22px 22px 16px 16px;
  background: #d99b58;
  box-shadow: inset 0 -8px 0 rgba(115,65,28,.12);
}

.mini-month {
  display: grid;
  gap: 10px;
}

.mini-month strong {
  font-size: 38px;
  color: #302a28;
}

.mini-month span {
  color: #e6797b;
  font-weight: 850;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.mini-grid i, .mini-grid b {
  aspect-ratio: .78;
  border-radius: 14px;
  background: #fbfaf3;
  border: 2px solid #f4e5d3;
  padding: 9px;
  font-style: normal;
  font-size: 18px;
  transition: transform .18s ease, background .18s ease;
  animation: cellPop .44s ease both;
}

.mini-grid i:nth-child(7n+1), .mini-grid b:nth-child(7n+1) { animation-delay: .02s; }
.mini-grid i:nth-child(7n+2), .mini-grid b:nth-child(7n+2) { animation-delay: .06s; }
.mini-grid i:nth-child(7n+3), .mini-grid b:nth-child(7n+3) { animation-delay: .1s; }
.mini-grid i:nth-child(7n+4), .mini-grid b:nth-child(7n+4) { animation-delay: .14s; }
.mini-grid i:nth-child(7n+5), .mini-grid b:nth-child(7n+5) { animation-delay: .18s; }
.mini-grid i:nth-child(7n+6), .mini-grid b:nth-child(7n+6) { animation-delay: .22s; }
.mini-grid i:nth-child(7n), .mini-grid b:nth-child(7n) { animation-delay: .26s; }

.mini-grid b:hover {
  transform: translateY(-3px) rotate(-2deg);
  background: #fff0b8;
}

.mini-grid .today {
  background: #ffe8b8;
  border-color: #f4b14e;
  color: #2b075f;
  animation: todayPulse 1.8s ease-in-out infinite;
}

.workflow-section {
  display: grid;
  grid-template-columns: minmax(0, .74fr) minmax(340px, 1fr);
  gap: 24px;
  align-items: center;
  margin-top: 18px;
  padding: 24px 0;
}

.workflow-copy {
  display: grid;
  gap: 14px;
}

.workflow-copy p:not(.eyebrow) {
  font-size: 18px;
}

.workflow-demo {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255,253,248,.95), rgba(234,244,216,.82)),
    #fffdf8;
  box-shadow: 0 24px 60px rgba(122,87,65,.14);
  border: 2px solid rgba(255,255,255,.72);
}

.upload-scene,
.cutout-scene,
.calendar-scene {
  position: absolute;
  inset: 28px;
  display: grid;
  place-items: center;
}

.upload-scene {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.upload-card {
  width: min(250px, 72%);
  display: grid;
  justify-items: center;
  gap: 7px;
  padding: 22px;
  border-radius: 22px;
  background: #fffdf8;
  color: #2b075f;
  box-shadow: 0 18px 40px rgba(122,87,65,.13);
  animation: uploadCard 6.8s ease-in-out infinite;
}

.upload-card strong {
  font-size: 20px;
}

.upload-card small,
.calendar-head span {
  color: #7a685f;
  font-weight: 800;
}

.upload-icon {
  width: 82px;
  height: 82px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 52% 40%, #e87979 0 18%, transparent 19%),
    linear-gradient(145deg, #d8eff1 0 48%, #fff0b8 49% 100%);
  box-shadow: inset 0 0 0 6px rgba(255,255,255,.72);
}

.upload-progress {
  width: min(270px, 76%);
  height: 10px;
  border-radius: 999px;
  background: #eaded6;
  overflow: hidden;
  animation: uploadProgressShell 6.8s ease-in-out infinite;
}

.upload-progress span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: #2b075f;
  transform-origin: left;
  animation: uploadProgress 6.8s ease-in-out infinite;
}

.cutout-original,
.cutout-mask,
.cutout-food {
  position: absolute;
  display: block;
}

.cutout-original {
  width: 210px;
  height: 210px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(63,95,53,.12) 25%, transparent 25% 50%, rgba(63,95,53,.12) 50% 75%, transparent 75%),
    #eaf4d8;
  background-size: 32px 32px;
  box-shadow: 0 18px 42px rgba(122,87,65,.14);
  animation: originalPhoto 6.8s ease-in-out infinite;
}

.cutout-mask {
  width: 230px;
  height: 58px;
  border-radius: 999px;
  background: rgba(255,253,248,.72);
  box-shadow: 0 0 0 999px rgba(255,253,248,.38);
  animation: cutoutSweep 6.8s ease-in-out infinite;
}

.cutout-food {
  width: 128px;
  height: 128px;
  border-radius: 34px 34px 46px 46px;
  background:
    radial-gradient(circle at 50% 26%, #fffdf8 0 20%, transparent 21%),
    linear-gradient(#9fcf8f 0 48%, #6f9a63 49% 100%);
  box-shadow: 0 20px 38px rgba(122,87,65,.16);
  animation: foodCutout 6.8s ease-in-out infinite;
}

.calendar-scene {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  animation: calendarScene 6.8s ease-in-out infinite;
}

.calendar-head {
  width: min(320px, 86%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #2b075f;
}

.calendar-drop-grid {
  width: min(320px, 86%);
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.calendar-drop-grid i,
.calendar-drop-grid b {
  aspect-ratio: 1;
  border-radius: 13px;
  background: #fffdf8;
  border: 2px solid #eaded6;
}

.calendar-drop-grid b {
  position: relative;
  background: #ffe8b8;
  border-color: #f4b14e;
}

.calendar-drop-grid b::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 12px 12px 16px 16px;
  background: linear-gradient(#9fcf8f 0 50%, #6f9a63 51%);
  box-shadow: 0 8px 16px rgba(122,87,65,.12);
  animation: calendarSnack 6.8s ease-in-out infinite;
}

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

.share-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 260px));
  justify-content: center;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.stat, .card, .panel {
  border-radius: 24px;
  background: rgba(255,253,248,.88);
  padding: 20px;
  box-shadow: 0 14px 38px rgba(122,87,65,.11);
  animation: riseIn .58s ease both;
  transition: transform .18s ease, box-shadow .18s ease;
}

.stat:hover, .card:hover, .panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 46px rgba(122,87,65,.16);
}

.stats .stat:nth-child(2),
.feature-grid .panel:nth-child(2),
.admin-grid .stat:nth-child(2),
.admin-lists .panel:nth-child(2) { animation-delay: .05s; }

.stats .stat:nth-child(3),
.feature-grid .panel:nth-child(3),
.admin-grid .stat:nth-child(3),
.admin-lists .panel:nth-child(3) { animation-delay: .1s; }

.stats .stat:nth-child(4),
.admin-grid .stat:nth-child(4),
.admin-lists .panel:nth-child(4) { animation-delay: .15s; }

.admin-grid .stat:nth-child(n+5) { animation-delay: .2s; }

.panel {
  display: grid;
  gap: 12px;
}

.panel span {
  color: #e6797b;
  font-weight: 950;
}

.panel p {
  font-size: 16px;
  color: #6f625c;
}

.privacy {
  margin-top: 12px;
}

.stat strong {
  display: block;
  font-size: 30px;
  color: #2b075f;
}

.stat span, .card span {
  color: #7a685f;
  font-size: 14px;
  font-weight: 750;
}

.card {
  display: grid;
  gap: 12px;
}

.card img, .placeholder {
  width: 100%;
  max-height: 220px;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 16px;
  background: #f7efe8;
  animation: softReveal .5s ease both;
}

.placeholder {
  display: grid;
  place-items: center;
  color: #9b7a6b;
  font-weight: 950;
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 9px;
}

.admin-grid .stat {
  min-height: 78px;
  padding: 13px 14px;
  display: grid;
  align-content: space-between;
  background: rgba(255,253,248,.86);
}

.admin-grid .stat strong {
  order: 2;
  font-size: clamp(23px, 3vw, 32px);
  line-height: 1;
}

.admin-grid .stat span {
  order: 1;
  display: block;
  line-height: 1.25;
  color: #8f7466;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.admin-grid .stat.primary {
  grid-column: span 2;
  background: linear-gradient(135deg, #fff0b8 0%, #eaf4d8 100%);
}

.admin-health {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 10px;
  padding: 12px;
  gap: 10px;
}

.admin-health div {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,253,248,.62);
}

.admin-health strong {
  color: #2b075f;
  font-size: 16px;
  animation: numberPop .5s ease both;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-health span {
  color: #e87979;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0;
}

.admin-lists {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.admin-lists .panel {
  grid-column: span 4;
  min-height: 178px;
  padding: 16px;
}

.admin-lists .panel:nth-child(6) {
  grid-column: span 5;
}

.admin-lists .panel:nth-child(7) {
  grid-column: span 3;
}

.rank-list {
  display: grid;
  gap: 8px;
}

.rank-row,
.empty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 38px;
  padding: 9px 10px;
  border-radius: 14px;
  background: #fff7ed;
  color: #5f6554;
  text-decoration: none;
  font-size: 14px;
  animation: slideIn .34s ease both;
  transition: transform .16s ease, background .16s ease;
}

.share-links .rank-row {
  min-height: 44px;
}

.rank-row:hover {
  transform: translateX(4px);
  background: #fff0df;
}

.rank-row span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #5f6554;
  font-weight: 800;
}

.rank-row strong {
  flex: 0 0 auto;
  color: #2b075f;
}

.share-links .rank-row {
  background: #eaf4d8;
}

.empty-row {
  color: #9b7a6b;
}

table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  margin-top: 16px;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(255,253,248,.9);
}

.admin-table-panel {
  margin-top: 14px;
  overflow-x: auto;
  padding: 16px;
}

.panel-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.panel-title span {
  color: #8f7466;
  font-size: 13px;
  font-weight: 850;
}

th, td {
  padding: 12px;
  border-bottom: 1px solid #eaded6;
  text-align: left;
  vertical-align: top;
}

.admin-thumb {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 14px;
  background: #fff7ed;
  box-shadow: 0 8px 18px rgba(122,87,65,.12);
}

.admin-no-image {
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: #f7efe8;
  color: #9b7a6b;
  font-size: 12px;
  font-weight: 850;
}

th {
  color: #2b075f;
}

tbody tr {
  animation: slideIn .34s ease both;
  transition: background .16s ease;
}

tbody tr:hover {
  background: #fff7ed;
}

@keyframes pageGlow {
  from { background-position: 0% 0%; }
  to { background-position: 100% 100%; }
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(18px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes popIn {
  0% { opacity: 0; transform: scale(.92) rotate(-1deg); }
  72% { transform: scale(1.03) rotate(1deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}

@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-7px) rotate(1deg); }
}

@keyframes stickerPop {
  from { transform: scale(.92) rotate(-8deg); }
  to { transform: scale(1.08) rotate(5deg); }
}

@keyframes smileWiggle {
  0%, 100% { transform: rotate(0); }
  30% { transform: rotate(-8deg); }
  70% { transform: rotate(8deg); }
}

@keyframes phoneFloat {
  0%, 100% { transform: translateY(0) rotate(.4deg); }
  50% { transform: translateY(-10px) rotate(-.5deg); }
}

@keyframes snackFloatA {
  0%, 100% { transform: translateY(0) rotate(-8deg); }
  50% { transform: translateY(-9px) rotate(-4deg); }
}

@keyframes snackFloatB {
  0%, 100% { transform: translateY(0) rotate(5deg); }
  50% { transform: translateY(7px) rotate(9deg); }
}

@keyframes snackFloatC {
  0%, 100% { transform: translateY(0) rotate(8deg); }
  50% { transform: translateY(-6px) rotate(4deg); }
}

@keyframes todayPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 rgba(244,177,78,0); }
  50% { transform: scale(1.05); box-shadow: 0 8px 18px rgba(244,177,78,.22); }
}

@keyframes softReveal {
  from { opacity: 0; transform: scale(.94); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(-8px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes numberPop {
  0% { opacity: 0; transform: scale(.86); }
  70% { transform: scale(1.08); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes driftA {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-10deg); }
  50% { transform: translate3d(18px, -22px, 0) rotate(12deg); }
}

@keyframes driftB {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(12deg) scale(1); }
  50% { transform: translate3d(-16px, 18px, 0) rotate(-9deg) scale(1.08); }
}

@keyframes driftC {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(4deg); }
  50% { transform: translate3d(-22px, -12px, 0) rotate(-14deg); }
}

@keyframes twinkleSpin {
  0%, 100% { opacity: .25; transform: scale(.78) rotate(0deg); }
  45% { opacity: .9; transform: scale(1.12) rotate(18deg); }
  70% { opacity: .55; transform: scale(.92) rotate(42deg); }
}

@keyframes buttonShine {
  0%, 58% { transform: translateX(-120%) skewX(-18deg); }
  76%, 100% { transform: translateX(120%) skewX(-18deg); }
}

@keyframes scannerSweep {
  0%, 44% { transform: translateY(-130%); opacity: 0; }
  55% { opacity: .7; }
  74%, 100% { transform: translateY(230%); opacity: 0; }
}

@keyframes statusPing {
  0%, 100% { transform: scale(.9); opacity: .74; }
  50% { transform: scale(1.18); opacity: 1; }
}

@keyframes cellPop {
  from { opacity: 0; transform: translateY(10px) scale(.92); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes uploadCard {
  0%, 12% { opacity: 0; transform: translateY(22px) scale(.94); }
  18%, 38% { opacity: 1; transform: translateY(0) scale(1); }
  48%, 100% { opacity: 0; transform: translateY(-24px) scale(.96); }
}

@keyframes uploadProgressShell {
  0%, 12%, 48%, 100% { opacity: 0; }
  18%, 40% { opacity: 1; }
}

@keyframes uploadProgress {
  0%, 18% { transform: scaleX(.08); }
  38%, 100% { transform: scaleX(1); }
}

@keyframes originalPhoto {
  0%, 36% { opacity: 0; transform: scale(.92) rotate(-4deg); }
  45%, 62% { opacity: 1; transform: scale(1) rotate(-2deg); }
  72%, 100% { opacity: 0; transform: scale(.96) rotate(3deg); }
}

@keyframes cutoutSweep {
  0%, 44% { opacity: 0; transform: translateY(-80px); }
  50%, 56% { opacity: .86; }
  66%, 100% { opacity: 0; transform: translateY(92px); }
}

@keyframes foodCutout {
  0%, 54% { opacity: 0; transform: translateY(10px) scale(.76) rotate(-8deg); }
  64%, 76% { opacity: 1; transform: translateY(0) scale(1) rotate(2deg); }
  88%, 100% { opacity: 0; transform: translateY(100px) scale(.54) rotate(0); }
}

@keyframes calendarScene {
  0%, 70% { opacity: 0; transform: translateY(24px); }
  78%, 100% { opacity: 1; transform: translateY(0); }
}

@keyframes calendarSnack {
  0%, 78% { opacity: 0; transform: translateY(-110px) scale(1.42); }
  88% { opacity: 1; transform: translateY(0) scale(1); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 22px;
  color: #7a685f;
  font-size: 14px;
}

footer a {
  color: #2b075f;
  font-weight: 850;
}

.policy-page {
  max-width: 940px;
}

.policy-panel {
  display: grid;
  gap: 14px;
}

.policy-panel h2 {
  margin-top: 10px;
  font-size: 28px;
}

.policy-panel h2:first-child {
  margin-top: 0;
}

.policy-panel p {
  max-width: none;
  font-size: 17px;
}

@media (max-width: 860px) {
  body {
    background:
      linear-gradient(180deg, rgba(255,250,242,.98), rgba(255,240,236,.96) 58%, rgba(237,245,221,.98));
  }

  main {
    width: min(100vw - 28px, 760px);
    padding: 18px 0 24px;
  }

  .hero {
    gap: 14px;
  }

  .hero.launch {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 16px;
    align-content: start;
  }

  .phone-card {
    min-height: auto;
    padding: 18px;
    border-radius: 28px;
    gap: 12px;
  }

  .photo-stack {
    min-height: 112px;
  }

  .photo-item {
    width: 92px;
    height: 92px;
    border-radius: 22px;
  }

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

  .admin-hero {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .admin-actions {
    grid-column: 1 / -1;
    justify-items: stretch;
  }

  .admin-grid .stat.primary,
  .admin-lists .panel,
  .admin-lists .panel:nth-child(6),
  .admin-lists .panel:nth-child(7) {
    grid-column: span 1;
  }

  .workflow-section {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px 0;
  }

  .workflow-demo {
    min-height: 320px;
  }

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

  .admin-lists .panel,
  .admin-lists .panel:nth-child(6) {
    grid-column: span 1;
  }

  h1 {
    font-size: clamp(52px, 18vw, 92px);
  }

  p {
    font-size: 17px;
  }
}

@media (max-width: 560px) {
  main {
    width: min(100vw - 20px, 1120px);
    padding-top: 14px;
  }

  .mark {
    width: 62px;
    height: 62px;
    border-radius: 18px;
  }

  .logo-mark::before {
    inset: 11px 14px 10px;
  }

  .logo-mark::after {
    width: 18px;
    height: 18px;
    right: 7px;
    bottom: 7px;
  }

  .cup-face {
    left: 23px;
    top: 34px;
    width: 16px;
    height: 7px;
    border-width: 2px;
  }

  .cup-face::before,
  .cup-face::after {
    top: -9px;
    width: 4px;
    height: 4px;
  }

  h1 {
    font-size: clamp(48px, 22vw, 76px);
  }

  h2 {
    font-size: 24px;
  }

  .actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  a.button, button {
    width: 100%;
    text-align: center;
    padding: 13px 16px;
  }

  .waitlist-form > div,
  .waitlist-form.compact {
    display: grid;
    grid-template-columns: 1fr;
  }

  .waitlist-form input {
    width: 100%;
    flex-basis: auto;
  }

  .invite-card,
  .stat,
  .card,
  .panel,
  .install-strip {
    border-radius: 18px;
    padding: 16px;
  }

  .stats, .share-grid, .admin-grid, .feature-grid, .admin-health, .admin-lists {
    grid-template-columns: 1fr;
  }

  .admin-page {
    width: min(100vw - 20px, 1240px);
  }

  .admin-hero {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .phone-card {
    display: none;
  }

  .workflow-demo {
    min-height: 300px;
    border-radius: 20px;
  }

  .upload-scene,
  .cutout-scene,
  .calendar-scene {
    inset: 18px;
  }

  .install-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .mini-grid {
    gap: 6px;
  }

  .mini-grid i, .mini-grid b {
    border-radius: 10px;
    padding: 7px;
    font-size: 14px;
  }

  table {
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
}
