:root {
  --post-size: 1080px;
  --post-padding-x: 110px;
  --post-padding-left: 140px;
  --post-padding-y: 112px;
  --logo-width: 262px;
  --headline-size: 68px;
  --cta-title-size: 29px;
  --cta-body-size: 25px;
  --violet: #6254e8;
  --violet-deep: #5645d8;
  --violet-soft: #ebe8ff;
  --ink-muted: #4b536e;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  padding: 28px;
  display: grid;
  gap: 22px;
  place-items: start center;
  background: var(--paper-3);
  color: var(--ink-1);
  font-family: var(--font-body);
}

.toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(var(--post-size), calc(100vw - 56px));
}

.toolbar-button {
  border: 0;
  border-radius: var(--r-2);
  padding: 11px 18px;
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 700;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-standard), opacity var(--dur-fast) var(--ease-standard);
}

.toolbar-button:hover {
  opacity: .9;
  transform: translateY(-1px);
}

.toolbar-button-primary {
  background: var(--brand-violet);
  color: var(--paper-0);
}

.toolbar-button-secondary {
  background: var(--paper-0);
  color: var(--ink-1);
  box-shadow: inset 0 0 0 1px var(--paper-3);
}

.toolbar-note {
  color: var(--ink-3);
  font-size: var(--fs-small);
}

.post-shell,
.post {
  width: var(--post-size);
  height: var(--post-size);
}

.post {
  position: relative;
  overflow: hidden;
  padding: var(--post-padding-y) var(--post-padding-x) var(--post-padding-y) var(--post-padding-left);
  background:
    radial-gradient(circle at 17% 8%, rgba(114, 184, 248, .12), transparent 19%),
    radial-gradient(circle at 89% 86%, rgba(110, 60, 255, .12), transparent 24%),
    linear-gradient(135deg, #fbfbff 0%, #f8f8fe 64%, #eff0ff 100%);
  box-shadow: var(--shadow-3-light);
  isolation: isolate;
}

.brand-shape {
  position: absolute;
  border-radius: 72px;
  background: linear-gradient(38deg, rgba(155, 48, 234, .15), rgba(114, 184, 248, .2));
  transform: rotate(-48deg);
  pointer-events: none;
  z-index: -1;
}

.brand-shape-a {
  width: 470px;
  height: 132px;
  right: -160px;
  bottom: 95px;
}

.brand-shape-b {
  width: 280px;
  height: 106px;
  right: -94px;
  bottom: -18px;
  opacity: .72;
}

.brand-row {
  height: 130px;
  display: flex;
  align-items: flex-start;
}

.brand-logo {
  width: var(--logo-width);
  height: auto;
  display: block;
}

.message {
  max-width: 805px;
}

.people-icon {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  margin-bottom: 46px;
  color: var(--violet);
}

.people-icon svg {
  width: 88px;
  height: 88px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.headline {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--headline-size);
  line-height: 1.05;
  letter-spacing: 0;
  font-weight: 800;
  color: #030611;
}

.headline span,
.cta h2 span {
  color: var(--violet);
}

.underline {
  width: 470px;
  height: 45px;
  display: block;
  margin-top: 26px;
}

.underline path {
  fill: none;
  stroke: var(--violet);
  stroke-linecap: round;
  stroke-width: 5;
}

.cta {
  position: absolute;
  left: var(--post-padding-left);
  right: 250px;
  bottom: 116px;
  display: grid;
  grid-template-columns: 76px 1fr 42px;
  gap: 28px;
  align-items: start;
}

.cta-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: var(--r-pill);
  color: #fff;
  background: var(--brand-violet);
  box-shadow: 0 16px 32px rgba(98, 84, 232, .22);
}

.cta-icon svg,
.heart-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.85;
}

.cta-copy {
  padding-top: 10px;
}

.cta h2 {
  margin: 0 0 26px;
  color: #030611;
  font-size: var(--cta-title-size);
  line-height: 1.15;
  letter-spacing: 0;
  font-weight: 800;
}

.cta p {
  max-width: 610px;
  margin: 0;
  color: var(--ink-muted);
  font-size: var(--cta-body-size);
  line-height: 1.45;
  letter-spacing: 0;
  font-weight: 500;
}

.heart-icon {
  align-self: end;
  margin-bottom: 4px;
  color: var(--violet);
}

.heart-icon svg {
  width: 38px;
  height: 38px;
}

.editing .editable {
  outline: 2px dashed rgba(110, 60, 255, .28);
  outline-offset: 5px;
  border-radius: 6px;
}

@media (max-width: 1120px) {
  .post-shell {
    transform: scale(calc((100vw - 56px) / 1080));
    transform-origin: top center;
    height: calc((100vw - 56px));
  }
}
