@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');
:root {
  --ink:#33312f;
  --muted:#827f78;
  --paper:#faf9f6;
  --line:#e6e3dc;
  --purple:#7770b7;
}
* {
  box-sizing:border-box;
}
html {
  scroll-behavior:smooth;
}
body {
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font:15px/1.6 Manrope,Arial,sans-serif;
}
a {
  color:inherit;
  text-decoration:none;
}
button,input {
  font:inherit;
}
button,a,input {
  -webkit-tap-highlight-color:transparent;
}
button {
  cursor:pointer;
}
button:focus-visible,a:focus-visible,input:focus-visible {
  outline:3px solid var(--purple);
  outline-offset:5px;
}
header {
  max-width:1320px;
  margin:auto;
  padding:30px 46px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-bottom:1px solid var(--line);
}
.brand {
  display:flex;
  gap:12px;
  align-items:center;
  font-size:28px;
  font-weight:800;
  letter-spacing:-1.2px;
}
.brand>span {
  font-size:23px;
}
.brand-dot {
  color:var(--purple);
}
.header-link {
  font-size:13px;
  font-weight:700;
}
.header-links {
  display:flex;
  align-items:center;
  gap:18px;
}
.link-button {
  background:none;
  border:0;
  padding:0;
  font-family:inherit;
  color:inherit;
  cursor:pointer;
}
.panel {
  max-width:1320px;
  margin:auto;
  padding:40px 46px 70px;
}
.panel h2 {
  font-size:20px;
  margin:32px 0 12px;
}
.card-list {
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:8px;
}
.card-list li {
  border:1px solid var(--line);
  border-radius:10px;
  padding:12px 14px;
  display:flex;
  align-items:center;
  gap:12px;
  background:#fff;
}
.card-list li span {
  margin-right:auto;
  font-weight:700;
}
.card-list form {
  display:inline;
}
.field {
  display:flex;
  flex-direction:column;
  gap:6px;
  margin-bottom:14px;
  max-width:340px;
}
.field input {
  border:1px solid var(--line);
  border-radius:8px;
  padding:10px;
  font:inherit;
  background:#fff;
}
.field .helptext, .form-error {
  font-size:11px;
  color:#b0543f;
}
.field .helptext {
  color:var(--muted);
}
.notice {
  border:1px solid var(--line);
  border-left:4px solid var(--purple);
  border-radius:10px;
  padding:14px 16px;
  margin:18px 0;
  background:#fff;
  max-width:680px;
}
.notice p {
  margin:0 0 10px;
  font-size:13px;
}
.inline-form {
  display:flex;
  gap:8px;
  align-items:flex-end;
  flex-wrap:wrap;
}
.landing {
  max-width:1230px;
  margin:auto;
  padding:53px 32px 0;
}
.eyebrow {
  font-size:10px;
  letter-spacing:2px;
  font-weight:800;
  display:flex;
  align-items:center;
  gap:8px;
}
.hero {
  display:grid;
  grid-template-columns:1.3fr 1fr;
  gap:60px;
  align-items:center;
  padding:20px 0 52px;
}
h1 {
  font-size:clamp(38px,4.3vw,62px);
  line-height:1.16;
  letter-spacing:-2.8px;
  margin:10px 0 24px;
  font-weight:800;
}
h1 em {
  color:var(--purple);
  font-style:normal;
}
.intro {
  color:var(--muted);
  line-height:1.9;
  font-size:15px;
}
.hero-actions {
  display:flex;
  gap:26px;
  align-items:center;
  margin-top:29px;
}
.button {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:28px;
  border:1px solid transparent;
  border-radius:11px;
  padding:14px 21px;
  font-size:13px;
  font-weight:700;
}
.dark {
  background:var(--ink);
  color:white;
}
.dark:hover {
  background:#514d49;
}
.light {
  background:white;
  border-color:var(--line);
}
.text-link {
  font-size:12px;
  font-weight:700;
}
.small-note {
  font-size:10px;
  color:var(--muted);
  margin-top:15px;
}
.illustration {
  position:relative;
  padding:22px 12px 16px;
}
.paper {
  position:relative;
  background:#fffdf7;
  border:1px solid #dedbd2;
  box-shadow:8px 12px 0 #efede6;
  transform:rotate(-6deg);
  padding:22px 20px 26px;
  text-align:center;
  background-image:radial-gradient(#dedbd2 .7px,transparent .7px);
  background-size:17px 17px;
}
.paper svg {
  width:100%;
  display:block;
  max-height:300px;
}
.paper-label {
  font-size:11px;
  color:#999180;
  font-weight:600;
}
.paper-caption {
  font-size:15px;
  color:#827ba2;
}
.sticker {
  position:absolute;
  right:-4px;
  bottom:9px;
  background:#f3d970;
  border-radius:50%;
  width:110px;
  height:110px;
  display:flex;
  align-items:center;
  justify-content:center;
  transform:rotate(11deg);
  text-align:center;
  font-size:15px;
  font-weight:800;
  line-height:1.3;
}
.spark {
  position:absolute;
  top:-20px;
  right:12px;
  font-size:63px;
  color:#b59ac1;
}
.modes {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.mode-card {
  position:relative;
  border:1px solid var(--line);
  border-radius:17px;
  padding:25px 27px;
  min-height:254px;
  transition:transform .15s;
}
.solo-card {
  background:#eeeaf5;
}
.solo-card:hover {
  transform:translateY(-3px);
}
.company-card {
  background:#eaf0e9;
}
.next-card {
  background:#f2efe6;
}
.mode-icon {
  display:block;
  font-size:31px;
  line-height:1.1;
  margin-bottom:25px;
}
.tag {
  position:absolute;
  right:22px;
  top:30px;
  font-size:8px;
  letter-spacing:1.2px;
  color:#77746d;
}
.mode-card h2 {
  font-size:20px;
  letter-spacing:-.7px;
  margin:0 0 10px;
}
.mode-card p {
  font-size:12px;
  color:#77746d;
  line-height:1.8;
  margin:0 0 22px;
}
.card-link {
  font-size:12px;
  font-weight:800;
  border:0;
  background:none;
  padding:0;
  color:var(--ink);
}
.coming {
  font-size:10px;
  color:#8d8676;
  background:#e9e4d8;
  border-radius:20px;
  padding:6px 10px;
}
.bottom-note {
  text-align:center;
  font-size:12px;
  color:#8c867b;
  padding:36px 0;
}
.studio {
  max-width:1370px;
  padding:34px 36px;
  margin:auto;
}
.studio-heading {
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
}
.studio h1 {
  font-size:34px;
  letter-spacing:-1.5px;
  margin:8px 0 26px;
}
.studio-actions {
  display:flex;
  gap:10px;
}
.workspace {
  display:flex;
  border:1px solid var(--line);
  border-radius:17px;
  overflow:hidden;
  background:#eeece7;
  min-height:430px;
}
.toolbar {
  width:135px;
  flex-shrink:0;
  padding:23px 18px;
  background:#fdfcf9;
  border-right:1px solid var(--line);
  display:flex;
  flex-direction:column;
  gap:15px;
}
.tool-label {
  font-size:10px;
  display:flex;
  justify-content:space-between;
  color:var(--muted);
  font-weight:800;
}
#color {
  width:100%;
  height:37px;
  padding:0;
  border:0;
  background:none;
  cursor:pointer;
}
.swatches {
  display:flex;
  gap:5px;
  flex-wrap:wrap;
}
.swatches button {
  background:var(--swatch);
  border:2px solid #fff;
  width:25px;
  height:25px;
  border-radius:50%;
}
#width {
  width:100%;
  accent-color:var(--purple);
}
.tool-button {
  border:1px solid var(--line);
  border-radius:8px;
  background:white;
  padding:8px 3px;
  font-size:11px;
}
.tool-button[aria-pressed=true] {
  background:#e5def3;
  border-color:var(--purple);
}
.tool-input {
  border:1px solid var(--line);
  border-radius:8px;
  padding:8px 7px;
  font:inherit;
  font-size:11px;
  width:100%;
  box-sizing:border-box;
  background:white;
}
#room-title[role=button] {
  cursor:text;
}
.tool-tip {
  margin-top:auto;
  font-size:10px;
  color:#aaa193;
}
.canvas-wrap {
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:25px;
  min-width:0;
}
canvas {
  background:white;
  display:block;
  width:100%;
  height:auto;
  aspect-ratio:3/2;
  touch-action:none;
  box-shadow:0 2px 15px #33312f0a;
  cursor:crosshair;
}
.studio-status {
  display:flex;
  justify-content:space-between;
  font-size:10px;
  color:var(--muted);
  padding:14px 0;
  gap:15px;
}
#status[data-error=true] {
  color:#a53232;
}
@media(min-width:1500px) {
  .landing {
    padding-top:65px;
  }
  .hero {
    padding-bottom:70px;
  }
}
@media(max-width:800px) {
  header {
    padding:20px 22px;
  }
  .landing {
    padding:32px 22px 0;
  }
  .hero {
    gap:28px;
    grid-template-columns:1fr 0.8fr;
  }
  h1 {
    font-size:40px;
  }
  .illustration {
    padding:10px 0;
  }
  .sticker {
    width:80px;
    height:80px;
    font-size:12px;
  }
  .modes {
    gap:10px;
  }
  .mode-card {
    padding:20px 17px;
  }
  .tag {
    position:static;
    display:block;
    margin-bottom:12px;
  }
  .mode-icon {
    margin-bottom:15px;
  }
  .mode-card h2 {
    font-size:17px;
  }
  .mode-card p br {
    display:none;
  }
  .studio {
    padding:25px 16px;
  }
  .studio-heading {
    align-items:flex-start;
  }
  .studio h1 {
    font-size:27px;
  }
  .studio-actions {
    flex-wrap:wrap;
    justify-content:flex-end;
  }
  .studio-actions .button {
    padding:10px 12px;
    font-size:11px;
  }
  .toolbar {
    width:110px;
    padding:18px 12px;
  }
  .canvas-wrap {
    padding:12px;
  }
  .workspace {
    min-height:350px;
  }
}
@media(max-width:560px) {
  .header-link {
    font-size:11px;
  }
  .brand>span {
    font-size:19px;
  }
  .hero {
    grid-template-columns:1fr;
    padding-bottom:30px;
  }
  .hero h1 {
    font-size:43px;
  }
  .intro {
    font-size:14px;
  }
  .illustration {
    max-width:310px;
    margin:0 auto 10px;
    width:85%;
  }
  .paper svg {
    max-height:200px;
  }
  .modes {
    grid-template-columns:1fr;
  }
  .mode-card {
    min-height:auto;
    padding:24px;
  }
  .mode-icon {
    margin-bottom:18px;
  }
  .tag {
    position:absolute;
    right:24px;
    top:30px;
  }
  .mode-card h2 {
    font-size:22px;
  }
  .mode-card p {
    margin-bottom:15px;
  }
  .mode-card p br {
    display:block;
  }
  footer {
    padding:20px 22px;
  }
  footer span:last-child {
    display:none;
  }
  .studio-heading {
    display:block;
  }
  .studio h1 {
    font-size:29px;
    margin-bottom:15px;
  }
  .studio-actions {
    justify-content:flex-start;
    margin-bottom:20px;
  }
  .workspace {
    flex-direction:column;
    min-height:0;
  }
  .toolbar {
    width:100%;
    flex-direction:row;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
    padding:12px;
    border-right:0;
    border-bottom:1px solid var(--line);
  }
  #color {
    width:34px;
    height:28px;
  }
  .swatches {
    gap:2px;
  }
  .swatches button {
    width:22px;
    height:22px;
  }
  #width {
    width:70px;
  }
  .tool-label {
    gap:5px;
  }
  .tool-button {
    padding:7px 10px;
  }
  .tool-tip {
    display:none;
  }
  .canvas-wrap {
    padding:10px;
  }
  .studio-status span:last-child {
    display:none;
  }
}
