:root {
  --page: #f5f5f5;
  --ink: #050505;
  --muted: rgba(0, 0, 0, 0.48);
  --hairline: rgba(0, 0, 0, 0.1);
  --blue: #0f7fff;
  --panel: rgba(255, 255, 255, 0.9);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--page);
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--page);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--page);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.35;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

img,
video {
  display: block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.menubar {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 52px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(245, 245, 245, 0.86);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  backdrop-filter: blur(18px) saturate(1.4);
  font-size: 14px;
}

.menubar-left,
.menubar-right,
.desktop-status,
.get-link {
  display: flex;
  align-items: center;
}

.menubar-left {
  gap: 24px;
  color: rgba(0, 0, 0, 0.37);
}

.menubar-left a {
  transition: color 160ms ease;
}

.menubar-left a:hover,
.menubar-left a:focus-visible {
  color: #000;
}

.menubar-left .nav-home {
  color: #000;
  font-weight: 600;
}

.brand-mark {
  position: relative;
  width: 40px;
  height: 29px;
}

.brand-mark span {
  position: absolute;
  top: 7px;
  width: 19px;
  height: 11px;
  border-top: 4px solid #050505;
  transform-origin: center;
}

.brand-mark span:first-child {
  left: 3px;
  transform: rotate(-51deg);
}

.brand-mark span:last-child {
  right: 2px;
  transform: rotate(47deg);
}

.menubar-right {
  justify-content: flex-end;
  gap: 16px;
}

.desktop-status {
  gap: 14px;
  color: rgba(0, 0, 0, 0.28);
  font-size: 13px;
}

.desktop-status img {
  width: 13px;
  height: 13px;
  opacity: 0.34;
}

.battery {
  position: relative;
  width: 23px;
  height: 11px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 4px;
  color: transparent;
}

.battery::after {
  content: "";
  position: absolute;
  inset: 2px 5px 2px 2px;
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.24);
}

.get-link {
  gap: 6px;
  color: #1875d1;
  font-weight: 500;
}

.get-link img {
  width: 12px;
  height: 12px;
}

.mobile-menu-button,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  height: 930px;
  overflow: hidden;
  background-color: var(--page);
  background-image: radial-gradient(rgba(0, 0, 0, 0.13) 1px, transparent 1.3px);
  background-size: 30px 30px;
}

.hero-copy {
  position: absolute;
  z-index: 20;
  top: 199px;
  left: 50%;
  width: 560px;
  transform: translateX(-50%);
  text-align: center;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(68px, 6.9vw, 88px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.hero-copy > p {
  margin: 20px 0 27px;
  font-size: 20px;
  letter-spacing: -0.035em;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.hero-copy small {
  display: block;
  width: 220px;
  margin: 8px 0 0 92px;
  color: rgba(0, 0, 0, 0.34);
  font-size: 11px;
}

.aqua-button {
  position: relative;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 6px 18px 7px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.35);
  border-radius: 999px;
  background: linear-gradient(#fff 0%, #e7e7e7 47%, #fbfbfb 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(0, 0, 0, 0.08),
    0 8px 16px rgba(0, 0, 0, 0.13);
  color: #050505;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.aqua-button::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 8%;
  right: 8%;
  height: 9px;
  border-radius: 100%;
  background: rgba(255, 255, 255, 0.56);
  pointer-events: none;
}

.aqua-button:hover,
.aqua-button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.17);
}

.aqua-button-primary {
  border-color: rgba(20, 63, 202, 0.75);
  background: linear-gradient(#eff8ff 0%, #acd6ff 44%, #71bafa 66%, #d7f4ff 100%);
}

.aqua-button img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.hero-decor,
.hero-emote,
.mini-window {
  position: absolute;
}

.hero-decor {
  z-index: 3;
  object-fit: contain;
}

.hero-decor-sponge {
  top: 65px;
  left: 1.4%;
  width: 101px;
  height: 61px;
  overflow: hidden;
}

.hero-decor-sponge video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-decor-card {
  top: 42px;
  left: 22%;
  width: 67px;
  transform: rotate(5deg);
}

.hero-decor-ball {
  top: 167px;
  left: 56%;
  width: 21px;
  height: 21px;
}

.hero-decor-folder {
  top: 414px;
  right: 17%;
  width: 40px;
}

.hero-decor-pokemon {
  top: 478px;
  right: 11%;
  width: 64px;
}

.hero-decor-phone {
  top: 574px;
  left: 13%;
  width: 92px;
  transform: rotate(18deg);
}

.hero-emote {
  z-index: 4;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.hero-emote-a {
  top: 105px;
  left: 26.5%;
  font-size: 19px;
}

.hero-emote-b {
  top: 339px;
  right: 13.4%;
  font-size: 17px;
}

.hero-emote-c {
  top: 410px;
  left: 20%;
  font-size: 15px;
}

.mini-window {
  z-index: 7;
  padding: 7px;
  border: 1px solid rgba(0, 0, 0, 0.38);
  border-radius: 9px;
  background: linear-gradient(90deg, #d6d5d7, #f0f0f0 50%, #d6d5d7);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.13);
  cursor: grab;
  user-select: none;
  touch-action: none;
}

.mini-window.is-dragging {
  z-index: 50;
  cursor: grabbing;
}

.mini-window video {
  width: 100%;
  height: calc(100% - 20px);
  border-radius: 3px;
  object-fit: cover;
}

.mini-window > p {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  width: 180px;
  margin: 0;
  transform: translateX(-50%);
  color: rgba(0, 0, 0, 0.35);
  text-align: center;
  font-size: 12px;
}

.window-chrome,
.feature-window figcaption,
.feedback-bar {
  display: flex;
  align-items: center;
  gap: 4px;
}

.window-chrome {
  position: relative;
  height: 20px;
  padding: 0 2px;
}

.window-chrome span,
.feature-window figcaption span,
.feedback-bar i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ff5f57;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.16);
}

.window-chrome span:nth-child(2),
.feature-window figcaption span:nth-child(2),
.feedback-bar i:nth-child(2) {
  background: #febc2e;
}

.window-chrome span:nth-child(3),
.feature-window figcaption span:nth-child(3),
.feedback-bar i:nth-child(3) {
  background: #28c840;
}

.window-chrome i {
  margin-left: auto;
  color: rgba(0, 0, 0, 0.35);
  font-style: normal;
  line-height: 1;
}

.mini-window-draw {
  top: 30px;
  left: 36.5%;
  width: 163px;
  height: 117px;
}

.mini-window-usecase {
  top: 64px;
  right: 13.5%;
  width: 225px;
  height: 140px;
}

.mini-window-portrait {
  top: 75px;
  left: 8.3%;
  width: 112px;
  height: 220px;
}

.mini-window-code {
  top: 355px;
  left: 2.5%;
  width: 196px;
  height: 138px;
}

.mini-window-daddy {
  top: 332px;
  right: 2.3%;
  width: 136px;
  height: 252px;
}

.hero-main-video {
  position: absolute;
  z-index: 10;
  top: 462px;
  left: 50%;
  width: min(710px, 58vw);
  height: 390px;
  overflow: hidden;
  transform: translateX(-50%);
  border: 1px solid #111;
  border-radius: 13px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  background: #111;
}

.hero-main-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-button,
.mute-button,
.feature-window > button {
  position: absolute;
  border: 0;
  cursor: pointer;
}

.play-button {
  top: 50%;
  left: 50%;
  min-width: 128px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 9px 18px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 999px;
  background: linear-gradient(rgba(255, 255, 255, 0.58), rgba(150, 150, 150, 0.52));
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.28);
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-shadow: 0 1px 2px #000;
}

.play-triangle {
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid #fff;
  filter: drop-shadow(0 1px 1px #666);
}

.media-player.is-playing .play-button {
  opacity: 0;
  pointer-events: none;
}

.media-player:hover .play-button,
.media-player:focus-within .play-button {
  opacity: 1;
  pointer-events: auto;
}

.media-player.is-playing .play-triangle {
  width: 11px;
  height: 14px;
  border: 0;
  border-left: 4px solid white;
  border-right: 4px solid white;
}

.mute-button,
.feature-window > button {
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.42);
  color: white;
  font-size: 18px;
}

.hero-video-name {
  position: absolute;
  z-index: 11;
  top: 864px;
  left: 50%;
  margin: 0;
  transform: translateX(-50%);
  color: rgba(0, 0, 0, 0.35);
  font-size: 12px;
}

.features {
  position: relative;
  padding: 80px 28px 96px;
  background: var(--page);
}

.feature-row {
  width: min(960px, 100%);
  min-height: 406px;
  display: grid;
  grid-template-columns: 300px minmax(0, 605px);
  align-items: center;
  gap: 56px;
  margin: 0 auto 58px;
}

.feature-row-reverse {
  grid-template-columns: minmax(0, 605px) 300px;
}

.feature-row-reverse .feature-copy {
  grid-column: 2;
  grid-row: 1;
}

.feature-row-reverse .feature-window {
  grid-column: 1;
  grid-row: 1;
}

.feature-copy {
  position: relative;
}

.feature-copy h3 {
  margin: 28px 0 10px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.feature-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

.chat-bubble {
  position: relative;
  width: max-content;
  max-width: 270px;
  padding: 9px 14px 10px;
  border: 1px solid rgba(0, 0, 0, 0.28);
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  font-size: 18px;
  line-height: 1.08;
}

.chat-bubble::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: -7px;
  width: 14px;
  height: 14px;
  border-right: 1px solid rgba(0, 0, 0, 0.28);
  border-bottom: 1px solid rgba(0, 0, 0, 0.28);
  transform: skew(24deg) rotate(27deg);
  background: inherit;
}

.chat-bubble.blue {
  background: linear-gradient(#eff8ff, #b8d8ff 48%, #dcecff);
}

.chat-bubble.orange {
  margin: 15px 0 0 2px;
  padding-inline: 16px;
  background: linear-gradient(#fff2dd, #ffc989 50%, #ffe5c5);
}

.chat-bubble.single {
  margin: 34px 0 0 auto;
}

.waveform {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.waveform i {
  width: 7px;
  height: 8px;
  border-radius: 4px;
  background: #111;
  animation: wave 1.2s ease-in-out infinite alternate;
}

.waveform i:nth-child(2n) { height: 20px; animation-delay: -0.2s; }
.waveform i:nth-child(3n) { height: 35px; animation-delay: -0.4s; }
.waveform i:nth-child(5n) { height: 45px; animation-delay: -0.7s; }

@keyframes wave {
  to { transform: scaleY(0.45); opacity: 0.35; }
}

.feature-window {
  position: relative;
  width: 100%;
  height: 406px;
  margin: 0;
  padding: 30px 10px 10px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.36);
  border-radius: 10px;
  background: linear-gradient(90deg, #d6d5d7, #f0f0f0 50%, #d6d5d7);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
}

.feature-window figcaption {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 30px;
  padding: 0 12px;
  color: rgba(0, 0, 0, 0.35);
  font-size: 12px;
}

.feature-window figcaption b {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 400;
}

.feature-window video {
  width: 100%;
  height: 100%;
  border-radius: 3px;
  object-fit: cover;
}

.feature-window > button {
  top: auto;
  right: 17px;
  bottom: 17px;
}

.manifesto {
  position: relative;
  height: 720px;
  overflow: hidden;
  border-top: 1px dotted rgba(0, 0, 0, 0.14);
  border-bottom: 1px dotted rgba(0, 0, 0, 0.14);
}

.manifesto::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--page), transparent 12%, transparent 88%, var(--page));
  pointer-events: none;
}

.manifesto-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.95;
}

.manifesto-sticker {
  position: absolute;
  z-index: 3;
  object-fit: contain;
}

.sticker-cat { top: 65px; left: 23%; width: 82px; }
.sticker-astro { bottom: 80px; left: 16%; width: 54px; }
.sticker-laptop { right: 15%; bottom: 52px; width: 118px; }

.note-window {
  position: absolute;
  z-index: 5;
  top: 34px;
  left: 50%;
  width: 420px;
  min-height: 0;
  overflow: hidden;
  transform: translateX(-50%);
  border: 1px solid rgba(0, 0, 0, 0.28);
  border-radius: 9px;
  background: linear-gradient(90deg, rgba(254, 234, 61, 0.18), rgba(254, 234, 61, 0.18)), #f8f7ed;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.18);
}

.note-window .window-chrome {
  height: 34px;
  padding: 0 12px;
  background: linear-gradient(90deg, #d6d5d7, #f0f0f0 50%, #d6d5d7);
  border-bottom: 1px solid rgba(0, 0, 0, 0.11);
}

.note-window .window-chrome b {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  font-weight: 400;
}

.note-body {
  padding: 20px 24px 23px;
  font-size: 18px;
}

.eyebrow {
  display: block;
  margin-bottom: 13px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
}

.note-body p {
  margin: 0 0 11px;
  color: rgba(0, 0, 0, 0.53);
}

.note-body mark {
  padding: 0 2px;
  background: rgba(255, 227, 57, 0.6);
  color: #111;
}

.cursor {
  animation: blink 0.8s steps(1) infinite;
}

@keyframes blink { 50% { opacity: 0; } }

.signature-row,
.signature-row a {
  display: flex;
  align-items: center;
}

.signature-row {
  justify-content: space-between;
  margin-top: 17px;
}

.signature-row a {
  gap: 10px;
}

.signature-row a > img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.signature-row a span {
  display: flex;
  flex-direction: column;
}

.signature-row strong {
  font-size: 14px;
  font-weight: 500;
}

.signature-row small {
  color: var(--muted);
}

.signature-row .signature {
  width: 150px;
  height: auto;
}

.feedback {
  position: relative;
  min-height: 1180px;
  padding: 105px 24px 125px;
  overflow: hidden;
  background: var(--page);
}

.section-label {
  width: max-content;
  margin: 0 auto 18px;
  padding: 5px 12px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 999px;
  background: linear-gradient(#fff, #e7e7e7 45%, #fbfbfb);
  color: rgba(0, 0, 0, 0.45);
  font-size: 11px;
  text-transform: lowercase;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.feedback h2 {
  width: max-content;
  margin: 0 0 55px;
  transform: translateX(calc((100vw - 100%) / -2));
  color: #050505;
  font-size: clamp(43px, 5.3vw, 68px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1;
  white-space: nowrap;
}

.feedback h2 span {
  color: rgba(0, 0, 0, 0.14);
}

.no-regrets {
  position: absolute;
  z-index: 5;
  top: 110px;
  right: 18%;
  width: 150px;
  transform: rotate(-7deg);
}

.feedback-grid {
  width: min(960px, 100%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 0 auto;
}

.feedback-card {
  position: relative;
  min-height: 172px;
  padding: 45px 15px 14px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.22);
  border-radius: 8px;
  background: white;
  box-shadow: 0 8px 14px rgba(0, 0, 0, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.feedback-card:hover,
.feedback-card:focus-visible {
  z-index: 4;
  transform: translateY(-4px) rotate(-0.4deg);
  box-shadow: 0 13px 20px rgba(0, 0, 0, 0.16);
}

.feedback-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 31px;
  padding: 0 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  background: linear-gradient(90deg, rgba(52, 199, 89, 0.2), rgba(52, 199, 89, 0.08)), linear-gradient(90deg, #d6d5d7, #f0f0f0 50%, #d6d5d7);
}

.feedback-bar.orange { background: linear-gradient(90deg, rgba(255, 141, 40, 0.24), transparent), linear-gradient(90deg, #d6d5d7, #f0f0f0 50%, #d6d5d7); }
.feedback-bar.blue { background: linear-gradient(90deg, rgba(0, 136, 255, 0.22), transparent), linear-gradient(90deg, #d6d5d7, #f0f0f0 50%, #d6d5d7); }
.feedback-bar.cyan { background: linear-gradient(90deg, rgba(0, 195, 208, 0.22), transparent), linear-gradient(90deg, #d6d5d7, #f0f0f0 50%, #d6d5d7); }
.feedback-bar.peach { background: linear-gradient(90deg, rgba(255, 102, 102, 0.2), transparent), linear-gradient(90deg, #d6d5d7, #f0f0f0 50%, #d6d5d7); }
.feedback-bar.yellow { background: linear-gradient(90deg, rgba(255, 204, 0, 0.2), transparent), linear-gradient(90deg, #d6d5d7, #f0f0f0 50%, #d6d5d7); }
.feedback-bar.red { background: linear-gradient(90deg, rgba(255, 82, 82, 0.2), transparent), linear-gradient(90deg, #d6d5d7, #f0f0f0 50%, #d6d5d7); }
.feedback-bar.mint { background: linear-gradient(90deg, rgba(0, 200, 179, 0.2), transparent), linear-gradient(90deg, #d6d5d7, #f0f0f0 50%, #d6d5d7); }
.feedback-bar.neutral { background: linear-gradient(90deg, #d6d5d7, #f0f0f0 50%, #d6d5d7); }

.feedback-person {
  display: flex;
  align-items: center;
  gap: 9px;
}

.feedback-person img {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  object-fit: cover;
}

.feedback-person span {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.feedback-person b {
  overflow: hidden;
  font-size: 13px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.feedback-person small {
  color: rgba(0, 0, 0, 0.45);
  font-size: 12px;
}

.feedback-person em {
  margin-left: auto;
  color: #5399e5;
  font-style: normal;
  font-size: 17px;
}

.feedback-card > p {
  min-height: 42px;
  margin: 13px 0 8px;
  font-size: 14px;
  font-weight: 300;
}

.feedback-card time,
.feedback-card > small {
  display: block;
  color: rgba(0, 0, 0, 0.28);
  font-size: 10px;
}

.feedback-card > small {
  margin-top: 9px;
}

.happy-users {
  position: relative;
  z-index: 6;
  width: min(960px, 100%);
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 24px auto 0;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background: linear-gradient(rgba(255, 255, 255, 0.92), rgba(235, 235, 235, 0.82));
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.13);
}

.happy-users video {
  position: absolute;
  left: 16%;
  bottom: -18px;
  width: 91px;
  height: 91px;
  object-fit: cover;
  transform: rotate(-7deg);
  border-radius: 4px;
}

.happy-users p {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.happy-users a {
  color: var(--blue);
  text-decoration: underline;
}

.pricing {
  position: relative;
  min-height: 1200px;
  overflow: hidden;
  background: linear-gradient(#4b7eb6 0%, #77aae0 34%, #a6cef0 54%, #f5f5f5 100%);
}

.pricing::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(rgba(0, 0, 0, 0.12), transparent 18%, transparent 69%, var(--page) 100%);
  pointer-events: none;
}

.cloud {
  position: absolute;
  z-index: 0;
  width: 520px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  filter: blur(18px);
  opacity: 0.82;
}

.cloud::before,
.cloud::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: inherit;
}

.cloud::before { width: 230px; height: 230px; left: 60px; top: -105px; }
.cloud::after { width: 300px; height: 240px; right: 20px; top: -125px; }
.cloud-one { top: 60px; left: -170px; transform: rotate(7deg); }
.cloud-two { top: 210px; right: -180px; transform: rotate(-9deg) scale(1.2); }
.cloud-three { top: 420px; left: 30%; opacity: 0.4; transform: scale(0.7); }

.pricing-inner {
  position: relative;
  z-index: 2;
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
  padding: 80px 0 115px;
  text-align: center;
}

.pricing h2,
.faq h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 56px);
  font-weight: 500;
  letter-spacing: -0.055em;
}

.pricing h2 {
  color: white;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.12);
}

.pricing-subtitle {
  margin: 16px 0 26px;
  color: white;
  font-size: 20px;
}

.billing-toggle {
  width: max-content;
  display: flex;
  gap: 4px;
  margin: 0 auto 56px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.13);
}

.billing-toggle button {
  padding: 8px 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: white;
  cursor: pointer;
  font-size: 16px;
}

.billing-toggle button[aria-selected="true"] {
  background: linear-gradient(#fff, #e7e7e7 48%, #fbfbfb);
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.2);
  color: #111;
  font-weight: 600;
}

.billing-toggle span {
  display: inline-block;
  padding: 2px 6px;
  border-radius: 99px;
  background: rgba(0, 0, 0, 0.1);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.price-card {
  position: relative;
  min-width: 0;
  height: 514px;
  overflow: visible;
  border: 1px solid rgba(0, 0, 0, 0.32);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
  text-align: left;
}

.price-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(#000, transparent 8%);
  opacity: 0.12;
}

.price-card-pro {
  background: linear-gradient(rgba(15, 127, 255, 0.6), transparent 40%), rgba(255, 255, 255, 0.3);
}

.price-card > .feedback-bar {
  border-radius: 8px 8px 0 0;
}

.price-card-body {
  position: absolute;
  top: 27px;
  right: 4px;
  bottom: 4px;
  left: 4px;
  padding: 19px 20px 16px;
  border-radius: 3px 3px 7px 7px;
  background: linear-gradient(#fff 25%, rgba(255, 255, 255, 0.44));
  text-align: center;
}

.price-card h3 {
  margin: 0 0 7px;
  font-size: 28px;
  font-weight: 600;
}

.price-card-body > p:not(.price-note):not(.includes) {
  margin: 0 0 4px;
  font-size: 20px;
}

.price-card-body > small {
  color: rgba(0, 0, 0, 0.46);
  font-size: 11px;
}

.price-card hr {
  height: 15px;
  margin: 12px 0;
  border: 0;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.12), transparent 64%);
  opacity: 0.55;
}

.price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin: -3px 0 0;
  line-height: 1;
}

.price sup {
  margin: 8px 1px 0 0;
  font-size: 22px;
}

.price b {
  font-size: 53px;
  font-weight: 400;
  letter-spacing: -0.06em;
}

.price-note {
  min-height: 19px;
  margin: 7px 0 13px;
  font-size: 13px;
}

.price-card .aqua-button {
  min-height: 34px;
  padding-inline: 17px;
  font-size: 16px;
}

.price-card .includes {
  margin: 0 0 11px;
  color: var(--muted);
  text-align: left;
}

.price-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.price-card li {
  position: relative;
  margin: 0 0 10px;
  padding-left: 27px;
  font-size: 14px;
  font-weight: 600;
}

.price-card li::before {
  content: "✓";
  position: absolute;
  top: 1px;
  left: 0;
  width: 15px;
  height: 15px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #090909;
  color: white;
  font-size: 9px;
}

.popular-badge {
  position: absolute;
  z-index: 4;
  top: -12px;
  left: 50%;
  padding: 3px 11px;
  transform: translateX(-50%);
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 99px;
  background: linear-gradient(#d6e6ff, #9ec5ff 42%, #d2f1f7);
  font-size: 12px;
}

.no-cap {
  position: absolute;
  z-index: 8;
  top: -18px;
  right: -42px;
  width: 70px;
  transform: rotate(12deg);
}

.maker-discount {
  position: relative;
  width: 560px;
  min-height: 250px;
  margin: 55px auto 0;
  padding: 54px 32px 28px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: #171717;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.24);
  color: #e8e8e8;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  text-align: left;
}

.maker-discount .dark {
  background: linear-gradient(90deg, #0c0c0c, #292929, #111);
}

.maker-discount > img {
  position: absolute;
  top: -26px;
  right: 0;
  width: 118px;
  transform: rotate(-6deg);
}

.maker-discount h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 500;
}

.maker-discount p {
  margin: 0 0 20px;
  color: #999;
  line-height: 1.5;
}

.maker-discount .aqua-button {
  font-family: inherit;
  font-size: 15px;
}

.maker-discount > small {
  display: block;
  margin-top: 15px;
  color: #777;
  font-size: 10px;
}

.faq {
  position: relative;
  min-height: 1110px;
  padding: 105px 24px 150px;
  background: var(--page);
  text-align: center;
}

.faq > p {
  margin: 16px 0 58px;
  font-size: 20px;
}

.faq-list {
  position: relative;
  z-index: 2;
  width: min(735px, calc(100% - 48px));
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  margin-bottom: 7px;
  overflow: hidden;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.86);
}

.faq-item > button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 18px;
  border: 0;
  background: transparent;
  color: #080808;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
}

.faq-item > button i {
  font-style: normal;
  font-size: 27px;
  font-weight: 300;
  line-height: 0.8;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 230ms ease;
}

.faq-answer p {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
  padding: 0 18px 18px;
}

.faq-video {
  position: absolute;
  z-index: 1;
  top: 335px;
  right: 5%;
  width: 92px;
  height: 92px;
  transform: rotate(8deg);
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.12);
}

footer {
  position: relative;
  height: 495px;
  overflow: hidden;
  background: var(--page);
}

footer nav {
  width: min(970px, calc(100% - 48px));
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.25fr;
  gap: 56px;
  margin: 0 auto;
  padding-top: 50px;
  color: rgba(0, 0, 0, 0.45);
  font-size: 14px;
}

footer nav div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}

footer nav p {
  margin: 0 0 2px;
  color: #111;
}

footer nav a:hover,
footer nav a:focus-visible {
  color: #111;
}

.footer-mark {
  position: absolute;
  right: 10.4%;
  bottom: 0;
  left: 10.4%;
  height: 264px;
  pointer-events: auto;
}

.footer-mark canvas {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0;
  pointer-events: auto;
  transition: opacity 180ms ease;
}

.footer-mark.is-loaded canvas {
  opacity: 1;
}

.footer-mark-fallback {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  color: #71c6f4;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: clamp(100px, 15.5vw, 205px);
  font-weight: 900;
  letter-spacing: -0.11em;
  line-height: 0.82;
  text-shadow:
    0 -2px 0 #c9f1ff,
    2px 0 0 #3b91c6,
    0 5px 0 #4aa8dc,
    0 12px 18px rgba(0, 0, 0, 0.16);
  text-align: center;
  white-space: nowrap;
  transition: opacity 180ms ease;
}

.footer-mark.is-loaded .footer-mark-fallback {
  opacity: 0;
}

.footer-trash,
.footer-folder-button {
  position: absolute;
  z-index: 3;
  object-fit: contain;
}

.has-reveal .feature-row,
.has-reveal .note-window,
.has-reveal .feedback-card,
.has-reveal .price-card,
.has-reveal .faq-item {
  opacity: 0.12;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.has-reveal .feature-row.is-visible,
.has-reveal .note-window.is-visible,
.has-reveal .feedback-card.is-visible,
.has-reveal .price-card.is-visible,
.has-reveal .faq-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.footer-trash {
  left: 2%;
  bottom: 145px;
  width: 75px;
}

.footer-folder-button {
  right: 5%;
  bottom: 145px;
  width: 75px;
  height: 75px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: transform 180ms cubic-bezier(0.22, 1, 0.36, 1), filter 180ms ease;
}

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

.footer-folder-button:hover {
  transform: translateY(-4px) scale(1.03);
  filter: drop-shadow(0 7px 7px rgba(0, 0, 0, 0.14));
}

.footer-folder-button:active {
  transform: translateY(0) scale(0.96);
}

.footer-folder-button:focus-visible {
  outline: 3px solid #1387ff;
  outline-offset: 4px;
  border-radius: 8px;
}

body.has-demo-modal {
  overflow: hidden;
}

.demo-modal-backdrop {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 180ms ease;
}

.demo-modal-backdrop[hidden] {
  display: none;
}

.demo-modal-backdrop.is-open {
  opacity: 1;
}

.demo-modal {
  width: min(690px, calc(100vw - 40px));
  transform: translateY(8px) scale(0.985);
  outline: 0;
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.demo-modal-backdrop.is-open .demo-modal {
  transform: translateY(0) scale(1);
}

.demo-window {
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.22);
  border-radius: 7px;
  background: #ebebeb;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.38), 0 2px 4px rgba(0, 0, 0, 0.24);
}

.demo-titlebar {
  position: relative;
  height: 29px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #222;
  font-size: 12px;
  font-weight: 500;
  user-select: none;
}

.demo-window-controls {
  position: absolute;
  top: 8px;
  left: 9px;
  display: flex;
  gap: 7px;
}

.demo-window-controls > img,
.demo-window-controls button,
.demo-window-controls button img {
  width: 12px;
  height: 12px;
  display: block;
}

.demo-window-controls button {
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.demo-window-controls button:focus-visible {
  outline: 2px solid #1387ff;
  outline-offset: 2px;
}

.demo-video-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  margin: 0 4px 4px;
  overflow: hidden;
  border-radius: 2px 2px 5px 5px;
  background: #000;
}

.demo-video-wrap video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.demo-volume {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.52);
  cursor: pointer;
  opacity: 0.88;
  transition: opacity 120ms ease, transform 120ms ease;
}

.demo-volume:hover,
.demo-volume:focus-visible {
  opacity: 1;
}

.demo-volume:active {
  transform: scale(0.93);
}

.demo-volume:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.demo-volume img {
  width: 17px;
  height: 17px;
  display: block;
}

@media (max-width: 980px) {
  .desktop-status { display: none; }
  .mini-window-usecase { right: 4%; }
  .mini-window-code { left: 1%; }
  .mini-window-daddy { right: 1%; }
  .feature-row { grid-template-columns: 260px minmax(0, 1fr); gap: 28px; }
  .feature-row-reverse { grid-template-columns: minmax(0, 1fr) 260px; }
  .feedback-grid { width: 890px; max-width: 100%; }
  .faq-video { display: none; }
}

@media (max-width: 700px) {
  .menubar {
    height: 52px;
    grid-template-columns: 1fr auto 1fr;
    padding: 0 20px;
  }

  .menubar-left,
  .desktop-status {
    display: none;
  }

  .brand-mark {
    grid-column: 1;
    justify-self: start;
    width: 36px;
    transform: scale(0.82);
    transform-origin: left center;
  }

  .menubar-right {
    grid-column: 3;
    gap: 16px;
  }

  .get-link {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 13px;
  }

  .mobile-menu-button {
    width: 20px;
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .mobile-menu-button span {
    width: 16px;
    height: 4px;
    border: 1px solid #4b4b4b;
    border-radius: 4px;
    background: #a7a7a7;
  }

  .mobile-menu {
    position: absolute;
    top: 46px;
    right: 14px;
    width: 150px;
    display: flex;
    flex-direction: column;
    padding: 8px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    background: rgba(245, 245, 245, 0.95);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu a {
    padding: 10px 12px;
    border-radius: 7px;
  }

  .mobile-menu a:hover {
    background: white;
  }

  .hero {
    height: 790px;
    background-size: 30px 30px;
  }

  .hero-copy {
    top: 132px;
    width: calc(100% - 24px);
  }

  .hero-copy h1 {
    font-size: 58px;
    letter-spacing: -0.075em;
  }

  .hero-copy > p {
    margin: 17px 0 30px;
    font-size: 18px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 42px;
  }

  .hero-copy small {
    position: absolute;
    top: 174px;
    left: 50%;
    width: 100%;
    margin: 0;
    transform: translateX(-50%);
  }

  .aqua-button {
    min-height: 40px;
    padding-inline: 17px;
    font-size: 18px;
  }

  .mini-window,
  .hero-decor-sponge,
  .hero-decor-phone,
  .hero-emote-b,
  .hero-emote-c {
    display: none;
  }

  .hero-decor-card {
    top: 28px;
    left: 14%;
    width: 68px;
  }

  .hero-decor-ball {
    top: 34px;
    left: 2%;
    width: 24px;
    height: 24px;
  }

  .hero-decor-folder {
    top: 50px;
    right: 6%;
    width: 39px;
  }

  .hero-decor-pokemon {
    top: 91px;
    right: 18%;
    width: 65px;
  }

  .hero-emote-a {
    top: 82px;
    right: 0;
    left: auto;
    width: 45px;
    height: 45px;
    overflow: hidden;
    border: 1px solid #333;
    background: #db3043;
    font-size: 17px;
  }

  .hero-main-video {
    top: 472px;
    width: calc(100% - 24px);
    height: 187px;
    border-radius: 12px;
  }

  .hero-video-name {
    top: 671px;
  }

  .features {
    padding: 75px 20px 120px;
  }

  .feature-row,
  .feature-row-reverse {
    width: 100%;
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 44px;
    margin: 0 auto 150px;
  }

  .feature-copy,
  .feature-row-reverse .feature-copy {
    order: 1;
    width: 100%;
  }

  .feature-window,
  .feature-row-reverse .feature-window {
    order: 2;
    width: min(321px, 100%);
    height: 215px;
    margin-inline: auto;
  }

  .feature-copy h3 {
    margin-top: 38px;
    font-size: 18px;
  }

  .feature-copy > p {
    max-width: 310px;
    font-size: 14px;
  }

  .chat-bubble {
    max-width: 270px;
    font-size: 17px;
  }

  .waveform {
    margin-top: 10px;
  }

  .manifesto {
    height: 800px;
  }

  .manifesto::after {
    background: linear-gradient(90deg, var(--page), transparent 7%, transparent 93%, var(--page));
  }

  .manifesto-bg {
    object-fit: cover;
    object-position: center;
  }

  .note-window {
    top: 108px;
    width: calc(100% - 52px);
    max-width: 323px;
    min-height: 604px;
  }

  .note-body {
    padding: 18px 18px 20px;
    font-size: 16px;
  }

  .note-body p {
    margin-bottom: 14px;
  }

  .signature-row .signature {
    width: 110px;
  }

  .sticker-cat { top: 45px; left: 7%; width: 55px; }
  .sticker-astro { bottom: 28px; left: 4%; width: 45px; }
  .sticker-laptop { right: 2%; bottom: 42px; width: 82px; }

  .feedback {
    min-height: 0;
    padding: 100px 26px 120px;
  }

  .feedback h2 {
    margin-bottom: 45px;
    font-size: 48px;
    transform: translateX(-38%);
  }

  .no-regrets {
    top: 130px;
    right: 5%;
    width: 108px;
  }

  .feedback-grid {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .feedback-card {
    min-height: 166px;
  }

  .feedback-card:nth-child(n + 7) {
    display: none;
  }

  .happy-users {
    height: 104px;
    margin-top: 28px;
    padding: 0 20px 0 68px;
    text-align: center;
  }

  .happy-users video {
    left: -8px;
    bottom: 8px;
    width: 78px;
    height: 78px;
  }

  .happy-users p {
    font-size: 15px;
  }

  .pricing {
    min-height: 2310px;
  }

  .pricing-inner {
    width: calc(100% - 52px);
    padding: 85px 0 110px;
  }

  .pricing h2,
  .faq h2 {
    font-size: 42px;
  }

  .pricing-subtitle {
    margin-bottom: 23px;
    font-size: 17px;
  }

  .billing-toggle {
    margin-bottom: 69px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .price-card {
    width: 100%;
    height: 514px;
  }

  .price-card h3 {
    font-size: 25px;
  }

  .price-card-body > p:not(.price-note):not(.includes) {
    font-size: 18px;
  }

  .no-cap {
    right: -18px;
  }

  .maker-discount {
    width: 100%;
    min-height: 260px;
    margin-top: 20px;
    padding: 50px 20px 24px;
  }

  .maker-discount > img {
    width: 96px;
  }

  .faq {
    min-height: 1320px;
    padding: 95px 0 135px;
  }

  .faq > p {
    padding-inline: 24px;
    font-size: 17px;
  }

  .faq-list {
    width: calc(100% - 52px);
  }

  .faq-item > button {
    padding: 15px 14px;
    font-size: 16px;
  }

  .faq-answer p {
    font-size: 13px;
  }

  footer {
    height: 517px;
  }

  footer nav {
    width: calc(100% - 52px);
    grid-template-columns: 1fr 1fr;
    gap: 36px 40px;
    padding-top: 30px;
    font-size: 13px;
  }

  .footer-mark {
    right: 20px;
    bottom: 40px;
    left: 20px;
    height: 88px;
  }

  .footer-mark-fallback {
    bottom: 0;
    font-size: 64px;
    letter-spacing: -0.1em;
  }

  .footer-trash {
    top: -26px;
    bottom: auto;
    left: 20px;
    width: 42px;
  }

  .footer-folder-button {
    top: -8px;
    right: 40px;
    bottom: auto;
    width: 42px;
    height: 42px;
  }

  .demo-modal-backdrop {
    padding: 11px;
  }

  .demo-modal {
    width: min(353px, calc(100vw - 22px));
  }
}

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