:root {
  --blue: #004dff;
  --white: #F5FFFE;
  --bg: #D8FFFA;
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body {
  margin: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: var(--bg);
  overflow: hidden;
}

.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: var(--bg);
  overflow: hidden;
}

.chair-stage {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.chair {
  width: 100%;
  height: 100%;
  display: block;
  color: var(--blue);
  overflow: visible;
}

.chair line {
  stroke: currentColor;
  stroke-linecap: round;
  fill: none;
}

.chair .paint-sky line,
.chair .paint-motes line,
.chair .paint-mtn line {
  stroke-width: 1.8;
}

.chair .paint-horizon line,
.chair .paint-floor line {
  stroke-width: 2.4;
}

.chair .paint-shadow line {
  stroke-width: 2.7;
}

.chair .paint-sun line {
  stroke-width: 2.6;
}

.chair .paint-chair line {
  stroke-width: 4.5;
}

.signature {
  position: absolute;
  right: clamp(1rem, 3vw, 3rem);
  bottom: clamp(1rem, 3vw, 3rem);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.15em;
  color: var(--blue);
  font-family: 'Untitled Sans', 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  line-height: 1.05;
  opacity: 0.85;
  z-index: 1;
}

.signature-name {
  margin: 0;
  font-size: clamp(1.5rem, 3.5vw, 3rem);
  font-weight: 400;
}

.signature-handle {
  color: inherit;
  font-size: clamp(0.95rem, 2vw, 1.6rem);
  text-decoration: underline;
  opacity: 0.9;
}

.signature-handle:hover {
  opacity: 1;
}

