:root {
  --ink: #1d1934;
  --paper: #fff8ed;
  --purple: #6c45ff;
  --purple-dark: #4c2dd2;
  --lime: #c9f66f;
  --coral: #ff7466;
  --sky: #75dce4;
  --muted: #6d687c;
  --line: rgba(29, 25, 52, 0.14);
  --display: "Arial Rounded MT Bold", "Trebuchet MS", "Avenir Next", Arial,
    sans-serif;
  --body: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

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

svg {
  display: block;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 15px;
  color: white;
  background: var(--purple);
  border-radius: 999px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: none;
}

.site-header,
.site-footer {
  position: relative;
  z-index: 10;
  display: flex;
  width: min(1240px, calc(100% - 64px));
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
}

.site-header {
  min-height: 96px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--display);
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.brand-mark {
  width: 36px;
}

.brand-mark rect {
  fill: var(--purple);
}

.brand-mark circle {
  fill: var(--lime);
}

.brand-mark path {
  fill: none;
  stroke: white;
  stroke-linecap: round;
  stroke-width: 2.7;
}

.hello-link {
  display: inline-flex;
  padding: 10px 0 7px;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 750;
  border-bottom: 2px solid var(--ink);
  transition:
    color 160ms ease,
    border-color 160ms ease;
}

.hello-link:hover {
  color: var(--purple);
  border-color: var(--purple);
}

.about {
  position: relative;
  display: grid;
  overflow: hidden;
  width: min(1240px, calc(100% - 64px));
  min-height: calc(100vh - 166px);
  margin-inline: auto;
  padding: clamp(68px, 8vh, 110px) 0 90px;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  gap: clamp(55px, 7vw, 110px);
  align-items: center;
}

.dot-field {
  position: absolute;
  z-index: -2;
  top: 8%;
  right: -8%;
  width: 51%;
  height: 82%;
  opacity: 0.24;
  background-image: radial-gradient(var(--ink) 1.1px, transparent 1.1px);
  background-size: 23px 23px;
  mask-image: radial-gradient(circle, black, transparent 72%);
}

.shape {
  position: absolute;
  z-index: -1;
  display: block;
}

.shape-one {
  top: 8%;
  left: 46%;
  width: 16px;
  height: 16px;
  background: var(--coral);
  border-radius: 4px;
  transform: rotate(18deg);
}

.shape-two {
  bottom: 10%;
  left: 42%;
  width: 27px;
  height: 27px;
  border: 5px solid var(--sky);
  border-radius: 50%;
}

.shape-three {
  top: 16%;
  right: 2%;
  width: 22px;
  height: 22px;
  background: var(--lime);
  clip-path: polygon(50% 0, 63% 35%, 100% 50%, 63% 65%, 50% 100%, 37% 65%, 0 50%, 37% 35%);
}

.about-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: flex;
  margin: 0 0 25px;
  align-items: center;
  gap: 11px;
  color: var(--purple);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 9px;
  height: 9px;
  background: var(--coral);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255, 116, 102, 0.15);
}

h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(61px, 6.4vw, 94px);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.93;
}

h1 em {
  position: relative;
  color: var(--purple);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.055em;
}

h1 em::after {
  position: absolute;
  right: 1%;
  bottom: -8px;
  left: 2%;
  height: 8px;
  background: var(--lime);
  border-radius: 50%;
  content: "";
  transform: rotate(-1.5deg);
}

.intro {
  display: grid;
  max-width: 690px;
  margin-top: 45px;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}

.intro p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.intro p:first-child {
  color: var(--ink);
  font-weight: 590;
}

.playground {
  position: relative;
  width: min(100%, 540px);
  aspect-ratio: 1 / 1;
  justify-self: end;
}

.playground::before {
  position: absolute;
  inset: 9%;
  background: #eee7ff;
  border-radius: 44% 56% 54% 46% / 48% 42% 58% 52%;
  content: "";
  animation: blob-breathe 9s ease-in-out infinite alternate;
}

@keyframes blob-breathe {
  to {
    border-radius: 55% 45% 46% 54% / 40% 55% 45% 60%;
    transform: rotate(4deg) scale(1.03);
  }
}

.orbit {
  position: absolute;
  border: 1px dashed rgba(108, 69, 255, 0.35);
  border-radius: 50%;
}

.orbit-large {
  inset: 2%;
  animation: orbit-spin 45s linear infinite;
}

.orbit-small {
  inset: 23%;
  border-color: rgba(29, 25, 52, 0.16);
  animation: orbit-spin 32s linear infinite reverse;
}

@keyframes orbit-spin {
  to {
    transform: rotate(360deg);
  }
}

.idea-card {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  box-shadow: 0 17px 35px rgba(56, 40, 112, 0.14);
  transition: transform 250ms ease;
}

.idea-card:hover {
  transform: rotate(0) translateY(-5px);
}

.idea-card-star {
  top: 5%;
  left: 7%;
  width: 115px;
  height: 146px;
  background: var(--coral);
  border: 3px solid var(--ink);
  border-radius: 14px;
  transform: rotate(-9deg);
}

.idea-card-star svg {
  width: 72px;
}

.idea-card-star rect,
.idea-card-star path {
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.idea-card-cycle {
  top: 10%;
  right: 4%;
  width: 112px;
  height: 112px;
  color: var(--ink);
  background: var(--lime);
  border: 3px solid var(--ink);
  border-radius: 50%;
  transform: rotate(7deg);
}

.idea-card-cycle svg {
  width: 73px;
}

.idea-card-cycle circle,
.idea-card-cycle path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2.2;
}

.idea-card-cycle circle:last-child {
  fill: var(--ink);
}

.idea-card-code {
  right: 2%;
  bottom: 9%;
  width: 142px;
  height: 92px;
  color: white;
  background: var(--ink);
  border: 3px solid var(--ink);
  border-radius: 15px;
  font-family: "Courier New", monospace;
  font-size: 24px;
  font-weight: 700;
  transform: rotate(6deg);
}

.studio-note {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: flex;
  width: 245px;
  min-height: 192px;
  padding: 30px;
  align-items: center;
  justify-content: center;
  background: white;
  border: 3px solid var(--ink);
  border-radius: 47% 53% 49% 51% / 53% 46% 54% 47%;
  box-shadow: 10px 12px 0 var(--sky);
  transform: translate(-50%, -50%) rotate(-2deg);
}

.studio-note p {
  margin: 0;
  max-width: 175px;
  font-family: var(--display);
  font-size: 23px;
  font-weight: 750;
  letter-spacing: -0.04em;
  line-height: 1.16;
  text-align: center;
}

.note-spark,
.note-smile {
  position: absolute;
  color: var(--purple);
  font-size: 23px;
}

.note-spark {
  top: 18px;
  left: 25px;
}

.note-smile {
  right: 25px;
  bottom: 17px;
  color: var(--coral);
  font-size: 29px;
  transform: rotate(-7deg);
}

.site-footer {
  min-height: 70px;
  justify-content: flex-end;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 11px;
  font-weight: 650;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 1000px) {
  .about {
    padding-top: 75px;
    grid-template-columns: 1fr;
  }

  .playground {
    width: min(570px, 78vw);
    margin-top: 15px;
    justify-self: center;
  }

  .shape-one {
    left: auto;
    right: 5%;
  }

  .shape-two {
    bottom: 4%;
    left: 4%;
  }
}

@media (max-width: 680px) {
  .site-header,
  .site-footer,
  .about {
    width: calc(100% - 34px);
  }

  .site-header {
    min-height: 78px;
  }

  .brand {
    font-size: 22px;
  }

  .brand-mark {
    width: 32px;
  }

  .hello-link {
    font-size: 13px;
  }

  .about {
    min-height: auto;
    padding: 58px 0 78px;
    gap: 72px;
  }

  .eyebrow {
    margin-bottom: 20px;
    font-size: 10px;
  }

  h1 {
    font-size: clamp(51px, 15.6vw, 72px);
  }

  .intro {
    margin-top: 39px;
    padding-right: 24px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .intro p {
    font-size: 15px;
  }

  .playground {
    width: min(510px, 96vw);
  }

  .idea-card-star {
    width: 87px;
    height: 115px;
  }

  .idea-card-star svg {
    width: 57px;
  }

  .idea-card-cycle {
    width: 86px;
    height: 86px;
  }

  .idea-card-cycle svg {
    width: 57px;
  }

  .idea-card-code {
    width: 110px;
    height: 75px;
    font-size: 19px;
  }

  .studio-note {
    width: 205px;
    min-height: 165px;
    box-shadow: 7px 9px 0 var(--sky);
  }

  .studio-note p {
    max-width: 150px;
    font-size: 19px;
  }

  .dot-field {
    top: 48%;
    width: 100%;
    height: 45%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
