@font-face {
  font-family: Fredoka;
  src: url("/assets/fredoka-semibold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: Nunito;
  src: url("/assets/nunito-regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
:root {
  --cream: #fff8e8;
  --yellow: #ffd339;
  --amber: #eaab21;
  --ink: #191915;
  --muted: #6b695c;
  font-family: Nunito, ui-rounded, system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  font: inherit;
}
a {
  color: inherit;
}
button:focus-visible,
a:focus-visible {
  outline: 3px solid #a45100;
  outline-offset: 6px;
}
.page {
  max-width: 1600px;
  min-height: 100svh;
  margin: auto;
  padding: 30px 6vw 22px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 16px;
}
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font:
    600 32px/1 Fredoka,
    sans-serif;
  letter-spacing: -1px;
}
.brand img {
  object-fit: contain;
  transform: rotate(-10deg);
}
.header-note {
  font-size: 15px;
  color: var(--muted);
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 20px;
  min-height: 0;
  width: 100%;
  max-width: 1240px;
  justify-self: center;
}
.hero-copy {
  position: relative;
  z-index: 2;
  padding: 20px 0 35px;
}
h1 {
  font:
    600 clamp(54px, 5.8vw, 88px)/1.03 Fredoka,
    ui-rounded,
    sans-serif;
  letter-spacing: -0.045em;
  margin: 0 0 25px;
}
.intro {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.65;
  color: #555348;
  margin: 0 0 30px;
}
.download {
  display: flex;
  align-items: center;
  gap: 18px;
}
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: var(--ink);
  color: white;
  padding: 10px 19px 11px 15px;
  border-radius: 12px;
  border: 1px solid #191915;
  flex-shrink: 0;
}
.store-badge svg {
  width: 28px;
  height: 34px;
}
.store-badge span {
  display: grid;
  gap: 0;
}
.store-badge small {
  font:
    400 11px/1.3 system-ui,
    sans-serif;
  letter-spacing: 0.015em;
}
.store-badge strong {
  font:
    500 25px/1.1 system-ui,
    sans-serif;
  letter-spacing: -0.6px;
}
.download-note {
  font-size: 14px;
  color: var(--muted);
}
.lives-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  font-size: 14px;
  color: var(--muted);
}
.hearts {
  display: flex;
  gap: 3px;
}
.hearts img {
  width: 21px;
  height: 20px;
  object-fit: contain;
}
.demo {
  position: relative;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  max-height: 760px;
  isolation: isolate;
}
.honey-disc {
  position: absolute;
  z-index: -2;
  width: 112%;
  max-width: 610px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--yellow);
  transform: translate(3%, 0);
}
.orbit {
  position: absolute;
  z-index: -1;
  width: 119%;
  max-width: 650px;
  aspect-ratio: 1;
  border: 2px dashed rgba(122, 88, 17, 0.18);
  border-radius: 50%;
  transform: rotate(-10deg);
}
.phone {
  height: min(72svh, 650px);
  aspect-ratio: 9/19.2;
  background: #262621;
  padding: 7px;
  border-radius: clamp(28px, 3vw, 45px);
  border: 2px solid #5e5b51;
  box-shadow:
    inset 0 0 0 2px #131310,
    12px 20px 0 #96641726,
    0 24px 40px -20px #47330055;
  position: relative;
  transform: rotate(5deg);
  z-index: 2;
}
.phone:before,
.phone:after {
  content: "";
  position: absolute;
  left: -5px;
  width: 3px;
  background: #47463f;
  border-radius: 3px;
}
.phone:before {
  top: 20%;
  height: 7%;
}
.phone:after {
  top: 29%;
  height: 9%;
}
.phone-screen {
  height: 100%;
  overflow: hidden;
  border-radius: clamp(22px, 2.5vw, 36px);
  background: #191915;
  position: relative;
  display: flex;
  align-items: center;
}
.camera {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 28%;
  height: 16px;
  background: #080807;
  border-radius: 20px;
  z-index: 3;
}
.camera:after {
  content: "";
  position: absolute;
  right: 9px;
  top: 5px;
  width: 6px;
  height: 6px;
  border: 2px solid #212a32;
  border-radius: 50%;
}
video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 9/16;
  object-fit: contain;
}
.video-controls {
  position: absolute;
  bottom: 15px;
  left: 12px;
  right: 12px;
  display: flex;
  justify-content: space-between;
  z-index: 4;
}
.video-controls button {
  display: grid;
  place-items: center;
  cursor: pointer;
  color: white;
  background: #191915b8;
  border: 1px solid #ffffff40;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  padding: 8px;
  backdrop-filter: blur(6px);
}
.video-controls svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.video-controls .play-icon {
  fill: currentColor;
  stroke: none;
  display: none;
}
.video-controls .sound-mark {
  display: none;
}
body.video-paused .pause-icon {
  display: none;
}
body.video-paused .play-icon {
  display: block;
}
body.sound-on .muted-mark {
  display: none;
}
body.sound-on .sound-mark {
  display: block;
}
.home-indicator {
  position: absolute;
  bottom: 6px;
  left: 35%;
  width: 30%;
  height: 3px;
  background: #fff9;
  border-radius: 3px;
}
.flower {
  position: absolute;
  object-fit: contain;
  z-index: 3;
}
.flower-one {
  top: 9%;
  right: 0;
  transform: rotate(18deg);
  width: 82px;
  height: 82px;
}
.flower-two {
  bottom: 15%;
  right: 2%;
  transform: rotate(-17deg);
  width: 46px;
  height: 46px;
}
.hero-bee {
  position: absolute;
  z-index: 4;
  width: clamp(125px, 15vw, 210px);
  height: auto;
  bottom: 8%;
  left: -9%;
  transform: rotate(-15deg);
  filter: drop-shadow(3px 9px 0 #a6711320);
}
.demo-note {
  position: absolute;
  bottom: 0;
  right: 5%;
  font:
    600 15px/1.4 Fredoka,
    sans-serif;
  transform: rotate(-5deg);
}
footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
  position: relative;
  z-index: 2;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
@media (min-width: 761px) and (max-height: 740px) {
  .page {
    padding-top: 20px;
    padding-bottom: 16px;
  }
  .phone {
    height: 70svh;
  }
  .demo-note {
    display: none;
  }
  .hero-copy {
    padding: 10px 0;
  }
  h1 {
    font-size: clamp(48px, 5.6vw, 74px);
  }
  .honey-disc {
    width: 95%;
    max-height: 75svh;
  }
  .orbit {
    width: 103%;
    max-height: 80svh;
  }
  .intro {
    margin-bottom: 22px;
  }
  .lives-note {
    margin-top: 20px;
  }
}
@media (max-width: 1000px) and (min-width: 761px) {
  .page {
    padding-left: 5vw;
    padding-right: 5vw;
  }
  .hero {
    gap: 5px;
  }
  .phone {
    height: min(65svh, 550px);
  }
  .hero-bee {
    left: -6%;
    bottom: 14%;
  }
  .download {
    gap: 12px;
  }
  .download-note {
    font-size: 12px;
  }
  .demo-note {
    right: 0;
  }
  .flower-one {
    right: -2%;
  }
}
@media (max-width: 760px) {
  .page {
    padding: 16px 24px 14px;
    gap: 8px;
    overflow: hidden;
  }
  .header {
    justify-content: center;
  }
  .brand {
    font-size: 26px;
    gap: 7px;
  }
  .brand img {
    width: 34px;
    height: 34px;
  }
  .header-note {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    gap: 16px;
    align-items: center;
  }
  .hero-copy {
    text-align: center;
    padding: 10px 0 0;
  }
  h1 {
    font-size: clamp(38px, 9.8vw, 60px);
    line-height: 1.02;
    letter-spacing: -0.035em;
    margin-bottom: 13px;
  }
  .intro {
    font-size: 16px;
    line-height: 1.45;
    margin-bottom: 17px;
  }
  .intro {
    max-width: 370px;
    margin-left: auto;
    margin-right: auto;
  }
  .download {
    justify-content: center;
    gap: 12px;
  }
  .store-badge {
    padding: 7px 14px 8px 11px;
    border-radius: 10px;
    gap: 8px;
  }
  .store-badge svg {
    width: 24px;
    height: 30px;
  }
  .store-badge strong {
    font-size: 22px;
  }
  .store-badge small {
    font-size: 10px;
  }
  .download-note {
    font-size: 12px;
  }
  .lives-note {
    display: none;
  }
  .demo {
    min-height: 0;
    width: 100%;
    max-width: 420px;
    justify-self: center;
    padding: 8px 0 13px;
  }
  .phone {
    height: clamp(260px, calc(100svh - 380px), 540px);
    border-radius: 28px;
    padding: 5px;
    box-shadow:
      inset 0 0 0 2px #131310,
      7px 12px 0 #96641726,
      0 15px 26px -16px #47330055;
  }
  .phone-screen {
    border-radius: 21px;
  }
  .camera {
    top: 7px;
    height: 10px;
  }
  .camera:after {
    top: 3px;
    right: 6px;
    width: 4px;
    height: 4px;
    border-width: 1px;
  }
  .honey-disc {
    width: 95%;
    max-height: 90%;
    transform: translate(0, 0);
  }
  .orbit {
    width: 103%;
    max-height: 97%;
  }
  .hero-bee {
    width: 125px;
    bottom: 9%;
    left: 0;
  }
  .flower-one {
    width: 55px;
    height: 55px;
    top: 8%;
    right: 4%;
  }
  .flower-two {
    width: 32px;
    height: 32px;
    bottom: 18%;
    right: 6%;
  }
  .demo-note {
    display: none;
  }
  .video-controls {
    bottom: 10px;
    left: 6px;
    right: 6px;
  }
  .video-controls button {
    width: 30px;
    height: 30px;
    padding: 6px;
  }
  .home-indicator {
    bottom: 4px;
    height: 2px;
  }
  footer {
    font-size: 11px;
    gap: 14px;
  }
}
@media (max-width: 380px) {
  .page {
    padding-left: 16px;
    padding-right: 16px;
  }
  .hero-bee {
    width: 100px;
  }
  .intro {
    font-size: 15px;
  }
  .download-note {
    display: none;
  }
  footer {
    font-size: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}
/* Decorative artwork must never cover or intercept the video controls. */
.hero-bee,
.flower,
.honey-disc,
.orbit {
  pointer-events: none;
}
@media (max-width: 760px) {
  .hero-bee {
    bottom: 22%;
    width: 110px;
  }
}
